Search found 12 matches

by mcfurgerburger
Thu May 26, 2022 3:41 pm
Forum: Dialogue System for Unity
Topic: Best practice question regarding simultaneous option
Replies: 2
Views: 410

Best practice question regarding simultaneous option

Hey all, have this dilemma that I solved by setting simultaneous to true, which only caused a new issue. So I am wondering what the best practice is for this case. Dilemma: I use a dialogue system trigger on a door to ask the player if they want to enter a room or not, and also to tell the player if...
by mcfurgerburger
Thu May 26, 2022 11:37 am
Forum: Dialogue System for Unity
Topic: How to check if player have enough coins in dialogue system
Replies: 4
Views: 5545

Re: How to check if player have enough coins in dialogue system

you're probably gonna need to create a custom lua method that goes to your playermanager to check the coins. set that as the condition, i.e.: HasCoinAmount(800) == true where the HasCoinAmount method is the custom lua method defined in your template script and it takes a double parameter that is che...