Tutorial of Karma System in Dialogue System
-
- Posts: 80
- Joined: Sun Jul 17, 2016 3:38 pm
Re: Tutorial of Karma System in Dialogue System
Hi - Does this mean you use a Selector like the Feature Demo? If so, set the Conversation Triggers to OnUse.HaiiroMukuro wrote:Yes.
-
- Posts: 80
- Joined: Sun Jul 17, 2016 3:38 pm
Re: Tutorial of Karma System in Dialogue System
Oh, wait let me check .
-
- Posts: 80
- Joined: Sun Jul 17, 2016 3:38 pm
Re: Tutorial of Karma System in Dialogue System
It's working now, thank you
Re: Tutorial of Karma System in Dialogue System
Glad to help!
-
- Posts: 80
- Joined: Sun Jul 17, 2016 3:38 pm
Re: Tutorial of Karma System in Dialogue System
Is this the right script for resetting the karma?
Code: Select all
Variable["Karma"] = Variable["Karma"] == 50;
ShowAlert("<color=green>Karma has reset</color>")
Re: Tutorial of Karma System in Dialogue System
Try this to reset Karma to zero:
Code: Select all
Variable["Karma"] = 0;
ShowAlert("<color=green>Karma has reset</color>")
-
- Posts: 80
- Joined: Sun Jul 17, 2016 3:38 pm