Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::Development > Archive::Bugs

Archive::Bugs Archive area for Bugs's posts that were moved here after an inactivity period of 90 days.

Reply
 
Thread Tools Display Modes
  #1  
Old 02-18-2002, 10:37 AM
Kaiyodo
Hill Giant
 
Join Date: Jan 2002
Location: Midlands,UK
Posts: 149
Default 2H piercing bug fixes

I've been playing around in client_process.cpp and attack.cpp writing some double attack/dual wield code and found a couple of bugs that are stopping 2 handed piercing working in 0.2.3.

In attack.cpp in Client::Attack()

// 2h Piercing
if (item->common.skill == 0x35)

This should be decimal 35 I think, not hex. 0x35 according to skills.h is tracking!

Second bug, in client_process.cpp in Client::SetAttackTimer() there's a line that looks like this ..

if(item->common.skill > 4)
attack_timer->Disable();

As 2HP is skill 35 it never gets past this so you never attack, I changed it to ..

if(item->common.skill > 4 && item->common.skill != 35)
attack_timer->Disable();

.. and this let my ogre play with some very large lances

K.
Reply With Quote
  #2  
Old 02-19-2002, 01:47 AM
Nada
Sarnak
 
Join Date: Jan 2002
Posts: 87
Default

Have you tried to get dual wield to work? I think that would be great if we could get that into the emulator.
Reply With Quote
  #3  
Old 02-19-2002, 05:53 AM
Kaiyodo
Hill Giant
 
Join Date: Jan 2002
Location: Midlands,UK
Posts: 149
Default

I've had duel wield and double attack working for a while in my modified version, just a matter of adding another attack timer. It's not very refined though, I don't think it even takes your skill into account!

I just stuffed in some formulas from Monkly business for the damage calculations and percentage chance of DA/DW and it works pretty well, specially when you add 100% haste and monk epic fists

I might go and tidy the stuff up at the weekend and post the changes somwhere. I'm not affiliated with the dev team at all though, and I know Image is doing his own combat system (which is bound to be much better than my hacks so I doubt anything of mine will end up in the official Emu.

K.
Reply With Quote
  #4  
Old 02-19-2002, 10:50 AM
Nada
Sarnak
 
Join Date: Jan 2002
Posts: 87
Default

You should keep working on it, Im sure the dev team would look at it and possibly add it to the emu, since neither dual wield or double attack are in.
Reply With Quote
  #5  
Old 02-20-2002, 12:56 AM
Pyrotek
Sarnak
 
Join Date: Jan 2002
Posts: 97
Default

Many people not directly affiliated have contributed. Certainly post your work and it will be included in some form.
Reply With Quote
Reply


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

Forum Jump

   

All times are GMT -4. The time now is 10:51 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3