Jump to content
  • 0

[HELP] Set teleport straight to the boss!!!!!!!


Question

Posted

Hello, I wonder how can I configure my server so that players can teleport straight to the boss without having to do quests with some specified item is there any way?

4 answers to this question

Recommended Posts

  • 0
Posted

 

For example Baium:

 

game/data/scripts/ai/individual/Baium.java

		if (GrandBossManager.getInstance().getBossStatus(LIVE_BAIUM) == ASLEEP && player.getQuestState("baium").hasQuestItems(4295)) // bloody fabric
		{
			player.getQuestState("baium").takeItems(4295, 1);
			// allow entry for the player for the next 30 secs (more than enough time for the TP to happen)
			// Note: this just means 30secs to get in, no limits on how long it takes before we get out.
			_Zone.allowPlayerEntry(player, 30);
			player.teleToLocation(113100, 14500, 10077);
		}

just comment the hasQuestItems and takeItems

  • 0
Posted

Depends of the boss, the pack, etc.

 

Panda sig.

 

for every boss e BigBoss in the version using High Five l2jserver.

 

 

I want the player and he can also teleport your party to any boss using a specified item in a gatekeeper who will order this item without the player having to do the quest instance, as I do that?

 

 

  • 0
Posted

For every boss, you have to open his individual script and edit as adenaman said. All is supposed to be in scripts.ai.individual.

 

Checks can be either on that format :

hasQuestItems(xxxx)

or on that one :

getQuestItemsCount(xxxx) > 0

 

Some bosses are limited to their teleporters. You have to edit aswell GrandBossTeleporters (scripts.custom) - case of Valakas, Antharas, (Baium for aCis), and few others.

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...