• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Dash

This bundle is marked as useful / simple. Simplicity is bliss, low effort and/or may contain minor bugs.
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Dash dash dash dash dash dash dash
Contents

Dash (Map)

The same issues I listed in your other named submission Omnislash
apart from the obvious ones that don't apply though I make special note for these further notes:
- This has a configuration, but it's lacking - it should also contain such things as weapontypes/damagetypes/attachmentpoint
- Your group filtering and usage is inefficient we have tutorials on the site on how to do them more efficiently (avoids ForGroup)

Please update your existing submissions before uploading more, it avoids us reviewers from repeating ourselves and helps both reviewers and you when you don't have to fix the same problems in more than one resource
 
Level 8
Joined
Jun 24, 2016
Messages
30
Tank-Commander:
did you mean this type of group ?
call GroupEnumUnitsInRange(RushGroup, x, y, 200, null)
loop
set u = FirstOfGroup(RushGroup)
exitwhen u == null
if not IsUnitInGroup(u, g) and UnitCheck(a, u) then

call UnitDamageTarget(a,u,75.00,false,false,ATTACK_TYPE_NORMAL,DAMAGE_TYPE_MAGIC,null)
endif
call GroupAddUnit(g, u)
endif
call GroupRemoveUnit(RushGroup, u)
endloop
endif
 

Attachments

  • upload_2016-7-29_6-47-50.png
    upload_2016-7-29_6-47-50.png
    235 bytes · Views: 145
Top