• 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 faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

Problem with picking units withing 300 range

Status
Not open for further replies.
Level 7
Joined
Oct 8, 2008
Messages
200
the hero who casts the spell is still picked for some reason
(am not good at conditions)
also can someone help so it doesn't pick buildings as well

JASS:
function Trig_Swarm_Condition takes nothing returns boolean
    return ( IsUnitType(GetEnumUnit(), UNIT_TYPE_STRUCTURE) == IsUnitEnemy(GetTriggerUnit(), GetOwningPlayer(GetTriggerUnit())) )
endfunction
//below is the just part with the problem 
set swarm = GetSpellTargetLoc()
set dead = GetUnitsInRangeOfLocMatching(300.00, swarm, Condition(function Trig_Swarm_Condition ))
 
Level 16
Joined
Feb 22, 2006
Messages
960
i would use a global var for the prob, just set player tmpP = GetOwningPlayer(GetTriggerUnit()) (in your trigger with the GetUnitsInRange, and then in your condition
return IsUnitType(GetFilterUnit(),UNIT_TYPE_STRUCTURE) and IsUnitEnemy(GetFilterUnit(),tmpP)

shoudl solve your problem
 
Level 7
Joined
Oct 8, 2008
Messages
200
Ok the part where he picks himself is fixed but now it doesn't work
also how can I check or set a variable to how many units are in a certain unit group
 
Status
Not open for further replies.
Top