Go Back   RunUO - Ultima Online Emulation > RunUO > Script Support

Script Support Get support for modifying RunUO Scripts, or writing your own!

Reply
 
Thread Tools Display Modes
Old 08-07-2008, 01:49 AM   #1 (permalink)
Newbie
 
imfection's Avatar
 
Join Date: Dec 2006
Posts: 47
Default Chivery Problem...

Hmm idk why but when i use my chivery spells they have like a 3 second delay... Why is this? Ive tried it even when i am the only one on the shard to so there isnt lag at all..
imfection is offline   Reply With Quote
Old 08-07-2008, 02:30 AM   #2 (permalink)
Forum Novice
 
Join Date: Apr 2006
Posts: 163
Default

From Spell.cs

Code:
// Faster casting cap of 2 (if not using the protection spell) 
// Faster casting cap of 0 (if using the protection spell) 
// Paladin spells are subject to a faster casting cap of 4 
// Paladins with magery of 70.0 or above are subject to a faster casting cap of 2 
int fcMax = 2;

if ( CastSkill == SkillName.Chivalry && m_Caster.Skills[SkillName.Magery].Value < 70.0 )
	fcMax = 4;

int fc = AosAttributes.GetValue( m_Caster, AosAttribute.CastSpeed );

if ( fc > fcMax )
	fc = fcMax;

if ( ProtectionSpell.Registry.Contains( m_Caster ) )
	fc -= 2;
Not sure if this is your problem but might want to lower your magery skill below 70 and see if there is a difference.
__________________
http://www.crypticrealms.com
homergz is online now   Reply With Quote
Old 08-07-2008, 01:03 PM   #3 (permalink)
Newbie
 
imfection's Avatar
 
Join Date: Dec 2006
Posts: 47
Default

kk ty ill try it out
imfection is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5