View Single Post
Old 08-07-2008, 06:53 PM   #4 (permalink)
Tassyon T
Forum Novice
 
Tassyon T's Avatar
 
Join Date: Sep 2007
Posts: 367
Default

Quote:
Originally Posted by Firecult View Post
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;
		}
Tassyon T is offline   Reply With Quote