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.
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
I don't understand why you are so offended and aggressive, who allowed you to disrespect me or call me in any way? Did I insulted you? You act like a angry kid, grow up boy.
@Maxtor@Celestino
The administrators of this forum can access everything I've sent...
Your move won't work on me. Hahahaha!
Getting into the parameters and editing the HTMLs of websites and claiming it's real used to be really cool among true friends.
@jtos So, is this also true? 🤣😂🤣😂🤣😂🤣
Your joke still hasn't been better than mine. Hahahah!
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!!!!!!!!!
!!
0 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.
Note: Your post will require moderator approval before it will be visible.