Quote:
Originally Posted by Firecult
Ok so how do I disable paralyze field and energy field spells? whenever I mess with the script I get hundred's of errors 
if possible can you also tell me how to make 100 skill = 120 skill (as in if you have GM you have the equivilent of Legendary)
and where I can find the faction robe script....
I know it's alot to ask but any help would be apreciated  thanks.
|
Open the folder with your runuo installation. Right click on the scripts folder. Search for the paralyzefield.cs script.
Change...
Code:
public override void OnCast()
{
Caster.Target = new InternalTarget( this );
}
to...
Code:
public override void OnCast()
{
//Caster.Target = new InternalTarget( this );
Caster.SendMessage("This spell has been disabled.");
return;
}
Open the folder with your runuo installation. Right click on the scripts folder. Search for the energyfield.cs script.
Change...
Code:
public override void OnCast()
{
Caster.Target = new InternalTarget( this );
}
to...
Code:
public override void OnCast()
{
//Caster.Target = new InternalTarget( this );
Caster.SendMessage("This spell has been disabled.");
return;
}