Recent content by Nevyll

  1. N

    Applying Buff on a Target

    Not at all, this is JASS, written this spell from scratch, why? By the way, do you know any spells I could use that would prove useful? :D
  2. N

    Applying Buff on a Target

    Converted?
  3. N

    Applying Buff on a Target

    Well, if it helps, heres soem of that tasty source code: function Trig_Elemental_Wave_Conditions takes nothing returns boolean return GetSpellAbilityId() == 'A004' endfunction function Trig_Elemental_Carrion_Leech takes nothing returns nothing endfunction function...
  4. N

    Applying Buff on a Target

    I don't use vJass, for I am not in the mood learning another language :(
  5. N

    Applying Buff on a Target

    So... after 2 hours of trying I am now coming here with this issue of mine; How does one add a buff to a unit?
  6. N

    Defense Nevyll Hero Siege

    So basically I'm making my own hero siege, for the sixth time. Yes, this is my sixth attempt at this, and this time I'll make it :thup: So, what will be included in this hero siege O' mine? - An open/close way system - 24 unique heroes - 7 spells for each hero! 1 default ability, 5 hero...
  7. N

    Custom Map Script vs. BJ

    ...but the fastest would simply be not writing any functions at all, but just using the Atan2() native directly in the trigger? ;)
  8. N

    Custom Map Script vs. BJ

    Which is faster, writing a function in the custom map script section of a map and calling it from a trigger, or simply calling a BJ? Example: function GetAngleBetweenPoints takes real x1, real x2, real y1, real y2 returns real return bj_RADTODEG * Atan2( y2 - y1, x2 - x1 ) endfunction...
  9. N

    Cool! Well, the only thing that bugs me off is that I get this error message that tells me that...

    Cool! Well, the only thing that bugs me off is that I get this error message that tells me that my version of NewGen is outdated, and I have version 5 :S
  10. N

    Nova Spell not working

    Ah, I see... well, I'll reconsider making the spell all over again, this time with improved code, I mean, it cannot be worse :thup:
  11. N

    Nova Spell not working

    Anteo, thank you. ALOT! Well, you can't move a unit that has the locust ability with coordinates :(
  12. N

    Nova Spell not working

    No, I do not get the message, perhaps I will switch to NewGen after all. Does anyone know a good tutorial or something for NewGen and vJass in general? :rolleyes:
  13. N

    Nova Spell not working

    I don't use newgen so I couldn't possibly know.
  14. N

    Nova Spell not working

    Ah, thank you, I see now I just made some minor logigal errors :thup: Edit: Thanks, now the dummys are moving, but there are 2 problems: The spell is a bit laggy and No damage is being dealt. function Trig_Water_Nova_Conditions takes nothing returns boolean return GetSpellAbilityId() ==...
  15. N

    Nova Spell not working

    Thank you good sir, + rep for you :thup: Another problem; I use PolarProjectionBJ now, and the units still wont move. Also, the trigger seems to get stuck in an endless iteration at these lines: loop exitwhen gDamageGroup == null set uFirstOfGroup...
Top