Go Back   EQEmulator Home > EQEmulator Forums > General > General::News

General::News EQemu news posts.

Reply
 
Thread Tools Display Modes
  #16  
Old 11-09-2005, 02:41 PM
fathernitwit
Developer
 
Join Date: Jul 2004
Posts: 773
Default

like I said, that code is only used in calibration, used once at process startup if at all... and it sleeps a very small ammount right now.
Reply With Quote
  #17  
Old 12-04-2005, 03:38 PM
TheMeow
Fire Beetle
 
Join Date: Dec 2005
Posts: 5
Default

Got it to compile with these changes:

rdtsc.cpp:

//untested!
unsigned long high, low;
__asm {
rdtsc
mov high, edx
mov low, eax
}
res = ((sint64)high)<<32 | low;
TO
//untested!
unsigned long tshigh, tslow;
__asm {
rdtsc
mov tshigh, edx
mov tslow, eax
}
res = ((sint64)tshigh)<<32 | tslow;

AND

usleep(SLEEP_TIME * 1000); //ms * 1000
TO
Sleep(SLEEP_TIME * 1000); //ms * 1000 // Windows version of usleep()

Also need to add the following files to both World and Zone:

EQChatPacket.h
EQLoginPacket.h
EQMailPacket.h
EQWorldPacket.h
EQZonePacket.h
EQChatPacket.cpp
EQLoginPacket.cpp
EQMailPacket.cpp
EQWorldPacket.cpp
EQZonePacket.cpp

Hope this helps
Reply With Quote
  #18  
Old 12-04-2005, 06:12 PM
TheMeow
Fire Beetle
 
Join Date: Dec 2005
Posts: 5
Default

By the way, is perl working in these sources?

EMBPERL and EMBPERL_PLUGIN and still no quests =)
Reply With Quote
  #19  
Old 12-04-2005, 10:26 PM
SiliconeClone
Sarnak
 
Join Date: Apr 2005
Posts: 42
Default

Quest were working for me in 6.3
__________________
Silicone Clone
Creator of Patch Creator v1.06
Reply With Quote
  #20  
Old 12-05-2005, 10:50 AM
TheMeow
Fire Beetle
 
Join Date: Dec 2005
Posts: 5
Default

After adding the compile options
EMBPERL
EMBPERL_PLUGIN
I got a compile error, something bout linking an extern embparser->execcommand. Turns out if I turn off EMBPERL_COMMANDS in features.h I dont get the error anymore... BUT even after compiling, quests didnt work.

What compiler are you using?
Reply With Quote
  #21  
Old 12-09-2005, 01:56 AM
sdabbs65
Dragon
 
Join Date: Dec 2003
Location: Earth
Posts: 818
Default ?

Quote:
Originally Posted by TheMeow
After adding the compile options
EMBPERL
EMBPERL_PLUGIN
I got a compile error, something bout linking an extern embparser->execcommand. Turns out if I turn off EMBPERL_COMMANDS in features.h I dont get the error anymore... BUT even after compiling, quests didnt work.

What compiler are you using?
I had to add the perl58.lib and it compiles fine on MSVC 6.0.
__________________
hosting Eqemu/Runuo/wow Emulators.

www.cheaterz.info
Reply With Quote
  #22  
Old 12-13-2005, 01:30 AM
bfj
Fire Beetle
 
Join Date: Dec 2005
Posts: 4
Default Website Error

Hi Guys,

I get error:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /var/www/localhost/htdocs/databases_v6.php on line 8

On the website Here when trying to download the 0.6.0-DR1+ database.

Is there anywhere else I can get it?

Thanks,

BFJ
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 On

Forum Jump

   

All times are GMT -4. The time now is 03:10 PM.


 

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 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3