Page 2 of 2

Re: Tutorial of Karma System in Dialogue System

Posted: Mon Sep 12, 2016 1:17 pm
by HaiiroMukuro
Yes.

Re: Tutorial of Karma System in Dialogue System

Posted: Mon Sep 12, 2016 1:33 pm
by Tony Li
HaiiroMukuro wrote:Yes.
Hi - Does this mean you use a Selector like the Feature Demo? If so, set the Conversation Triggers to OnUse.

Re: Tutorial of Karma System in Dialogue System

Posted: Mon Sep 12, 2016 1:45 pm
by HaiiroMukuro
Oh, wait let me check . :)

Re: Tutorial of Karma System in Dialogue System

Posted: Tue Sep 13, 2016 5:28 am
by HaiiroMukuro
It's working now, thank you :D

Re: Tutorial of Karma System in Dialogue System

Posted: Tue Sep 13, 2016 8:36 am
by Tony Li
Glad to help!

Re: Tutorial of Karma System in Dialogue System

Posted: Tue Sep 13, 2016 1:05 pm
by HaiiroMukuro
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

Posted: Tue Sep 13, 2016 1:21 pm
by Tony Li
Try this to reset Karma to zero:

Code: Select all

Variable["Karma"] = 0;
ShowAlert("<color=green>Karma has reset</color>")

Re: Tutorial of Karma System in Dialogue System

Posted: Tue Sep 13, 2016 1:25 pm
by HaiiroMukuro
Thanks! :D