Search results

  1. Ashlebede

    Tutorial How to convert a Frozen Throne map so it is playable in Reign of Chaos

    Anything in particular that needs an update ? (except attaching the files directly to the post, which I'm too lazy/don't know how to do) {sorry about the late reply, I don't visit this website too often, these days...)
  2. Ashlebede

    Tutorial How to convert a Frozen Throne map so it is playable in Reign of Chaos

    Yes, it is made by an experimented mapper and it is a TFT-quality map. Many people think that because a map was made for RoC, it is worse than a TFT map ( which is like racism, but for maps... mappism ? RoCism ? ), and many even think that it's not possible to make a TFT map playable in RoC if...
  3. Ashlebede

    Tutorial How to convert a Frozen Throne map so it is playable in Reign of Chaos

    This tutorial explains how you can make a map in the Frozen Throne's (TFT) World Editor and then convert it so all your Reign of Chaos (RoC) friends can play it. This method allows you to use almost everything TFT's World Editor has to offer and also allows the use of TFT-only spells. This...
  4. Ashlebede

    I want to learn, too

    You don't need any of those for external code edition. Only a text editor... In fact, on Unix systems, you only need a Terminal console.
  5. Ashlebede

    I want to add an animation when a passive procs.

    Then why does Critical Strike have a field for constant damage ?
  6. Ashlebede

    I want to add an animation when a passive procs.

    That one does depend on your hero. If the hero already has a fast attack speed and/or the damage is not major, this doesn't matter so much. But I have to admit that is a lot of conditions. I'm just saying it can be done if those conditions are met without reaching imbalance. And how is the...
  7. Ashlebede

    I want to add an animation when a passive procs.

    Why so ? Ever heard of the "A unit is attacked" event ? Unless there is a unit with major evasion chance or something, it shouldn't matter too much. It's not that bad...
  8. Ashlebede

    I want to add an animation when a passive procs.

    (It is easy if the damage factor is constant, though.)
  9. Ashlebede

    Help with spell, [GUI]

    By the way, Storm Bolt is a homing spell, if you want to know. Same for Fireball & a couple others. I've been wondering why you trigger this one...
  10. Ashlebede

    is it possible to unally yourself?

    You'd have to trigger it all, for you can only ally/unally players, indeed. You can unally yourself, though. It will take away the control from your own units, that's pretty much all it'll do.
  11. Ashlebede

    Help with spell, [GUI]

    /confused Say that again?
  12. Ashlebede

    Fade cause sever split?

    function CustomFinishCinematicFade takes nothing returns nothing call PauseTimer(GetExpiredTimer()) call DisplayCineFilter(false) call EnableUserUI(true) endfunction function foo takes nothing returns nothing local timer t = CreateTimer() if...
  13. Ashlebede

    Fade cause sever split?

    function FinishCinematicFadeAfterBJ takes real duration returns nothing // Create a timer to end the cinematic fade. set bj_cineFadeFinishTimer = CreateTimer()//<<<<< this call TimerStart(bj_cineFadeFinishTimer, duration, false, function FinishCinematicFadeBJ) endfunction...
  14. Ashlebede

    Help with spell, [GUI]

    Unit Group - Remove Caster from HomingGroup The variable Caster wasn't set before. That should be (Picked unit). // Set DummyLoc = (Load 6 of (Key (Picked unit)) in HomingTable) Set TargetUnitLoc = (Load 7 of (Key (Picked unit)) in HomingTable) Should be : // Set DummyLoc =...
  15. Ashlebede

    Grid "system", useful or not ? :S

    Why don't you want to use globals, by the way ? It seems that a hashtable is the only way to have an unlimited (or almost) number of elements in your data structure. If you really don't want to use globals, you could use a hashtable for each instance... (lol?) You could also cycle through all...
  16. Ashlebede

    Help with spell, [GUI]

    This is what you have : // Unit Group - Pick every unit in HomingRocketGroup and do (Actions) Loop - Actions Unit - Move DummyUnit instantly to (DummyLoc offset by PointsMovedPerSecond towards Angle degrees), facing Angle degrees If (All Conditions are True) then do...
  17. Ashlebede

    Grid "system", useful or not ? :S

    Read : Use rects. They already have MinX, MinY, MaxX, MaxY, CenterX, CenterY... you'd just have to create a couple functions to get their width & height, which is easy, anyways. Rects wouldn't take any more disk space than structs, as far as I know.
  18. Ashlebede

    Help with spell, [GUI]

    For god's sake... This is, I'm pretty sure, your 4th threads about this spell. Although one was your attempt to make it in vJass and I can understand that, it's still 2 GUI threads requesting help and 2 Jass threads requesting help for the same spell. On-Topic : // Hashtable - Save Handle...
  19. Ashlebede

    Just an FYI (Hashtables)

    They still work in Jass.
Top