Adam Posted June 12, 2013 Posted June 12, 2013 (edited) Hi everyone When @mi'ing Stormy on my pre-renewal server, I get this : Problem is with the boots, which should appear as "Boots [1]" (item #2406) In fact, I : checked the monster db, Stormy DOES drop the right boots (2406,275) #item'ed 2406, it spawns the correct item, some [1] boots @mi'ed ungoliant (it also drops boots[1]), and with this mob the boot slot is shown So basically my problem is the [1] not appearing in the stormy's MvP Items drop description for some reason.... Thanks for the help. Any clue anyone ? Edited June 12, 2013 by Adam Quote
Emistry Posted June 15, 2013 Posted June 15, 2013 show your stormy knight db inside the mob_db.txt or mob_db2.txt Quote
Adam Posted June 16, 2013 Author Posted June 16, 2013 Hi ya Emistry, Sure ! There you go : trunk/db/pre-re/mob_db.txt: Thanks ! Quote
Emistry Posted June 17, 2013 Posted June 17, 2013 inside trunk/src/map/atcommand.c try find if (mob->mvpitem[i].p > 0) { j++; if (j == 1) sprintf(atcmd_output2, " %s %02.02f%%", item_data->jname, (float)mob->mvpitem[i].p / 100); else sprintf(atcmd_output2, " - %s %02.02f%%", item_data->jname, (float)mob->mvpitem[i].p / 100); strcat(atcmd_output, atcmd_output2); } and change to this if (mob->mvpitem[i].p > 0) { j++; if (j == 1){ if (item_data->slot){ sprintf(atcmd_output2, " %s[%d] %02.02f%%", item_data->jname, item_data->slot, (float)mob->mvpitem[i].p / 100); }else{ sprintf(atcmd_output2, " %s %02.02f%%", item_data->jname, (float)mob->mvpitem[i].p / 100); } }else{ if (item_data->slot){ sprintf(atcmd_output2, " - %s[%d] %02.02f%%", item_data->jname, item_data->slot, (float)mob->mvpitem[i].p / 100); }else{ sprintf(atcmd_output2, " - %s %02.02f%%", item_data->jname, (float)mob->mvpitem[i].p / 100); } } strcat(atcmd_output, atcmd_output2); } and recompile .... Quote
Adam Posted June 17, 2013 Author Posted June 17, 2013 Found it line #6897 Trying it now, will let you know shortly Sadly, still buggy, please see by yourself Quote
Question
Adam
Hi everyone
When @mi'ing Stormy on my pre-renewal server, I get this :
Problem is with the boots, which should appear as "Boots [1]" (item #2406)
In fact, I :
So basically my problem is the [1] not appearing in the stormy's MvP Items drop description for some reason....
Thanks for the help.
Any clue anyone ?
Edited by Adam6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.