I've never used the board to ask. In Gracia Keucereus Alliance Base area the Quest 10272 Light Fragment is broken in the part where we speak to Npc Soldier Ginby ID 32566. Below, I took snapshots of the specific part of the quest which needs completion.
Below, theres the code of the 32566-4.html file (with pay variable):
Spoiler
<html><body>Soldier Ginby:<br>
Oh ho! So that's why you're here. But that's not enough for me to take you to him. Unless you were to make it worth my while...<br>
<center><a action="bypass -h Quest Q10272_LightFragment pay">Give him 10,000 Adena.</a>
</body></html>
Then, theres the Java condition handler of the enviaronment variable (file: Q10272_LightFragment.java):
<html><body>Soldier Ginby:<br>
Good, good. You're smarter than you look! I'll be on the lookout, but hurry. Understand? If the other guards see you talking to the Shilen Priest, it'll be bad news for both of us.<br>
<a action="bypass -h Quest Q10272_LightFragment 32566-06.html">"Then hurry and lead me inside."</a>
</body></html>
Next step is 32566-06.html:
Spoiler
<html><body>Soldier Ginby:<br>
Ready? Then let's go!<br>
<a action="bypass -h Quest Q10272_LightFragment enter">Teleport to the Temple of Shilen.</a>
</body></html>
And the probles lies right above here. There is no Java condition handler of the enviaronment variable enter and case 1 GINBY is an empty condition:
Spoiler
case GINBY:
{
switch (st.getCond())
{
case 1:
case 2:
htmltext = "32566-02.html";
break;
case 3:
htmltext = "32566-01.html";
break;
case 4:
htmltext = "32566-09.html";
break;
case 5:
htmltext = "32566-10.html";
break;
case 6:
htmltext = "32566-10.html";
break;
}
break;
}
Can someone help to fix this? I 've never seen this quest before so I don't know how it normally runs after Gimly NPC.
Hey! It's been years since I tried this, just redownloaded everything for the nostalgia but I'm having the "mismatch" problem.
You were right, I used another system, not the one from the post! My bad!
Now I can't find the system that works with AuthGateD 🤣
I see you have found it and uploaded it but the link you provided no longer works. If you are still around, can you please reupload? Thank you!
Question
kotsoskorg
Hello,
I've never used the board to ask. In Gracia Keucereus Alliance Base area the Quest 10272 Light Fragment is broken in the part where we speak to Npc Soldier Ginby ID 32566. Below, I took snapshots of the specific part of the quest which needs completion.
Below, theres the code of the 32566-4.html file (with pay variable):
<html><body>Soldier Ginby:<br>
Oh ho! So that's why you're here. But that's not enough for me to take you to him. Unless you were to make it worth my while...<br>
<center><a action="bypass -h Quest Q10272_LightFragment pay">Give him 10,000 Adena.</a>
</body></html>
Then, theres the Java condition handler of the enviaronment variable (file: Q10272_LightFragment.java):
case "pay":
{
if (st.getQuestItemsCount(Inventory.ADENA_ID) >= 10000)
{
st.takeItems(Inventory.ADENA_ID, 10000);
event = "32566-05.html";
}
else
{
event = "32566-04a.html";
}
break;
}
This leads here (32566-05.html):
<html><body>Soldier Ginby:<br>
Good, good. You're smarter than you look! I'll be on the lookout, but hurry. Understand? If the other guards see you talking to the Shilen Priest, it'll be bad news for both of us.<br>
<a action="bypass -h Quest Q10272_LightFragment 32566-06.html">"Then hurry and lead me inside."</a>
</body></html>
Next step is 32566-06.html:
<html><body>Soldier Ginby:<br>
Ready? Then let's go!<br>
<a action="bypass -h Quest Q10272_LightFragment enter">Teleport to the Temple of Shilen.</a>
</body></html>
And the probles lies right above here. There is no Java condition handler of the enviaronment variable enter and case 1 GINBY is an empty condition:
case GINBY:
{
switch (st.getCond())
{
case 1:
case 2:
htmltext = "32566-02.html";
break;
case 3:
htmltext = "32566-01.html";
break;
case 4:
htmltext = "32566-09.html";
break;
case 5:
htmltext = "32566-10.html";
break;
case 6:
htmltext = "32566-10.html";
break;
}
break;
}
Can someone help to fix this? I 've never seen this quest before so I don't know how it normally runs after Gimly NPC.
Thanks MxC!!!!!!!!!
!!
Edited by kotsoskorg0 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now