zhaosin Posted November 15, 2012 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 172 Reputation: 0 Joined: 07/07/12 Last Seen: May 22, 2016 Share Posted November 15, 2012 When i started my server intif_parse_questlog: quest 70000 not found in DB. Quote Link to comment Share on other sites More sharing options...
ossi0110 Posted November 15, 2012 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 318 Reputation: 37 Joined: 12/30/11 Last Seen: October 3, 2017 Share Posted November 15, 2012 looks like a custom quest , Post your quest_db . Quote Link to comment Share on other sites More sharing options...
Emistry Posted November 15, 2012 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 November 15, 2012 you have exceeded the default Quest ID Limit ? trunk/src/common/mmo.h #define MAX_QUEST_DB 2000 //Max quests that the server will load Quote Link to comment Share on other sites More sharing options...
AnnieRuru Posted November 15, 2012 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 2044 Reputation: 682 Joined: 10/09/12 Last Seen: December 20, 2020 Share Posted November 15, 2012 (edited) you have exceeded the default Quest ID Limit ? trunk/src/common/mmo.h #define MAX_QUEST_DB 2000 //Max quests that the server will load quest.c int quest_read_db(void) { ..... while(fgets(line, sizeof(line), fp)) { if (k == MAX_QUEST_DB) { ShowError("quest_read_db: Too many entries specified in %s/quest_db.txt!\n", db_path); break; } ...... quest_db[k].id = atoi(str[0]); quest_db[k].time = atoi(str[1]); ...... k++; } } that MAX_QUEST_DB is just the number of entries a server will load just like how script command getarraysize limit to 128 <-- our crappy script engine this one the array limit to 2000 I still remember last year my quest log script -> link using ID as high as 100100 and it works https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/quest_db.txt in our SVN its currently already at 60355 if he doesn't show the script I also dunno how to support this Edited November 15, 2012 by AnnieRuru Quote Link to comment Share on other sites More sharing options...
Lighta Posted November 15, 2012 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 737 Reputation: 216 Joined: 11/29/11 Last Seen: December 20, 2020 Share Posted November 15, 2012 Are you sure you have the entry in db/quest_db.txt ? And this message appear when sd doesn't have the quest load, did you verify he had started the quest before attemting to read value from it ? if(chekquest(70000) < 0 ) mes "quest not started"; Quote Link to comment Share on other sites More sharing options...
zhaosin Posted November 15, 2012 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 172 Reputation: 0 Joined: 07/07/12 Last Seen: May 22, 2016 Author Share Posted November 15, 2012 (edited) This is my script and i already update SVN new but still error like that! quest_db.txt Edited November 15, 2012 by zhaosin Quote Link to comment Share on other sites More sharing options...
Joseph Posted November 15, 2012 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 341 Reputation: 43 Joined: 01/10/12 Last Seen: June 29, 2020 Share Posted November 15, 2012 Where is quest: 70000? Quote Link to comment Share on other sites More sharing options...
Mystery Posted November 15, 2012 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 2192 Reputation: 253 Joined: 11/11/11 Last Seen: June 24, 2020 Share Posted November 15, 2012 Nor rAthena or eAthena support that quest ID. It's probably custom made from someone's script. Do you have any "quest" related scripts you added to your server? Quote Link to comment Share on other sites More sharing options...
zhaosin Posted November 16, 2012 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 172 Reputation: 0 Joined: 07/07/12 Last Seen: May 22, 2016 Author Share Posted November 16, 2012 i don't add any quest 70000 and don't have any custom quest Quote Link to comment Share on other sites More sharing options...
Lighta Posted November 16, 2012 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 737 Reputation: 216 Joined: 11/29/11 Last Seen: December 20, 2020 Share Posted November 16, 2012 Somewhere you trying to read quest index 70000. Do a recursive file search on this index or chekquest to figure out where if it's really the case or no eg linux : grep -R -i -n 'checkquest(70000' npc/ || grep -R -i -n 'checkquest' npc/ || grep -R -i -n '70000' npc/ (yes that actually 3 chained search, if not found use next search etc) Quote Link to comment Share on other sites More sharing options...
Question
zhaosin
When i started my server
Link to comment
Share on other sites
9 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.