View Single Post
  #1  
Old 03-06-2003, 05:03 AM
IADaenks
Fire Beetle
 
Join Date: Feb 2003
Location: Houston, TX
Posts: 8
Default Bards can now cast while running!

This fixes bards not being able to cast while running, its VERY simple...

this is in spells.cpp:
Code:
void Mob::SpellProcess() {

    if (casting_spell_id)

    {

        float dist = (float)sqrt((float)pow(x_pos-GetSpellX(),2)+pow(y_pos-GetSpellY(),2));

        if (dist > 5 && !IsBardSong(casting_spell_id))

        {

			isinterrupted = true;

        }

    }

continue with rest of function normally
still working on the fixzzle bug, and spells getting intrupted by normal hits.... but heres a start


-Dan
__________________
www.geekside-hosting.com for all your hosting needs... Wanna host a EQ server? get in touch
Come play on Daenks' Server, new, untamed wilderness for you and your friends to conqer!
ATTN: Daenks' Server is now accepting applications for GMs!
Reply With Quote