|
Senior Member
|

07-27-2008
, 15:07
Re: need help with war3
|
#4
|
get the scripts open war3ft/constants at the bottom you will see something like this
Code:
new const Float:p_vampiric[4] = {0.10,0.20,0.30,0.40} // Vampiric Aura (skill 1)
new Float:p_unholy[4] = {265.0,285.0,300.0,320.0} // Unholy Aura (skill 2)
new Float:p_unholy_dod[4] = {33.3,66.6,77.7,100.0} // Unholy Aura (skill 2)
new const Float:p_levitation[4] = {0.8,0.6,0.4,0.3} // Levitation (skill 3)
new const p_invisibility[4] = {200,175,135,120} // Invisibility (skill 1)
new const p_devotion = 15 // Devotion Aura (skill 2)
new const Float:p_bash[4] = {0.10,0.20,0.30,0.40} // Bash (skill 3)
new const Float:p_critical[4] = {0.25,0.50,0.75,0.85} // Critical Strike (skill 1)
new const Float:p_grenade[4] = {2.0,3.0,4.0,5.0} // Critical Grenade (skill 2)
new const Float:p_ankh[4] = {0.333,0.666,0.788,1.0} // Equipment reincarnation (skill 3)
new const Float:p_evasion[4] = {0.1,0.175,0.250,0.275} // Evasion (skill 1)
new const Float:p_thorns[4] = {0.05,0.1,0.15,0.2} // Thorns Aura (skill 2)
new const Float:p_trueshot[4] = {0.1,0.2,0.35,0.45} // Trueshot Aura (skill 3)
new const Float:p_phoenix[4] = {0.333,0.666,0.788,1.0} // Phoenix (skill 1)
new const p_phoenix_dod[4] = {300,600,900,1200} // Phoenix - DOD (skill 1)
new const Float:p_banish[4] = {0.05,0.10,0.15,0.20} // Banish (skill 2)
new const Float:p_mana[4] = {0.02,0.04,0.08,0.12} // Siphon Mana (skill 3)
new const Float:p_resistant[14] = {0.02, 0.04, 0.08, 0.12, 0.16, 0.20, 0.24, 0.28, 0.32, 0.34, 0.36,0.38,0.39,0.40} // Resistant Skin
new const Float:p_heal[4] = {6.0,4.0,2.0,1.0} // Healing Wave (skill 1)
new const Float:p_hex[4] = {0.05,0.10,0.15,0.20} // Hex (skill 2)
new const p_serpent[4] = {1,2,3,4} // Serpent Ward (skill 3)
new const Float:p_concoction[14] = {0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.10, 0.11,0.12,0.13,0.15} // Unstable Concoction (Skill 4)
new const Float:p_fan[4] = {0.05,0.10,0.15,0.20} // Fan of Knives (skill 1)
new const Float:p_blink[4] = {0.333,0.666,0.888,1.0} // Blink (skill 2)
new const Float:p_shadow[4] = {0.05,0.10,0.15,0.20} // Shadow Strike (skill 3)
new const Float:p_harden[14] = {0.03, 0.05, 0.10, 0.15, 0.20, 0.25, 0.30, 0.35, 0.37, 0.40, 0.43,0.46,0.58,0.60} // Hardened Skin (Skill 4)
new const Float:p_impale[4] = {0.05,0.1,0.15,0.2} // Impale (skill 1)
new const Float:p_spiked[4] = {0.05,0.1,0.15,0.2} // Spiked Carapace (skill 2)
new const Float:p_carrion[4] = {0.05,0.10,0.15,0.20} // Carrion Beetle (skill 3)
new const Float:p_orb[14] = {0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.10, 0.11,0.12,0.13,0.15} // Orb of Annihilation (Skill 4)
just multiply everything with 3 for example
Code:
new const Float:p_vampiric[4] = {0.10,0.20,0.30,0.40} // Vampiric Aura (skill 1)
it will be
Code:
new const Float:p_vampiric[4] = {0.30,0.60,0.90,1.20} // Vampiric Aura (skill 1)
but urs will be
Code:
new const Float:p_vampiric[3] = {0.10,0.20,0.30} // Vampiric Aura (skill 1)
to start with not with four im just taking this off my files and i scripted my wc3 to have 13 lvl's thats why mines have 4's urs should only have 3 and if you have more questions about wc3 you can always join the wc3 forums, im always helping out on them http://wc3mods.net/forums/viewforum.php?f=21
|
|