Bug in all quests | closed | |
hemagx 2013-01-13 19:17:40 | hello ! rAthena rev . 17098 the bug : when you start quest need hunt monster you get the number of the monster you need to hunt 0/-999 i tried it in clean and not clean rAthena ! anyway ! you can't the finish the quest b4 hunt 999 monster + the real number you need xD! some pics : ( from clean and not clean rAthena ) [img]http://s13.postimage.org/vt1zzegyb/screenme_RO003.jpg[/img] [img]http://s13.postimage.org/5ys79mgyb/screenme_RO004.jpg[/img] [img]http://s13.postimage.org/pjbbq56xf/screenme_RO005.jpg[/img] [img]http://s13.postimage.org/t4779dbgz/screenme_RO006.jpg[/img] [img]http://s13.postimage.org/5r95quvdf/screenme_RO007.jpg[/img] here i can't finish the quest but in other server you i finish it ![]() [img]http://i47.tinypic.com/20f6fed.jpg[/img] 1st kill [img]http://i49.tinypic.com/rtnc3t.jpg[/img] 2nd kill [img]http://i49.tinypic.com/4huqh5.jpg[/img] 3rd kill [img]http://i48.tinypic.com/2vj1mw8.jpg[/img] 4rth kill [img]http://i45.tinypic.com/4k8g0y.jpg[/img] 5th kill [img]http://i46.tinypic.com/35de06e.jpg[/img] rewarding [img]http://i47.tinypic.com/218l1j.jpg[/img] | |
hemagx 2013-01-15 04:27:17 | ignore .... | |
Antares 2013-01-15 15:16:20 | I can confirm this, and this is a big issue in quests where you are not supposed to kill a certain monster (like catfoot hairpin quest), because they check if the value of the killed monsters is 0, but since it's -860 the quest fails every time. So [quote name='hemagx' timestamp='1358224037' post='17265'] ignore .... [/quote] is not a good solution. | |
hemagx 2013-01-15 16:54:42 | [quote name='Antares' timestamp='1358262980' post='17283'] I can confirm this, and this is a big issue in quests where you are not supposed to kill a certain monster (like catfoot hairpin quest), because they check if the value of the killed monsters is 0, but since it's -860 the quest fails every time.So[quote name='hemagx' timestamp='1358224037' post='17265']ignore ....[/quote]is not a good solution. [/quote] no i mean rAthena ignore the problem ! my server is classic server and this problem is >< some can't change to 3rd jobs ![]() | |
malufett 2013-01-15 19:37:52 | [quote]my server is classic server and this problem is >< some can't change to 3rd jobs and a lot of quests like aden not working[/quote] [quote]because they check if the value of the killed monsters is 0, but since it's -860 the quest fails every time.[/quote] this is what I can't reproduce...since this is only a display bug.. ![]() | |
Antares 2013-01-16 08:58:32 | [quote name='malufett' timestamp='1358278672' post='17290'] [quote]my server is classic server and this problem is >< some can't change to 3rd jobs and a lot of quests like aden not working[/quote][quote]because they check if the value of the killed monsters is 0, but since it's -860 the quest fails every time.[/quote]this is what I can't reproduce...since this is only a display bug.. ![]() [/quote] Please try catfoot hairpin quest. Start the quest, and talk again to the npc and it says you killed wild roses, and you shouldn't. If this is not what's causing this then what? | |
malufett 2013-01-16 11:13:57 | [quote]Please try catfoot hairpin quest. Start the quest, and talk again to the npc and it says you killed wild roses, and you shouldn't. If this is not what's causing this then what?[/quote] oh? I tried this last night 4 times and I didn't encounter any problem..XD ![]() | |
hemagx 2013-01-17 00:05:13 | [quote name='malufett' timestamp='1358278672' post='17290'] [quote]my server is classic server and this problem is >< some can't change to 3rd jobs and a lot of quests like aden not working[/quote][quote]because they check if the value of the killed monsters is 0, but since it's -860 the quest fails every time.[/quote]this is what I can't reproduce...since this is only a display bug.. ![]() [/quote] you think it's duplay error but in y server i can't finish anyquest in the images one from my server and the other from my friend server and he can finish quests but still se -999 xD! so i hope rAthena fic it soon as developer team can ! thx ![]() | |
hemagx 2013-01-20 03:34:15 | any news ? | |
Zephyr 2013-02-09 08:36:43 | I can't reproduce this, the quests here is working fine. Can you tell what hexed you use, the quest that is on the quest_db and your data, the script of this quest? And you have tested it at the latest version? | |
Baalberith 2013-03-09 21:19:44 | Same here, when the quest is added, or the player reconnects, counts are messed up, after 1st quest log update, everything is fine. | |
Euphy 2014-01-03 19:56:53 | Linking: [bug=8423] | |
reigneil 2014-01-04 06:39:15 | i'm using 2013-08-07aRagexe client, packetver 45, RE mode, langtype 1 and updated client upto december 2013. Still encounter this problem hope this will fix soon. thanks | |
reigneil 2014-01-18 06:53:39 | src/map/quest.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/map/quest.c b/src/map/quest.c index e2ddaba..bf43488 100644 --- a/src/map/quest.c +++ b/src/map/quest.c @@ -50,12 +50,15 @@ int quest_search_db(int quest_id) //Send quest info on login int quest_pc_login(TBL_PC * sd) { + int i; if(sd->avail_quests == 0) return 1; clif_quest_send_list(sd); clif_quest_send_mission(sd); - + for( i = 0; i < sd->avail_quests; i++ ) { + clif_quest_update_objective(sd, &sd->quest_log[i], sd->quest_index[i]); + } return 0; } @@ -98,7 +101,7 @@ int quest_add(TBL_PC * sd, int quest_id) sd->save_quest = true; clif_quest_add(sd, &sd->quest_log[i], sd->quest_index[i]); - + clif_quest_update_objective(sd, &sd->quest_log[i], sd->quest_index[i]); if( save_settings&64 ) chrif_save(sd,0); @@ -146,7 +149,7 @@ int quest_change(TBL_PC * sd, int qid1, int qid2) clif_quest_delete(sd, qid1); clif_quest_add(sd, &sd->quest_log[i], sd->quest_index[i]); - + clif_quest_update_objective(sd, &sd->quest_log[i], sd->quest_index[i]); if( save_settings&64 ) chrif_save(sd,0); i'll quote this patch taken from hercules. credit to malufett | |
Lemongrass 2014-01-27 09:13:24 | Fixed in 5988c7a. |