• 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.

[Solved] a mode that makes spells instant and no manacost :)

Status
Not open for further replies.
Level 3
Joined
Apr 20, 2013
Messages
36
hey guys ;)

i wanted to make a trigger that if player 1 (host) enters the text "text" as an exact match, then spell cooldowns and manacosts set to 0 and all heros in the map levelups to 25 instantly .... like DotA's WTF and TEST Mode ......

but how ???

EDIT: i made my trigger and im stuck in what action to use next ....

  • WTF Mode
    • Events
      • Player - Player 1 (Red) types a chat message containing -wtf as An exact match
    • Conditions
    • Actions
      • Game - Display to (All players) the text: WTF Mode ... Spells...
      • For each (Integer F) from 1 to 10, do (Actions)
        • Loop - Actions
          • Hero - Set (Random unit from (Units owned by (Player(F)))) Hero-level to 25, Show level-up graphics
 
Last edited:
Level 3
Joined
Mar 30, 2013
Messages
22
  • Stuff
    • Events
      • Zeit - Every 0.10 seconds of game time
    • Conditions
    • Actions
      • Set Heroes = (Units in (Playable map area) matching (((Triggering unit) is A Hero) Equals True))
      • Unit Group - Pick every unit in Heroes and do (Actions)
        • Loop - Actions
          • Unit - Reset ability cooldowns for (Picked unit)
          • Unit - Set mana of (Picked unit) to 100.00%
      • Custom Script: call DestroyGroup (udg_Heroes)

  • StartStuff
    • Events
      • Player - Player 1 (Rot) types a chat message containing WTF as exact match
    • Conditions
    • Actions
      • Trigger - Turn on Stuff <gen>


BTW: Is there any way to set the WE LAnguage to english? I am tired of translating my triggers...
 
Level 37
Joined
Mar 6, 2006
Messages
9,243
This works also, except for spells like Immolation which drain mana over time.

  • Untitled Trigger 105
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
    • Actions
      • Unit Group - Add (Triggering unit) to group
      • Trigger - Turn on Untitled Trigger 106 <gen>
  • Untitled Trigger 106
    • Events
      • Time - Every 0.00 seconds of game time
    • Conditions
    • Actions
      • Trigger - Turn off (This trigger)
      • Unit Group - Pick every unit in group and do (Actions)
        • Loop - Actions
          • Unit Group - Remove (Picked unit) from group
          • Unit - Reset ability cooldowns for (Picked unit)
          • Unit - Set mana of (Picked unit) to 100.00%

BTW: Is there any way to set the WE LAnguage to english? I am tired of translating my triggers...
http://www.thehelper.net/threads/tool-world-editor-language-switcher.131664/
 
Status
Not open for further replies.
Top