Jump to content

Question

Posted (edited)

Hi , i facing a problem with teleport for grandbosses,even if player have the quest item,player get the message:

" You are either not carrying out your quest or don't meet the criteria. ".

Pic:
 

2.JPG

Edited by Irrelevant

7 answers to this question

Recommended Posts

  • 0
Posted
45 minutes ago, Irrelevant said:

Hi , i facing a problem with teleport for grandbosses,even if player have the quest item,player get the message:

" You are either not carrying out your quest or don't meet the criteria. ".

Pic:
 

2.JPG

 

I had the same thing with my ex. Whenever i asked her to make out she said you're either not carrying the quest item or you don't meet the criteria.

 

Overall you need to check if your script is loaded cause this look like NPC is not binded to any script or GrandBossTeleporters.java is not loaded at all.

  • 0
Posted (edited)
8 minutes ago, Kara said:

 

I had the same thing with my ex. Whenever i asked her to make out she said you're either not carrying the quest item or you don't meet the criteria.

 

Overall you need to check if your script is loaded cause this look like NPC is not binded to any script or GrandBossTeleporters.java is not loaded at all.

hahahahahahhaha that's was actually nice joke..
but lets talk about the issue~> scripts.cfg is ok 

Edited by Irrelevant
  • 0
Posted (edited)
1 hour ago, Kara said:

 

I had the same thing with my ex. Whenever i asked her to make out she said you're either not carrying the quest item or you don't meet the criteria.

 

Overall you need to check if your script is loaded cause this look like NPC is not binded to any script or GrandBossTeleporters.java is not loaded at all.

 

Your ex was probably right. You were not carried any 'quest item' for her. Thats why she is 'ex' ... 😕 sad ... I'm sorry...

 

 

@onTopic

 

In theory, by getting the Q item at your inventory you can teleport at the boss.

In code theory now, the check is not only the quest item but the whole quest. Each one, have states. So with a quick glance:

 

public void showQuestWindow(final L2PcInstance player, String questId)
{
	String content = null;
	
	Quest q = null;
	if (!Config.ALT_DEV_NO_QUESTS)
		q = QuestManager.getInstance().getQuest(questId);
	
	// Get the state of the selected quest
	QuestState qs = player.getQuestState(questId);
	
	if (q == null)
	{
		// No quests found
		content = "<html><body>You are either not on a quest that involves this NPC, or you don't meet this NPC's minimum quest requirements.</body></html>";
	}
	else
	{

 

If the specific quest is null there, you will face this html . If not, the correct html will popup (probably a teleport link text) with the correct bypass inside will appear.

 

So, either change generally the structure of this algorithm and checking for q items, or add your cases by npc id for example, or even Q.id .

Edited by melron
  • 0
Posted (edited)

Didn't expect that but okay. I usually hit straight to your face, that was a hit under the belt. 

 

Still to the owner of the topic since the script is loaded and GrandBossTeleporters are working you need to exam of the possibility of you not having the QuestState.

 

On a Quest on the defined starting NPC it start your State for that specific quest and this is checked tho the whole quest most of the times. If you skip the starting NPC and you try talk or interact with a different NPC it will give you this message. So you either need to post your GrandBossTeleporters.java here or you need to check the code in that file which refer to valakas. I'm pretty sure Heart of Volcano is the last NPC you talk to enter Valaka's cave. 

 

Offtopic Edit: Oh i also forgot Object.isNull() since some people are bothered. Soon i'll use generic suppliers too to increase the bothersomeness even more

Edited by Kara
  • 0
Posted (edited)

@Kara  @melron  , i found the bug(or not) , to enter you need to take the bypass from npc "klein"(cause quest is by orders),but teleport player far away from heart of valakas(for mid server is far away) and i would like to change it
so i went at quest of "klein" and hasnt teleport loc to change it.

but now it figure out how it worked https://imgur.com/a/WjcHDIY

Edited by Irrelevant
  • 0
Posted
35 minutes ago, Irrelevant said:

@Kara  @melron  , i found the bug(or not) , to enter you need to take the bypass from npc "klein"(cause quest is by orders),but teleport player far away from heart of valakas(for mid server is far away) and i would like to change it
so i went at quest of "klein" and hasnt teleport loc to change it.

but now it figure out how it worked https://imgur.com/a/WjcHDIY

You realise this is not bug and this is what i described you on the 2nd comment i wrote? That you can't just talk to a NPC if not first talk to the Start NPC of the quest/script? I was going to write you down that you need to talk to Klein first but i wasn't sure if that was for Antharas or Valakas.

  • 0
Posted
10 minutes ago, Kara said:

You realise this is not bug and this is what i described you on the 2nd comment i wrote? That you can't just talk to a NPC if not first talk to the Start NPC of the quest/script? I was going to write you down that you need to talk to Klein first but i wasn't sure if that was for Antharas or Valakas.

yy, i just didn't notice that,anyway fixed! can be locked

Guest
This topic is now closed to further replies.


  • Posts

    • And Discord: https://discord.gg/3aYqWNqb
    • Ofc: https://discord.gg/3aYqWNqb
    • You can find some H5 skins shared in old L2 modding Discords, but most of the higher‑quality ones are either paid or come bundled with full client edits. I usually mix in commissioned work and whatever I can patch myself. On a side note, I fund a lot of these commissions by selling off game items through instant sell cs2 skins, which has been a quick way for me to get some cash for projects.
    • There is no need for gRPC in this case, even tho originally it was gRPC based but since we don't need it to be bi-directional, we switched to simple http requests for the web calls and SSEs for the data streamed from the server. There are distributed locks in place to precent race conditions between actions that can happen between multiple web instances and the server.   Local models can also be slow depending on the model, and most external models can actually be faster than local ones if you use Flash 2.5 or something along those lines. I am running on 512GB of Unified Memory on my Mac Studio M3 Ultra so the speed of the local model for a small model is pretty good but I tested it with Gemini too and it works equally as fast and in some cases faster. The way it works is that I'm using pgvector (one of the benefits of moving to Postgres) to search the data and see what the player can see etc and there is some batching of the next few actions for 2-4 seconds for the user until the next LLM request fires. The batching also includes branching on logic so if they for example fall under some HP they will move to kiting instead of attacking or maybe they heal etc.   Everything is authed and permission-based. The server and the backend of the frontend have secure communication between them, either with a symmetric key (not recommended for production) or a certificate (the recommended way), so there is no worry. It's all tied to the account's access level, etc., so nobody can make an action that they normally wouldn't be allowed to do. Even the MCP is token-based, and there are prompt injection protections in place. The MCP is audited, and every mutation needs confirmation. The admin area is only accessible to the admin account anyway so normal users can't access it.  
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..