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

How to order a unit to cast Rain of Chaos?

Status
Not open for further replies.
Level 7
Joined
Mar 16, 2014
Messages
169
The gui command to order a unit to cast rain of chaos is bugged and instead orders the unit to cast rain of fire.

Can somebody post a custom script that orders a certain unit variable to cast rain of chaos at a certain point that's a point variable? Much appreciated.
 
Level 2
Joined
Apr 2, 2023
Messages
3
Sure.

  • Set point = (Center of (Playable map area))
  • Custom script: call IssuePointOrderLoc(GetTriggerUnit(), "rainofchaos", udg_point)
  • Custom script: call RemoveLocation(udg_point)
call IssuePointOrderByIdLoc(GetTriggerUnit(), 852237, udg_point) would also work.
Thank you so much, it finally worked, I spent a few hours trying to figure out why the skill does not want to work, it turns out it is a bug . . .
 
Status
Not open for further replies.
Top