Hi Neo, just wondering when "aura over lvl 99" patch available in NEMO? sorry for repeating this question.
- Viewing Profile: Posts: komisaris
Community Stats
- Group Members
- Active Posts 8
- Profile Views 1879
- Member Title Newbie
- Age Age Unknown
- Birthday Birthday Unknown
-
Gender
Not Telling
User Tools
Friends
komisaris hasn't added any friends yet.
Latest Visitors
No latest visitors to show
Posts I've Made
In Topic: NEMO - Client Patcher
30 January 2015 - 04:35 PM
In Topic: Can't drop any item from inventory at all
05 January 2015 - 10:32 PM
but one more question, is the msgstringtable.txt different form every client version?
In Topic: @mi commands crash map-server
05 January 2015 - 06:12 PM
i've
please recompile, get the gdb report, and the line menioned on gdb report.
i've recompiled the server with --enable-debug=gdb , but how to get that report you mentioned
like these?
gdb map-server core
Reading symbols from /home/username/hercules/map-server...(no debugging symbols found)...done.<br />[New LWP 27159]<br />[New LWP 27166]<br />[Thread debugging using libthread_db enabled]<br />Using host libthread_db library "/lib64/libthread_db.so.1".<br />Core was generated by `./map-server'.<br />Program terminated with signal 11, Segmentation fault.<br />#0 0x00007f3628df4b5b in vfprintf () from /lib64/libc.so.6<br />Missing separate debuginfos, use: debuginfo-install glibc-2.17-55.el7_0.3.x86_64 keyutils-libs-1.5.8-3.el7.x86_64 krb5-libs-1.11.3-49.el7.x86_64 libcom_err-1.42.9-4.el7.x86_64 libgcc-4.8.2-16.2.el7_0.x86_64 libselinux-2.2.2-6.el7.x86_64 libstdc++-4.8.2-16.2.el7_0.x86_64 mariadb-libs-5.5.40-1.el7_0.x86_64 openssl-libs-1.0.1e-34.el7_0.6.x86_64 pcre-8.32-12.el7.x86_64 xz-libs-5.1.2-8alpha.el7.x86_64 zlib-1.2.7-13.el7.x86_64<br />(gdb) bt full<br />#0 0x00007f3628df4b5b in vfprintf () from /lib64/libc.so.6<br />No symbol table info available.<br />#1 0x00007f3628e1a9cb in vsprintf () from /lib64/libc.so.6<br />No symbol table info available.<br />#2 0x00007f3628dfde07 in sprintf () from /lib64/libc.so.6<br />No symbol table info available.<br />#3 0x0000000000667a5a in atcommand_mobinfo.5274 ()<br />No symbol table info available.<br />#4 0x0000000000637882 in atcommand_exec.part.70.6117 ()<br />No symbol table info available.<br />#5 0x00000000006574ba in atcommand_exec.4013 ()<br />No symbol table info available.<br />#6 0x000000000060f275 in clif_parse_WisMessage ()<br />No symbol table info available.<br />#7 0x00000000006001a8 in clif_parse ()<br />No symbol table info available.<br />#8 0x0000000000408a5d in do_sockets.3857 ()<br />No symbol table info available.<br />#9 0x0000000000405add in main ()<br />No symbol table info available.<br />(gdb)<br />
atcommand.c line 5274
/*==========================================<br />* @displayskill by [Skotlex]<br />* Debug command to locate new skill IDs. It sends the<br />* three possible skill-effect packets to the area.<br />*------------------------------------------*/<br />ACMD(displayskill) { //<--------- LINE 5274<br />struct status_data *st;<br />int64 tick;<br />uint16 skill_id;<br />uint16 skill_lv = 1;<br /><br />if (!message || !*message || sscanf(message, "%hu %hu", &skill_id, &skill_lv) < 1) {<br />clif->message(fd, msg_txt(1166)); // Usage: @displayskill {}<br />return false;<br />}<br />st = status->get_status_data(&sd->bl);<br />tick = timer->gettick();<br />clif->skill_damage(&sd->bl,&sd->bl, tick, st->amotion, st->dmotion, 1, 1, skill_id, skill_lv, 5);<br />clif->skill_nodamage(&sd->bl, &sd->bl, skill_id, skill_lv, 1);<br />clif->skill_poseffect(&sd->bl, skill_id, skill_lv, sd->bl.x, sd->bl.y, tick);<br />return true;<br />}<br />
atcommand.c line 6117
<br />if (!message || !*message || sscanf(message, "%99[^n]", mes) < 1) {<br />clif->message(fd, msg_txt(1224)); // Please enter a message (usage: @pettalk ).<br />return false;<br />} //<< ----------------LINE 6117
atcommand.c Line 4013
ACMD(partyspy) { //<----------------------LINE 4013<br />char party_name[NAME_LENGTH];<br />struct party_data *p;<br /><br />memset(party_name, '0', sizeof(party_name));<br />memset(atcmd_output, '0', sizeof(atcmd_output));<br /><br />if (!map->enable_spy)<br />{<br />clif->message(fd, msg_txt(1125)); // The mapserver has spy command support disabled.<br />return false;<br />}<br /><br />if (!message || !*message || sscanf(message, "%23[^n]", party_name) < 1) {<br />clif->message(fd, msg_txt(1127)); // Please enter a party name/ID (usage: @partyspy ).<br />return false;<br />}<br /><br />if ((p = party->searchname(party_name)) != NULL || // name first to avoid error when name begin with a number<br />(p = party->search(atoi(message))) != NULL) {<br />if (sd->partyspy == p->party.party_id) {<br />sd->partyspy = 0;<br />sprintf(atcmd_output, msg_txt(105), p->party.name); // No longer spying on the %s party.<br />clif->message(fd, atcmd_output);<br />} else {<br />sd->partyspy = p->party.party_id;<br />sprintf(atcmd_output, msg_txt(106), p->party.name); // Spying on the %s party.<br />clif->message(fd, atcmd_output);<br />}<br />} else {<br />clif->message(fd, msg_txt(96)); // Incorrect name/ID, or no one from the specified party is online.<br />return false;<br />}<br /><br />return true;<br />}
and i dont know the rest of files location that addressed of that report
In Topic: Can't drop any item from inventory at all
05 January 2015 - 06:03 AM
there is a checkbox in your inventory(alt+e) untick it...
hahaha so simple... btw thanks malufett it's work,
i didn't recognize it cause my inventory window is too long overlaping the screen...
Screenshot from 2015-01-05 12:43:05.png 1.31MB 14 downloads
so i change the OptionInfoList["bLockItemDropFromItemWnd"] value from 1 to 0 rather than untick the option coz it far below the screen.
and do you now why my inventory window is too long?.
i've read for the same issue on other forum that i should change the msgstringtable but it doesn't work.
In Topic: @mi commands crash map-server
04 January 2015 - 10:46 PM
can you show us what is in your atcommand.c line 5274
here is my atcommand.c line 5274
ACMD(displayskill) { // <-------- Line 5274<br />struct status_data *st;<br />int64 tick;<br />uint16 skill_id;<br />uint16 skill_lv = 1;<br /><br />if (!message || !*message || sscanf(message, "%hu %hu", &skill_id, &skill_lv) < 1) {<br />clif->message(fd, msg_txt(1166)); // Usage: @displayskill {}<br />return false;<br />}<br />st = status->get_status_data(&sd->bl);<br />tick = timer->gettick();<br />clif->skill_damage(&sd->bl,&sd->bl, tick, st->amotion, st->dmotion, 1, 1, skill_id, skill_lv, 5);<br />clif->skill_nodamage(&sd->bl, &sd->bl, skill_id, skill_lv, 1);<br />clif->skill_poseffect(&sd->bl, skill_id, skill_lv, sd->bl.x, sd->bl.y, tick);<br />return true;<br />}<br />
- Viewing Profile: Posts: komisaris
- Privacy Policy
- Hercules Forum Rules ·