• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Partly Fix Mercedes Bug *Lithium Based* 117.1

Junior Spellweaver
Joined
Sep 23, 2012
Messages
129
Reaction score
17
well this one strange bug anyone I will explain how this works .. and it is irritating !!

when you run any Lithium Based Source
have a beginner or a supergm job more of level 71 and if you haven't job advance

so let say play a beginners account to level 71 you will be affected by this bug or you are a gamemaster you will be affected by this bug

a popup will keep on appearing :glare:

asking you to advance to mercedes even after you end chat or press no it will keep on appearing and it is irritating

you can stop it by pressing yes but random other quest gets writes into mysql ? which dont make sense

Code:
questid       charid quest       status time                 forfeited customData
2507806	6275	29015	1	1352556426	0	0
2507807	6275	29005	1	1352556426	0	
2507808	6275	27010	1	1352556426	0	1
2507809	6275	2490	2	1352556430	0	
2507810	6275	2491	2	1352556440	0	
2507811	6275	2492	2	1352556450	0	
2507812	6275	2493	2	1352556461	0	
2507813	6275	2505	2	1352556471	0	
2507814	6275	29900	1	1352557535	0	
2507815	6275	29901	1	1352557810	0

find Quest 24013

Code:
function end(mode, type, selection) {
    if (mode == 0) {
	if (qm.getJob() == 2311) {
	   if (status == 0) {
	    qm.sendNext("This is an important decision to make.");
	    qm.dispose();
		}
	}

do the same for other two 24012/24011

after you relog the window will appear again but by pressing no it will make it go away and will not appear..

if anyone else can look into it and highlight how this is happening I would be really thankful
 
Last edited:
Skilled Illusionist
Joined
May 28, 2011
Messages
380
Reaction score
38
You'll need this in your quest script. You'll also have to code the rest of the questline if you want to really be GMS-like.
Code:
          if (!qm.isQuestStarted(24013))
                qm.forceStartQuest();
 
Junior Spellweaver
Joined
Sep 23, 2012
Messages
129
Reaction score
17
Hi Tsundere

I dont get what you mean ? why would I need to force start a quest
 
Back
Top