Aller au contenu

Photo

prevent max and emp feats with IGMS spell?


  • Veuillez vous connecter pour répondre
1 réponse à ce sujet

#1
Knight_Shield

Knight_Shield
  • Members
  • 444 messages
 I would like to prevent max and emp for IGMS spell.

Suggestions/links/or a script please?:)

#2
Shadooow

Shadooow
  • Members
  • 4 471 messages
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

Modifié par ShaDoOoW, 02 août 2012 - 05:06 .