Recent content by nandosman

  1. N

    Starfall w/ Stun?

    yes, that will make the spell MUI, it will work for every units casting that spell
  2. N

    Starfall w/ Stun?

    it's not MUI, for that u need to make it all in JASS and change some GDD variables, i'll do it for ya when i get home
  3. N

    Starfall w/ Stun?

    To stun units for each star hit, you need to use Unit Friendly Damage Detection System posted here before, it requires some Jass knowledge to understand it, but you don't need to, just copy paste the trigger into your map and do everything else in GUI, here, i made an example, I think this is...
  4. N

    About color codes

    255 in hex is FF, so that would be |cffffffff|r
  5. N

    About color codes

    they ARE rgb codes in hexadecimal
  6. N

    About color codes

    take a look at this: http://world-editor-tutorials.thehelper.net/colors.php
  7. N

    [WTB] Healing Spell ideas? Community be heard

    I once created a cool passive healing spell, you get a chance of canceling enemy attack or spell damage and transforming it into AoE heal for the amount of damage dealt to you. You can aditionally add a cooldown to the effect so it can only occur once every X seconds ;P
  8. N

    Starfall w/ Stun?

    1) create a dummy with a storm bolt dummy spell of Z stun duration (Z being the seconds of your desired stun) in your unit's position for each unit within X range of your unit (X being the range of your spell) and make it cast it on each unit. 2) create a dummy unit in your unit's position with...
  9. N

    vJass - I: Uncomplicating the Complicated

    no, they dont :/, just read about structs and yes, classes in Java are more like structs
  10. N

    vJASS Globals Question

    ah, sry about that. I'll post the code when i get home (at Univerity right now :/)
  11. N

    Constant Function and Variable

    wouldn't that throws an error cause of I2R not being a constant function?
  12. N

    vJASS Globals Question

    it overwrites :/, just tried it in NewGen
  13. N

    Constant Function and Variable

    and for code presentation, what do you recomend? (Spell Rawcodes and constants in functions or globals?)
  14. N

    vJASS Globals Question

    If i have a trigger with everything inside a scope, and there's a globals block wich variables are all private: If the trigger triggers twice at the same time, will those globals overwrite each other? Or will they work like locals for that scope?
  15. N

    vJass - I: Uncomplicating the Complicated

    Dude great tutorial! I have a few questions: - So, scopes are like classes in Java, right? - When you create a scope with an initializer, your are making that function to load in map initialization, but the other functions in the scope wont, right? - Can you have a scope with multiple...
Top