Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Linux Servers

Support::Linux Servers Support forum for Linux EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 01-16-2010, 03:31 AM
AndMetal
Developer
 
Join Date: Mar 2007
Location: Ohio
Posts: 648
Default

What's up with the nulls in the characters' names?

Code:
(gdb) print iOther->name
$3 = "Harry\000e", '\0' <repeats 56 times>
Code:
(gdb) print iOther->name
$3 = "Sand\000me", '\0' <repeats 56 times>
__________________
GM-Impossible of 'A work in progress'
A non-legit PEQ DB server
How to create your own non-legit server

My Contributions to the Wiki
Reply With Quote
  #2  
Old 01-16-2010, 06:37 PM
KingMort
Banned
 
Join Date: Sep 2006
Posts: 841
Default

Here is a few more that seem a bit different

Code:
Core was generated by `./zone'.
Program terminated with signal 11, Segmentation fault.
[New process 5453]
[New process 5459]
[New process 5458]
[New process 5457]
[New process 5456]
#0  0x00000000014fff60 in ?? ()
(gdb) bt
#0  0x00000000014fff60 in ?? ()
#1  0x00000000008b77cf in Bot::AI_Process (this=0x18c3400) at bot.cpp:2147
#2  0x00000000008bd48b in Bot::Process (this=0x18c3400) at bot.cpp:1120
#3  0x0000000000585ff0 in EntityList::MobProcess (this=0xbdcfa0)
    at entity.cpp:487
#4  0x00000000005d1c6c in main (argc=1, argv=0x7fffa7da1a68) at net.cpp:494
(gdb) frame 6
#0  0x0000000000000000 in ?? ()
(gdb) print zone->short_name
$1 = 0x7fbd95691c30 "dreadspire"
(gdb) frame 1
#1  0x00000000008b77cf in Bot::AI_Process (this=0x18c3400) at bot.cpp:2147
2147            if(BotOwner->qglobal || (GetAppearance() == eaDead) || BotOwner->IsBot())
(gdb) print name
$2 = "SandsHealerGoon\00000", '\0' <repeats 45 times>
(gdb) print iOther->name
No symbol "iOther" in current context.
(gdb)
Code:
Core was generated by `./zone'.
Program terminated with signal 11, Segmentation fault.
[New process 5446]
[New process 5452]
[New process 5451]
[New process 5450]
[New process 5449]
#0  0x00007f32506a2020 in ?? ()
(gdb) bt
#0  0x00007f32506a2020 in ?? ()
#1  0x00000000008b77cf in Bot::AI_Process (this=0x7f3250ddebe0) at bot.cpp:2147
#2  0x00000000008bd48b in Bot::Process (this=0x7f3250ddebe0) at bot.cpp:1120
#3  0x0000000000585ff0 in EntityList::MobProcess (this=0xbdcfa0)
    at entity.cpp:487
#4  0x00000000005d1c6c in main (argc=1, argv=0x7fff626e93b8) at net.cpp:494
(gdb) frame 6
#0  0x0000000000000000 in ?? ()
(gdb) print zone->short_name
$1 = 0x7f32496c7330 "kerraridge"
(gdb) frame 1
#1  0x00000000008b77cf in Bot::AI_Process (this=0x7f3250ddebe0) at bot.cpp:2147
2147            if(BotOwner->qglobal || (GetAppearance() == eaDead) || BotOwner->IsBot())
(gdb) print name
$2 = "SandsHealerGoon\00000", '\0' <repeats 45 times>
(gdb)
Reply With Quote
  #3  
Old 01-18-2010, 11:51 AM
KingMort
Banned
 
Join Date: Sep 2006
Posts: 841
Default

Yet another strange Crash

Code:
Core was generated by `./zone'.
Program terminated with signal 11, Segmentation fault.
[New process 3775]
[New process 3781]
[New process 3780]
[New process 3779]
[New process 3778]
#0  0x00007fc3f80007e0 in ?? ()
(gdb) bt
#0  0x00007fc3f80007e0 in ?? ()
#1  0x00000000008b30f5 in Bot::ProcessClientZoneChange (
    botOwner=0x7fc3fd0c7ac0) at bot.cpp:8276
#2  0x0000000000823e58 in Client::Handle_OP_ZoneChange (this=0x7fc3fd0c7ac0,
    app=0x7fc40271b2f0) at zoning.cpp:38
#3  0x00000000006f8266 in Client::HandlePacket (this=0x7fc3fd0c7ac0,
    app=0x7fc40271b2f0) at client_packet.cpp:435
#4  0x00000000005c1050 in Client::Process (this=0x7fc3fd0c7ac0)
    at client_process.cpp:662
#5  0x0000000000585ff0 in EntityList::MobProcess (this=0xbdcfa0)
    at entity.cpp:487
#6  0x00000000005d1c6c in main (argc=1, argv=0x7fff127cf498) at net.cpp:494
(gdb) frame 6
#6  0x00000000005d1c6c in main (argc=1, argv=0x7fff127cf498) at net.cpp:494
494                                             entity_list.MobProcess();
(gdb) print zone->short_name
$1 = 0x7fc3fd45cbd0 "kerraridge"
(gdb) frame 1
#1  0x00000000008b30f5 in Bot::ProcessClientZoneChange (
    botOwner=0x7fc3fd0c7ac0) at bot.cpp:8276
8276                                    if(tempBot->HasGroup())
(gdb) print name
$2 = 0x9325da "Live"
Reply With Quote
  #4  
Old 01-22-2010, 09:44 AM
OscarGrouch05
Sarnak
 
Join Date: Apr 2008
Posts: 71
Default

simple and sweet

it's like this the zone # and name is not found by the server.
i looked in the exe and can match up opcodes with zone name
short and long name of zone and zone number. the address are
corrcect for the long name but missing the short name of the zone
was expecting the short name of the zone in the code.

question on the bot AI are you refer i have seen the opcodes for that as well inside exe file.
looks like programer need to rewrite that looks like is calling wrong opcodes and needs
to be fix and recompiled.

what program do you guys use i use this etu program 80)
Reply With Quote
  #5  
Old 01-24-2010, 07:19 PM
KingMort
Banned
 
Join Date: Sep 2006
Posts: 841
Default

So how do I go about fixing this ? Download maps or what
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 09:49 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