Search results

  1. W

    Getting Units Behind

    Any simple and efficient alternative other then using LineSegments to detect whether units are behind another unit? For example Unit Caster :banghead: into Unit Target in his path. Something like a SetUnitPosition thing when it knocks into another unit while moving.
  2. W

    Overlord 2

    Comments? Suggestions? It was kind of epic at the start but I got pissed off at the part where I got red minions and I went up to the elevator in a possessed minion and then went down and got stuck there... permanently..:mad:
  3. W

    Moving units by vectors

    So I have vector a which is x y z of initial unit position available and vector b x y z of final unit position available, how do I move them? // initial vector set d.zx = GetUnitX(target) * Cos(angle) set d.zy = GetUnitY(target) * Sin(angle) call MoveLocation(L,d.x,d.y)...
  4. W

    Camera Bounds

    When you set camera bounds, the minimap looks really ugly, is there a way to fix the ugly look and apply the minimap correctly like the default minimap without getting modified by camera bounds. To say it short and sweet, setting a camera bounds to a rect make a rectangle selection at the...
  5. W

    Stackable instances for a unit of this spell

    Stated above. scope Overseermight initializer Init globals private constant integer DMGAURA = 'A00F' private constant integer SPELLBOOK = 'A00V' private constant integer SPELL = 'A00U' private constant string EFFECT = "Abilities\\Spells\\Items\\AIco\\CrownOfCmndTarget.mdl"...
  6. W

    Label for Finger of death sound

    Title stated above, does anybody know of it? Went searching through default abilities and buff but had no luck. EDIT: Found it under the orc's header.
  7. W

    Eye of Sargeras

    Could anyone modify the existing one to have a proper working portrait? Giving + rep.
  8. W

    Sound does not play

    scope deathpact initializer Init globals private constant integer SPELL = 'A00P' private constant string EFFECT = "Abilities\\Spells\\Other\\Doom\\DoomTarget.mdl" private sound SLEEP private constant string GHOST =...
  9. W

    Boolean does not listen?

    scope Necromancy initializer Init globals private constant integer SPELL = 'A00J' private constant integer HEROID = 'U000' private integer Count = 0 private timer TIMER = CreateTimer() private constant real TIMEOUT = 1 private group Casters = CreateGroup() private...
  10. W

    System Hero Tavern System (HTS)

    As usual, I don't like typing things so I will let the documention take my place. Requirements: AutoIndex & SimError Hero Tavern System v1.00 By wraithseeker Changelog v1.00 - Initial Release Main Purpose - Saving space - Extending Taverns - Hero...
  11. W

    Is there a function like GetCurrentUnitSelected

    Solved... The answer was GroupEnumUnitsSelected.
  12. W

    Physics Formula

    If I were to give time and displacement as user inputted variables, which formula should I use to get vi and vf? I tried to derive formulas from here but to no avail :eek:
  13. W

    Jump System

    Here's a little system that I have been working on, can I have some feedbacks, criticism, comments or any function that you guys wish to have. This is also very nice for vertical jumps. I made it work with my system EKB and it takes elevation angle, google for a picture and you'll...
  14. W

    Maths enquires

    library VerticalJump uses AutoIndex //================================================================= // HOW TO USE ? //================================================================= // // function ThrowUnitToAir takes unit u, real velocity returns nothing // //...
  15. W

    System Hero Revival System

    Hero Revival System by wraithseeker v1.00 Changelog v1.00 - Initial release. HRS is a system that behaves similarly like World of Warcraft 's' revival system added to the system dies, a spirit and a corpse is created in place to fake the death and...
  16. W

    SetStructureFacing

    Possible? How?
  17. W

    "Getting Online In Chat"

    When I realise that I get online on the chat and then go to status and then use the command to type out my password, I found out that they are not **** instead just display the password which isn't nice. Perhaps you can make them stars? >*** Maybe some people is spying on you behind :o
  18. W

    Function Interfaces

    scope test //imagine this is a system ( does not complie properly .... ) function interface what takes unit target returns nothing private function test takes nothing returns nothing local unit u = GetTriggerUnit() call what.execute(u) set u = null endfunction endscope...
  19. W

    Possible or not?

    private function test takes unit target returns nothing call KillUnit(target) // just a testing hmmmm... endfunction private function Init takes nothing returns nothing local bonus d set DataTable = Table.create() set d = bonus.Itemtype('I000') set d.Damage = 100...
Top