• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[Trigger] why the hell wuld this GUI action not work?

Status
Not open for further replies.
Level 9
Joined
Jan 14, 2008
Messages
366


none of those actions worK!

the trigger is fired from another trigger, that works perfectly fine.
but fore some reason none of those actions fire.

clearly, the loop does basically the same thing as the individual triggers that all attempt to add "GMV_variable" (integer) to each players current lumber.

none works.

the variable is correctly displayed when converted into a string. and therefore is, without a doubt, set correctly.

then why the hell does it not add to the players lumber?
it doesnt make any sense.

does changing the word "lumber" to "vagina" in gameplay constants mess things up? cos that is the only reason i can think of...
 
Level 2
Joined
Feb 22, 2009
Messages
24
What about using a timer? Set a Timer in the Variables (here called "RegularyIncomeTimer") and start it instead of triggering another trigger.
On the other side: you are sure you set it to "Run Trigger" and not "turn on"? happened to me too ;)

Start it in your fireing Trigger:
  • Your fireing trigger
    • Events
      • Time - Elapsed game time is 25.00 seconds
    • Conditions
    • Actions
      • -------- your previous actions --------
      • Countdown-Timer - Start RegularyIncomeTimer as a repeated timer that will expire in 300.00 seconds
And then react on the expireing timer...that should work ;)

  • Income trigger
    • Events
      • Time - RegularyIncomeTimer expires
    • Conditions
    • Actions
      • Playergroup - Pick every player in (All players matching (((Picked player) slot status) equal playing)) and do (Actions)
        • loop - actions
          • player - Add tmp to (Picked player) current lumber
 
Last edited:
Status
Not open for further replies.
Top