Adam Posted June 12, 2013 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 111 Reputation: 3 Joined: 06/29/12 Last Seen: August 3, 2014 Share 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 Link to comment Share on other sites More sharing options...
Adam Posted June 14, 2013 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 111 Reputation: 3 Joined: 06/29/12 Last Seen: August 3, 2014 Author Share Posted June 14, 2013 Bump =) Still buggy. Quote Link to comment Share on other sites More sharing options...
Emistry Posted June 15, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted June 15, 2013 show your stormy knight db inside the mob_db.txt or mob_db2.txt Quote Link to comment Share on other sites More sharing options...
Adam Posted June 16, 2013 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 111 Reputation: 3 Joined: 06/29/12 Last Seen: August 3, 2014 Author Share Posted June 16, 2013 Hi ya Emistry, Sure ! There you go : trunk/db/pre-re/mob_db.txt: Thanks ! Quote Link to comment Share on other sites More sharing options...
Adam Posted June 17, 2013 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 111 Reputation: 3 Joined: 06/29/12 Last Seen: August 3, 2014 Author Share Posted June 17, 2013 does it help ? Quote Link to comment Share on other sites More sharing options...
Emistry Posted June 17, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share 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 Link to comment Share on other sites More sharing options...
Adam Posted June 17, 2013 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 111 Reputation: 3 Joined: 06/29/12 Last Seen: August 3, 2014 Author Share Posted June 17, 2013 Found it line #6897 Trying it now, will let you know shortly Sadly, still buggy, please see by yourself Quote Link to comment Share on other sites More sharing options...
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 AdamLink to comment
Share on other sites
6 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.