YesNoOk
avatar

how to only make a helper appear once (Read 1198 times)

Started by mrgamer123, January 05, 2018, 06:12:14 pm
Share this topic:
how to only make a helper appear once
#1  January 05, 2018, 06:12:14 pm
  • avatar
  • *
    • USA
I want a helper to only appear once and if I try to summon it again it won't work
Re: how to only make a helper appear once
#2  January 05, 2018, 10:24:43 pm
  • ****
  • Robotics Engineer
    • USA
    • altoiddealer@gmail.com
Type = Helper
trigger1 = numhelper(1234) = 0
id = 1234

So, use numhelper(**) trigger to prevent a 2nd helper from being created.

To make it so another helper cannot be created, even after the first one is destroyed, then you should set a Var when creating the helper.
For instance set Var(30) to 1.  Then, use that as a trigger, like:
triggerall = var(30) = 0
Since var(30) will equal 1, the helper will not be created.

Type = Helper
trigger1 = numhelper(1234) = 0
trigger1 = var(30) = 0
id = 1234