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):
Reveal hidden contents
<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:
Reveal hidden contents
<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:
Reveal hidden contents
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.
While I respect every other admin who launches a server, including L2Gold, I can proudly say that we’ve built a community where each season brings significant changes and numerous updates. We had anywhere from a few hundred players to nearly one thousand unique players (season 2).
The server has already been rebuilt three times on different client protocols, each time introducing something fresh to the table. L2Gold Essence against most other servers; you’ll notice the difference immediately: no lag, no odd movement bugs, the best geodata (which we’ve continually improved), high FPS during mass PvP, and overall smooth gameplay. Just a single in-game click makes the contrast clear compared to servers that still feel stuck in 2007 in terms of innovation. There were times when things went very wrong due to major code reworks, refactors, and the lack of proper testing, but everything was eventually resolved.
Not only that, but we’ve also attracted CPs and clans that had never played L2Gold before. That’s one of the main reasons why we reached a higher player count than any gold-style server when compared to the original one back in the days.
100~ videos playlist:
Gmail account pricing has been updated - just 12 cents each, with discounts available for bulk purchases.
Our new Telegram channel for news, discounts, and updates - https://t.me/exfanet
New Numbers Available for Rent!
We’ve added USA Unlimited 30-day and Unlimited 7-day numbers.
📩 With these numbers, you can receive an unlimited number of messages from various services convenient and reliable!
Website link — https://vibe-sms.net/
Our Telegram channel — https://t.me/vibe_sms
sell adena
l2rebon signature x1 - 1kk = 1 dollars
l2reborn x10 - 500kk = 4 dollars
E-Global x Lu4 - 1kk = 2 dollars
BOHPTS - x20-x500 TOP PRICE
DISCORD - GODDARDSHOP
TELEGRAM - MMOPROMO
Also on sale are Epic jewelry, Clothes at a very good price
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.