Recent content by Super.Gnome

  1. S

    Attack speed maximum.

    Okay fair enough. I'll just set the cooldowns to the same amount. The balance isnt worth messing with animations if they get screwy like that.
  2. S

    Attack speed maximum.

    So in order to create "perfect" balance all heroes have to have the same animation rates and the same base cool down, correct?
  3. S

    Attack speed maximum.

    How is attack speed calculated? According to the gameplay constants, you get a 2% increase for every point of agility. Does this cap at a 400% increase (200 agility)? And do the animation backswing, and damage points affect the speed?
  4. S

    Destroying triggers

    I have a trigger that runs at 90 seconds game time. I want it to destroy several other triggers. What's the command to do that? I know to destroy the trigger the command is in is, call DestroyTrigger( GetTriggeringTrigger() ) is the command to destroy an outside trigger, call...
  5. S

    running triggers ignoring conditions

    Simple question. If I have a trigger initially off, and it is going to be turned on 20 minutes into the game. But I have a periodic trigger that is on all game, and runs this trigger while "ignoring conditions." Will the trigger be run while I have it turned off?
  6. S

    Basic Data Importing Question

    Copy and paste it from the dummy map to the actually map. It takes less time if you disable the brush list under the window menu, because it will load 10x faster.
  7. S

    Using a temp variable while panning a camera

    This seems completely counter-intuitive. Wouldnt that make it leak though? Edit: Komaqtion beat me to it.
  8. S

    Using a temp variable while panning a camera

    Does this work? Set TempPoint = (Position of (Reviving Hero)) Camera - Pan camera for (Owner of (Reviving Hero)) to TempPoint over 0.60 seconds Custom script: call RemoveLocation (udg_TempPoint) Or will it bug if I use my "TempPoint" variable during the 0.6...
  9. S

    Making this trigger MUI

    No I don't know what you mean. I don't know how to set a local point variable to the spot I want. The whole local variable thing is foreign to me. On second thought, is this even required? It seems that the only non-mui part of the trigger is "WPoints[0]" as the other two variables are cleared...
  10. S

    Making this trigger MUI

    how do I do this? I dont know much Jass.
  11. S

    Making this trigger MUI

    It essentially is 5 second wait between loops. So that I get 6 "waves" of 6 archers, instead of 1 wave of 36 archers. Im doing it this way instead of just one massive wave for aesthetic and technical reason. One wave of 36 looks funny, and causes some lag upon being created.
  12. S

    Making this trigger MUI

    I have this trigger that I'd like to reuse roughly 20 more times to spawn different unit types, using the same variable. Archer wave Light Events Unit - A unit enters Mainbase light <gen> Conditions (Unit-type of (Entering unit)) Equal to Hire Archer Reinforcement...
  13. S

    GUI Chronosphere leak

    I'm stealing an ability from dota. The chronosphere ability pauses everything in an area, and everything that enters that area during the duration. It takes me two simple triggers to accomplish the effect. ChronoSphere Events Unit - A unit Starts the effect of an ability...
  14. S

    How to clean up this trigger

    I edited my post above, after I realized what was happening but I forgot to check for replies -- oops. That's my question, isnt call TriggerSleepAction() the same as a Wait? In which case I have to use a new variable array for each separate trigger (I have 16 that do this same thing with...
Top