Getting custom triggers to fire

Users who are viewing this thread

Fujiwara

Sergeant at Arms
Can someone explain how I can get my triggers to fire? I have some custom triggers set up to initalize various quest state variables, so they need to fire just after character creation, and never again. I understand the use of the 'ti_once" flag, but I can't seem to get the trigger itself to fire once I've created a character. Help! Thanks!!!
 
Hi Fujiwara.

The following trigger will fire once at the start of the game and never again:

(0, 0, ti_once, [], [(assign,"$peak_swadian_foragers",4)]),

Note that since the list of conditions is empty ( [] ) ,it doesn't check any condition and always carries out the assignment.

Edit: beaten by Raybur Ravenloc. :grin:
 
Back
Top Bottom