Suggestions/links/or a script please?
prevent max and emp feats with IGMS spell?
Débuté par
Knight_Shield
, août 02 2012 04:57
#1
Posté 02 août 2012 - 04:57
I would like to prevent max and emp for IGMS spell.
Suggestions/links/or a script please?
Suggestions/links/or a script please?
#2
Posté 02 août 2012 - 05:04
2da edit way -> spells.2da
line 447, collumn MetaMagic to value 0x38
line 448, collumn MetaMagic to value 0x38
(this solution should work in server override without need for players have this 2da too)
scripting wise way -> x0_i0_spells
function DoMissileStorm, add this code below line int nMetaMagic = GetMetaMagicFeat();
if(nSpell == 447 || nSpell == 448)
{
nMetaMagic = METAMAGIC_NONE;
}
then open scripts x0_s0_missstorm1 and missstorm2 and (re)compile them and save
line 447, collumn MetaMagic to value 0x38
line 448, collumn MetaMagic to value 0x38
(this solution should work in server override without need for players have this 2da too)
scripting wise way -> x0_i0_spells
function DoMissileStorm, add this code below line int nMetaMagic = GetMetaMagicFeat();
if(nSpell == 447 || nSpell == 448)
{
nMetaMagic = METAMAGIC_NONE;
}
then open scripts x0_s0_missstorm1 and missstorm2 and (re)compile them and save
Modifié par ShaDoOoW, 02 août 2012 - 05:06 .





Retour en haut






