Joshua93
Member
Back again.
I'm having an issue with my paralyze spell, when I freeze a character it instantly lifts the freeze. I switched over to a Non-AOS expansion to see if that was the issue and sure enough it was. Does anyone know what file that localized message is in and how do I go about fixing it? Thanks
Nvm, I found it. Had to edit my own timers in the paralyze.cs file under the Core.AOS line. Here's the block if anyone else is looking to make the same change
Post automatically merged:
Nvm, I found it. Had to edit my own timers in the paralyze.cs file under the Core.AOS line. Here's the block if anyone else is looking to make the same change
C#:
if ( Core.AOS )
{
int secs = (int)((GetDamageSkill( Caster ) / 10) - (GetResistSkill( m ) / 10));
if( !Core.SE )
secs += 10;
if ( !m.Player )
secs *= 10;
if ( secs < 10 )
secs = 10;
duration = secs;
}
Attachments
Last edited: