• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

[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?
 
Level 40
Joined
Dec 14, 2005
Messages
10,532
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.
Top