• Check out the results of the Techtree Contest #19!
  • 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.
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!

[JASS] Custom Script destroying a point

Status
Not open for further replies.
Level 4
Joined
Aug 14, 2007
Messages
66
How do I turn


  • Point - Remove flamepos[(Custom value of (Casting unit))]
into a custom script line?

Also how would I do flamepos[Integer A] the integer in GUI when using for each Integer A from 1 to 10 do etc. ?

and what does


  • Custom script: set bj_wantDestroyGroup = true
do?
 
How do I turn
  • Point - Remove flamepos[(Custom value of (Casting unit))]
into a custom script line?
Using WeU, eh?

Well,

  • Custom script: call RemoveLocation(udg_flamepos[GetUnitUserData(GetTriggerUnit())])
Also how would I do flamepos[Integer A] the integer in GUI when using for each Integer A from 1 to 10 do etc. ?
Erm, wait, what's the problem here? You want to remove flamepos[Integer A]?

  • Custom script: call RemoveLocation(udg_flamepos[bj_forLoopAIndex])
and what does
  • Custom script: set bj_wantDestroyGroup = true
do?
Destroys the next group created by Unit Group - Pick Every Unit... after use.
 
Status
Not open for further replies.
Back
Top