Jump to content

Recommended Posts

  • 1 month later...
Posted

@dleogr ;

Adding delay event:

#Instance Event by Bloodshed

 

from com.l2jserver.gameserver.instancemanager        import InstanceManager

 

from com.l2jserver.gameserver.model                  import L2ItemInstance

 

from com.l2jserver.gameserver.model.actor            import L2Summon

 

from com.l2jserver.gameserver.model.entity          import Instance

 

from com.l2jserver.gameserver.model.itemcontainer    import PcInventory

 

from com.l2jserver.gameserver.model.quest            import State

 

from com.l2jserver.gameserver.model.quest            import QuestState

 

from com.l2jserver.gameserver.model.quest.jython    import QuestJython as JQuest

 

from com.l2jserver.gameserver.network.serverpackets  import CreatureSay

 

from com.l2jserver.gameserver.network.serverpackets  import InventoryUpdate

 

from com.l2jserver.gameserver.network.serverpackets  import MagicSkillUse

 

from com.l2jserver.gameserver.network.serverpackets  import SystemMessage

 

from com.l2jserver.gameserver.network.serverpackets  import ExShowScreenMessage

 

from com.l2jserver.gameserver.network.serverpackets  import Earthquake

 

from com.l2jserver.gameserver.network                import SystemMessageId

 

from com.l2jserver.gameserver.util                  import Util

 

from com.l2jserver.util                              import Rnd

 

 

 

qn = "Bloodshed"

 

 

 

#Items

 

E_APIGA  = 14720

 

ADENA  = 57

 

STONE  = 9576

 

SCROLL  = 960

 

 

 

#NPCs

 

ROSE  = 2009001

 

CHEST  = 2009002

 

 

 

#Monsters

 

NAGLFAR  = 2009010

 

SENTRY1  = 2009011

 

SENTRY2  = 2009012

 

HOUND  = 2009013

 

 

 

#Doors

 

DOOR1  = 12240001

 

DOOR2  = 12240002

 

 

 

#Instance respawn delay, time on ms

 

respawn_delay = 86400000

 

 

 

class PyObject:

 

  pass

 

 

 

def openDoor(doorId,instanceId):

 

  for door in InstanceManager.getInstance().getInstance(instanceId).getDoors():

 

      if door.getDoorId() == doorId:

 

        door.openMe()

 

 

 

def closeDoor(doorId,instanceId):

 

  for door in InstanceManager.getInstance().getInstance(instanceId).getDoors():

 

      if door.getDoorId() == doorId:

 

        door.closeMe()

 

 

 

def checkConditions(player, new):

 

  test = self.loadGlobalQuestVar("Bloodshed")

 

  if test.isdigit() :

 

      remain = long(test) - System.currentTimeMillis()

 

  else :

 

      remain = 0

 

  party = player.getParty()

 

  if party:

 

      player.sendPacket(SystemMessage.sendString("You may not enter with a party."))

 

      return False

 

  if not player.getLevel() >= 78:

 

      player.sendPacket(SystemMessage.sendString("You must be level 78 or higher to enter."))

 

      return False

 

  if not party:

 

      return True

 

  check spawn instance

 

  if remain > 0 :

 

      player.sendMessage("Bloodshed instance not ready.")

 

      return 0

 

  return True

 

 

 

def teleportplayer(self,player,teleto):

 

  player.setInstanceId(teleto.instanceId)

 

  player.teleToLocation(teleto.x, teleto.y, teleto.z)

 

  pet = player.getPet()

 

  if pet != None :

 

      pet.setInstanceId(teleto.instanceId)

 

      pet.teleToLocation(teleto.x, teleto.y, teleto.z)

 

  return

 

 

 

def enterInstance(self,player,template,teleto):

 

  instanceId = 0

 

  party = player.getParty()

 

  if party :

 

      for partyMember in party.getPartyMembers().toArray():

 

        st = partyMember.getQuestState(qn)

 

        if not st : st = self.newQuestState(partyMember)

 

        if partyMember.getInstanceId()!=0:

 

            instanceId = partyMember.getInstanceId()

 

  else :

 

      if player.getInstanceId()!=0:

 

        instanceId = player.getInstanceId()

 

  if instanceId != 0:

 

      if not checkConditions(player,False):

 

        return 0

 

      foundworld = False

 

      for worldid in self.world_ids:

 

        if worldid == instanceId:

 

            foundworld = True

 

      if not foundworld:

 

        player.sendPacket(SystemMessage.sendString("You have entered another zone, therefore you cannot enter this one."))

 

        return 0

 

      teleto.instanceId = instanceId

 

      teleportplayer(self,player,teleto)

 

      return instanceId

 

  else:

 

      if not checkConditions(player,True):

 

        return 0

 

      instanceId = InstanceManager.getInstance().createDynamicInstance(template)

 

      if not instanceId in self.world_ids:

 

        world = PyObject()

 

        world.rewarded=[]

 

        world.instanceId = instanceId

 

        self.worlds[instanceId]=world

 

        self.world_ids.append(instanceId)

 

        print "Instance: Started " + template + " Instance: " +str(instanceId) + " created by " + str(player.getName())

 

      teleto.instanceId = instanceId

 

      teleportplayer(self,player,teleto)

 

      return instanceId

 

  return instanceId

 

 

 

def exitInstance(player,tele):

 

  player.setInstanceId(0)

 

  player.teleToLocation(tele.x, tele.y, tele.z)

 

  pet = player.getPet()

 

  if pet != None :

 

      pet.setInstanceId(0)

 

      pet.teleToLocation(tele.x, tele.y, tele.z)

 

 

 

class Bloodshed(JQuest):

 

  def __init__(self,id,name,descr):

 

      JQuest.__init__(self,id,name,descr)

 

      self.worlds = {}

 

      self.world_ids = []

 

 

 

  def onTalk (self,npc,player):

 

      st = player.getQuestState(qn)

 

      npcId = npc.getNpcId()

 

      if npcId == ROSE :

 

        #set spawn instance

 

        self.saveGlobalQuestVar("Bloodshed", str(System.currentTimeMillis()+respawn_delay))

 

        tele = PyObject()

 

        tele.x = -238599

 

        tele.y = 219983

 

        tele.z = -10144

 

        enterInstance(self, player, "Bloodshed.xml", tele)

 

        st.playSound("ItemSound.quest_middle")

 

      elif npcId == CHEST :

 

        npc.decayMe()

 

        tele = PyObject()

 

        tele.x = 82200

 

        tele.y = 148347

 

        tele.z = -3467

 

        exitInstance(player,tele)

 

        st.giveItems(ADENA,2750000)

 

        st.giveItems(STONE,1)

 

        st.giveItems(SCROLL,1)

 

        st.playSound("ItemSound.quest_finish")

 

        player.sendPacket(ExShowScreenMessage("Solo Instance Event (78+): Completed", 8000))

 

      return

 

 

 

  def onKill(self,npc,player,isPet):

 

      st = player.getQuestState(qn)

 

      npcId = npc.getNpcId()

 

      if npcId == SENTRY1 :

 

        if npc.getInstanceId() in self.worlds:

 

            world = self.worlds[npc.getInstanceId()]

 

            st.playSound("ItemSound.quest_middle")

 

            player.sendPacket(CreatureSay(npc.getObjectId(), 0, npc.getName(), "Master, Forgive Me!"))

 

            st.giveItems(E_APIGA,1)

 

            openDoor(DOOR1,npc.instanceId)

 

      elif npcId == SENTRY2 :

 

        if npc.getInstanceId() in self.worlds:

 

            world = self.worlds[npc.getInstanceId()]

 

            st.playSound("ItemSound.quest_middle")

 

            player.sendPacket(CreatureSay(npc.getObjectId(), 0, npc.getName(), "Master, Forgive Me!"))

 

            st.giveItems(E_APIGA,1)

 

            openDoor(DOOR2,npc.instanceId)

 

      elif npcId == HOUND :

 

        if npc.getInstanceId() in self.worlds:

 

            world = self.worlds[npc.getInstanceId()]

 

            st.playSound("ItemSound.quest_middle")

 

            st.giveItems(E_APIGA,2)

 

            player.sendPacket(ExShowScreenMessage("Demonic Lord Naglfar Has Appeared!", 8000))

 

            newNpc = self.addSpawn(NAGLFAR,-242754,219982,-9985,306,False,0,False,npc.instanceId)

 

            player.sendPacket(Earthquake(240826,219982,-9985,20,10))

 

      elif npcId == NAGLFAR :

 

        if npc.getInstanceId() in self.worlds:

 

            world = self.worlds[npc.getInstanceId()]

 

            player.sendPacket(CreatureSay(npc.getObjectId(), 0, npc.getName(), "Ugh.... Defeated.. How!?"))

 

            player.sendPacket(ExShowScreenMessage("Congratulations! You Have Defeated Demonic Lord Naglfar.", 12000))

 

            st.playSound("ItemSound.quest_fanfare_2")

 

            st.giveItems(E_APIGA,4)

 

            newNpc = self.addSpawn(CHEST,-242754,219982,-9985,306,False,0,False,npc.instanceId)

 

      return

 

 

 

QUEST = Bloodshed(-1, qn, "Bloodshed")

 

QUEST.addStartNpc(ROSE)

 

QUEST.addTalkId(ROSE)

 

QUEST.addTalkId(CHEST)

 

 

 

QUEST.addKillId(NAGLFAR)

 

QUEST.addKillId(HOUND)

 

QUEST.addKillId(SENTRY1)

 

QUEST.addKillId(SENTRY2)

  • 2 weeks later...
Posted

Sorry for double post but here is the code adapted to Freya. Test it and let me know if there are errors (ingame) because i have one.

#Instance Event by Bloodshed adapted to freya by LiquidIce
import com.l2jserver.gameserver.instancemanager.InstanceManager;
import com.l2jserver.gameserver.model.L2ItemInstance;
import com.l2jserver.gameserver.model.actor.L2Summon;
import com.l2jserver.gameserver.model.entity.Instance;
import com.l2jserver.gameserver.model.itemcontainer.PcInventory;
import com.l2jserver.gameserver.model.quest.State;
import com.l2jserver.gameserver.model.quest.QuestState;
import com.l2jserver.gameserver.model.quest.jython.QuestJython as JQuest;
import com.l2jserver.gameserver.network.serverpackets.CreatureSay;
import com.l2jserver.gameserver.network.serverpackets.InventoryUpdate;
import com.l2jserver.gameserver.network.serverpackets.MagicSkillUse;
import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
import com.l2jserver.gameserver.network.serverpackets.ExShowScreenMessage;
import com.l2jserver.gameserver.network.serverpackets.Earthquake;
import com.l2jserver.gameserver.network.SystemMessageId;
import com.l2jserver.gameserver.util.Util;
import com.l2jserver.util.Rnd;

qn = "Bloodshed"

#Items
E_APIGA	= 14720
ADENA	= 57
STONE	= 9576
SCROLL	= 960

#NPCs
ROSE	= 2009001
CHEST	= 2009002

#Monsters
NAGLFAR	= 2009010
SENTRY1	= 2009011
SENTRY2	= 2009012
HOUND	= 2009013

#Doors
DOOR1	= 12240001
DOOR2	= 12240002

class PyObject:
pass

def openDoor(doorId,instanceId):
for door in InstanceManager.getInstance().getInstance(instanceId).getDoors():
	if door.getDoorId() == doorId:
		door.openMe()

def closeDoor(doorId,instanceId):
for door in InstanceManager.getInstance().getInstance(instanceId).getDoors():
	if door.getDoorId() == doorId:
		door.closeMe()

def checkConditions(player, new):
party = player.getParty()
if party:
	player.sendPacket(SystemMessage.sendString("You may not enter with a party."))
	return False
if not player.getLevel() >= 78:
	player.sendPacket(SystemMessage.sendString("You must be level 78 or higher to enter."))
	return False
if not party:
	return True
return False

def teleportplayer(self, player,teleto):
player.setInstanceId(teleto.instanceId)
player.teleto(teleto.x, teleto.y, teleto.z)
pet = player.getPet()
if pet != None :
	pet.setInstanceId(teleto.instanceId)
	pet.teleto(teleto.x, teleto.y, teleto.z)
return

def enterInstance(self,player,templateId,teleto):
instanceId = 0
party = player.getParty()
if party :
	for partyMember in party.getPartyMembers().toArray():
		st = partyMember.getQuestState(qn)
		if not st : st = self.newQuestState(partyMember)
		if partyMember.getInstanceId()!=0:
			instanceId = partyMember.getInstanceId()
else :
	if player.getInstanceId()!=0:
		instanceId = player.getInstanceId()
if instanceId != 0:
	if not checkConditions(player,False):
		return 0
	foundworld = False
	for worldid in self.world_ids:
		if worldid == instanceId:
			foundworld = True
	if not foundworld:
		player.sendPacket(SystemMessage.sendString("You have entered another zone, therefore you cannot enter this one."))
		return 0
	teleto.instanceId = instanceId
	teleportplayer(self, player,teleto)
	return instanceId
else:
	if not checkConditions(player,True):
		return 0
	instanceId = InstanceManager.getInstance().createDynamicInstance(template)
	if not instanceId in self.world_ids:
		world = PyObject()
		world.rewarded=[]
		world.instanceId = instanceId
		self.worlds[instanceId]=world
		self.world_ids.append(instanceId)
		print "Instance: Started " + template + " Instance: " +str(instanceId) + " created by " + str(player.getName())
	teleto.instanceId = instanceId
	teleportplayer(self, player,teleto)
	return instanceId
return instanceId

def exitInstance(player,teleto):
player.setInstanceId(0)
player.teleto(teleto.x, teleto.y, teleto.z)
pet = player.getPet()
if pet != None :
	pet.setInstanceId(0)
	pet.teleto(teleto.x, teleto.y, teleto.z)

class Bloodshed(JQuest):
def __init__(self,id,name,descr):
	JQuest.__init__(self,id,name,descr)
	self.worlds = {}
	self.world_ids = []

def onTalk (self,npc,player):
	st = player.getQuestState(qn)
	npcId = npc.getNpcId()
	if npcId == ROSE :
		tele = PyObject()
		teleto.x = -238599
		teleto.y = 219983
		teleto.z = -10144
		enterInstance(self, player, "Bloodshed.xml", teleto)
		st.playSound("ItemSound.quest_middle")
	elif npcId == CHEST :
		npc.decayMe()
		tele = PyObject()
		teleto.x = 82200
		teleto.y = 148347
		teleto.z = -3467
		exitInstance(player,teleto)
		st.giveItems(ADENA,2750000)
		st.giveItems(STONE,1)
		st.giveItems(SCROLL,1)
		st.playSound("ItemSound.quest_finish")
		player.sendPacket(ExShowScreenMessage("Solo Instance Event (78+): Completed", 8000))
	return

def onKill(self,npc,player,isPet):
	st = player.getQuestState(qn)
	npcId = npc.getNpcId()
	if npcId == SENTRY1 :
		if npc.getInstanceId() in self.worlds:
			world = self.worlds[npc.getInstanceId()]
			st.playSound("ItemSound.quest_middle")
			player.sendPacket(CreatureSay(npc.getObjectId(), 0, npc.getName(), "Master, Forgive Me!"))
			st.giveItems(E_APIGA,1)
			openDoor(DOOR1,npc.instanceId)
	elif npcId == SENTRY2 :
		if npc.getInstanceId() in self.worlds:
			world = self.worlds[npc.getInstanceId()]
			st.playSound("ItemSound.quest_middle")
			player.sendPacket(CreatureSay(npc.getObjectId(), 0, npc.getName(), "Master, Forgive Me!"))
			st.giveItems(E_APIGA,1)
			openDoor(DOOR2,npc.instanceId)
	elif npcId == HOUND :
		if npc.getInstanceId() in self.worlds:
			world = self.worlds[npc.getInstanceId()]
			st.playSound("ItemSound.quest_middle")
			st.giveItems(E_APIGA,2)
			player.sendPacket(ExShowScreenMessage("Demonic Lord Naglfar Has Appeared!", 8000))
			newNpc = self.addSpawn(NAGLFAR,-242754,219982,-9985,306,False,0,False,npc.instanceId)
			player.sendPacket(Earthquake(240826,219982,-9985,20,10))
	elif npcId == NAGLFAR :
		if npc.getInstanceId() in self.worlds:
			world = self.worlds[npc.getInstanceId()]
			player.sendPacket(CreatureSay(npc.getObjectId(), 0, npc.getName(), "Ugh.... Defeated.. How!?"))
			player.sendPacket(ExShowScreenMessage("Congratulations! You have defeated Demonic Lord Naglfar.", 12000))
			st.playSound("ItemSound.quest_fanfare_2")
			st.giveItems(E_APIGA,4)
			newNpc = self.addSpawn(CHEST,-242754,219982,-9985,306,False,0,False,npc.instanceId)
	return

QUEST = Bloodshed(-1, qn, "Bloodshed")
QUEST.addStartNpc(ROSE)
QUEST.addTalkId(ROSE)
QUEST.addTalkId(CHEST)

QUEST.addKillId(NAGLFAR)
QUEST.addKillId(HOUND)
QUEST.addKillId(SENTRY1)
QUEST.addKillId(SENTRY2)

Posted

Hi I'll tryd to my Interlude server... but i cant execute the sql file. like this:

[Err] 1136 - Column count doesn't match value count at row 1

[Err] INSERT INTO `npc` VALUES

(2009001,32630,'Rose',1,'Flower Girl',1,'LineageNPC.a_fighterguild_teacher_MDarkElf',8,20,70,'female','L2Npc',40,2444,2444,0,0,10,10,10,10,10,10,0,0,500,500,500,500,278,0,333,0,0,0,60,60,'event_clan',0,0,0,'LAST_HIT',0,0,0,'balanced','false'),

(2009002,30647,'Demonic Chest',1,'Treasure of Naglfar',1,'NPC.coffer_c',12,9,70,'etc','L2Npc',40,3862,1493,11.85,2.78,40,43,30,21,20,10,0,0,1314,470,780,382,278,0,333,0,0,0,55,132,'event_clan',0,1,0,'LAST_HIT',0,0,0,'fighter','false'),

(2009010,25642,'Naglfar',1,'Demonic Lord',1,'LineageMonster4.rahuu',20,64,83,'male','L2Monster',100,22120,24444,20,3.09,50,43,40,21,20,10,0,0,3032,1855,2955,1854,300,500,933,13983,0,0,80,220,'event_clan',1000,1,0,'LAST_HIT',0,0,0,'balanced','false'),

(2009011,22329,'Sin',1,'Demonic Sentry',1,'LineageMonster3.Death_Blader_Raid',15,32.5,83,'male','L2Monster',40,9599,24444,56.86,3.09,40,43,30,21,20,10,0,0,2356,1220,3250,1034,278,500,333,0,0,0,60,180,'event_clan',1500,0,0,'LAST_HIT',0,0,0,'fighter','true'),

(2009012,22329,'Hel',1,'Demonic Sentry',1,'LineageMonster3.Death_Blader_Raid',15,32.5,83,'male','L2Monster',40,9599,24444,56.86,3.09,40,43,30,21,20,10,0,0,2356,1220,3250,1034,278,500,333,0,0,0,60,180,'event_clan',1500,0,0,'LAST_HIT',0,0,0,'fighter','true'),

(2009013,29151,'Hellhound',1,'Demonic Spawn',1,'NPC2.bereth_fake',64,48.42,83,'male','L2Monster',50,12381,20444,50,3.09,50,40,30,21,20,10,0,0,2532,1555,3555,1554,275,500,733,0,0,0,60,180,'event_clan',500,0,0,'LAST_HIT',0,0,0,'fighter','false');

[Msg] Finished - Unsuccessfully

--------------------------------------------------

Posted

It's small instance event (solo)

 

Kill a few mobs to get to a boss, kill it and claim a reward. Pretty simple, just check it out if u want 

NPC in giran center to enter instance and exchange event coins you can get inside for some hats (adjust mob stats, rewards, npc skills etc to your liking...

 

girlkem.jpg

 

Credits: l2j-forum

 

http://www.4shared.com/file/258144163/fe33b6ac/Instance_Event.html

 

Very nice event thx for all.

  • 2 weeks later...
Posted

 check spawn instance
   if remain > 0 :

 

With last freya release, i have this error :

 

SyntaxError: ('invalid syntax', ('__init__.py', 73, 10, '   check spawn instance'))

 

I used the file with day limit.

Someone can help me for fix that?

Posted

This add on event is not what we need... Is allow the event to running only one time per day.

And is not codded well also.

So here is the correct one for Freya !

 

Index: data/scripts/handlers/usercommandhandlers/InstanceZone.java
===================================================================
--- data/scripts/handlers/usercommandhandlers/InstanceZone.java	(revision 7669)
+++ data/scripts/handlers/usercommandhandlers/InstanceZone.java	(working copy)
@@ -72,13 +72,22 @@
						firstMessage = false;
						activeChar.sendPacket(new SystemMessage(SystemMessageId.INSTANCE_ZONE_TIME_LIMIT));
					}
-					int hours = (int) (remainingTime / 3600);
-					int minutes = (int) ((remainingTime%3600) / 60);
-					SystemMessage sm = new SystemMessage(SystemMessageId.AVAILABLE_AFTER_S1_S2_HOURS_S3_MINUTES);
-					sm.addString(InstanceManager.getInstance().getInstanceIdName(instanceId));
-					sm.addNumber(hours);
-					sm.addNumber(minutes);
-					activeChar.sendPacket(sm);
+					if (instanceId != 500000)
+					{
+						int hours = (int) (remainingTime / 3600);
+						int minutes = (int) ((remainingTime%3600) / 60);
+						SystemMessage sm = new SystemMessage(SystemMessageId.AVAILABLE_AFTER_S1_S2_HOURS_S3_MINUTES);
+						sm.addString(InstanceManager.getInstance().getInstanceIdName(instanceId));
+						sm.addNumber(hours);
+						sm.addNumber(minutes);
+						activeChar.sendPacket(sm);
+					}
+					else
+					{
+						int hours = (int) (remainingTime / 3600);
+						int minutes = (int) ((remainingTime%3600) / 60);
+						activeChar.sendMessage("Solo Instance will be available to re-use in " + hours + " hours and " + minutes + " minutes.");
+					}
				}
				else
					InstanceManager.getInstance().deleteInstanceTime(activeChar.getObjectId(), instanceId);
Index: data/scripts.cfg
===================================================================
--- data/scripts.cfg	(revision 7669)
+++ data/scripts.cfg	(working copy)
@@ -207,6 +207,7 @@
village_master/orc_occupation_change_2/__init__.py

# Instance Dungeons Section
+instances/Bloodshed/__init__.py
instances/DarkCloudMansion/DarkCloudMansion.java
instances/CrystalCaverns/CrystalCaverns.java
instances/Kamaloka/Kamaloka.java

 

And here is the __init__.py

 

#Instance Engine by Bloodshed, Fixed by Sakretsu

from java.lang                                                 import System
from java.sql                                                  import Connection
from java.sql                                                  import PreparedStatement
from java.sql                                                  import ResultSet
from java.util.logging                                         import Level
from java.util.logging                                         import Logger

from com.l2jserver                                             import L2DatabaseFactory
from com.l2jserver.gameserver.instancemanager                  import InstanceManager
from com.l2jserver.gameserver.instancemanager.InstanceManager  import InstanceWorld
from com.l2jserver.gameserver.model                            import L2ItemInstance
from com.l2jserver.gameserver.model                            import L2Object
from com.l2jserver.gameserver.model                            import L2World
from com.l2jserver.gameserver.model.actor                      import L2Character
from com.l2jserver.gameserver.model.actor                      import L2Summon
from com.l2jserver.gameserver.model.entity                     import Instance
from com.l2jserver.gameserver.model.itemcontainer              import PcInventory
from com.l2jserver.gameserver.model.quest                      import State
from com.l2jserver.gameserver.model.quest                      import QuestState
from com.l2jserver.gameserver.model.quest.jython               import QuestJython as JQuest
from com.l2jserver.gameserver.network.serverpackets            import CreatureSay
from com.l2jserver.gameserver.network.serverpackets            import InventoryUpdate
from com.l2jserver.gameserver.network.serverpackets            import MagicSkillUse
from com.l2jserver.gameserver.network.serverpackets            import SystemMessage
from com.l2jserver.gameserver.network.serverpackets            import ExShowScreenMessage
from com.l2jserver.gameserver.network.serverpackets            import Earthquake
from com.l2jserver.gameserver.network                          import SystemMessageId
from com.l2jserver.gameserver.util                             import Util
from com.l2jserver.util                                        import Rnd

qn = "Bloodshed"

#Items
E_APIGA	= 14720
ADENA	= 57
STONE	= 9576
SCROLL	= 960

#NPCs
ROSE	= 40000
CHEST	= 40001

#Monsters
NAGLFAR	= 40002
SENTRY1	= 40003
SENTRY2	= 40004
HOUND	= 40005

#Timelimit
TIMELIMIT = 86400000

#Instance Id
INSTANCEID = 500000

#Doors
DOOR1	= 12240001
DOOR2	= 12240002

class PyObject:
pass

def openDoor(doorId,instanceId):
for door in InstanceManager.getInstance().getInstance(instanceId).getDoors():
	if door.getDoorId() == doorId:
		door.openMe()

def closeDoor(doorId,instanceId):
for door in InstanceManager.getInstance().getInstance(instanceId).getDoors():
	if door.getDoorId() == doorId:
		door.closeMe()

def checkConditions(player, new):
st = player.getQuestState(qn)
reentertime = InstanceManager.getInstance().getInstanceTime(player.getObjectId(), INSTANCEID);
party = player.getParty()
if party:
	player.sendPacket(SystemMessage.sendString("You may not enter with a party."))
	return False
if not player.getLevel() >= 83:
	player.sendPacket(SystemMessage.sendString("You must be level 83 or higher to enter."))
	return False
if System.currentTimeMillis() < reentertime :
	InstanceManager.getInstance().getInstanceTime(player.getObjectId(), INSTANCEID)
	player.sendPacket(SystemMessage.sendString("Solo Instance: You may not re-enter yet."))
	return False
if not party:
	return True
return False

def teleportplayer(self,player,teleto):
player.setInstanceId(teleto.instanceId)
player.teleToLocation(teleto.x, teleto.y, teleto.z)
pet = player.getPet()
if pet != None :
	pet.setInstanceId(teleto.instanceId)
	pet.teleToLocation(teleto.x, teleto.y, teleto.z)
return

def enterInstance(self,player,template,teleto):
instanceId = 0
party = player.getParty()
if party :
	for partyMember in party.getPartyMembers().toArray():
		st = partyMember.getQuestState(qn)
		if not st : st = self.newQuestState(partyMember)
		if partyMember.getInstanceId()!=0:
			instanceId = partyMember.getInstanceId()
else :
	if player.getInstanceId()!=0:
		instanceId = player.getInstanceId()
if instanceId != 0:
	if not checkConditions(player,False):
		return 0
	foundworld = False
	for worldid in self.world_ids:
		if worldid == instanceId:
			foundworld = True
	if not foundworld:
		player.sendPacket(SystemMessage.sendString("You have entered another zone, therefore you cannot enter this one."))
		return 0
	teleto.instanceId = instanceId
	teleportplayer(self,player,teleto)
	return instanceId
else:
	if not checkConditions(player,True):
		return 0
	instanceId = InstanceManager.getInstance().createDynamicInstance(template)
	if not instanceId in self.world_ids:
		world = PyObject()
		world.rewarded=[]
		world.instanceId = instanceId
		world.templateId = INSTANCEID
		self.worlds[instanceId]=world
		self.world_ids.append(instanceId)
		print "Instance Bloodshed.xml Started: " +str(instanceId) + " created by " + str(player.getName())
	st = player.getQuestState(qn)
	InstanceManager.getInstance().setInstanceTime(player.getObjectId(), INSTANCEID, ((System.currentTimeMillis() + TIMELIMIT)))
	teleto.instanceId = instanceId
	teleportplayer(self,player,teleto)
	return instanceId
return instanceId

def exitInstance(player,tele):
player.setInstanceId(0)
player.teleToLocation(tele.x, tele.y, tele.z)
pet = player.getPet()
if pet != None :
	pet.setInstanceId(0)
	pet.teleToLocation(tele.x, tele.y, tele.z)

class Bloodshed(JQuest):
def __init__(self,id,name,descr):
	JQuest.__init__(self,id,name,descr)
	self.worlds = {}
	self.world_ids = []

def onTalk (self,npc,player):
	st = player.getQuestState(qn)
	npcId = npc.getNpcId()
	if npcId == ROSE :
		tele = PyObject()
		tele.x = -238599
		tele.y = 219983
		tele.z = -10144
		enterInstance(self, player, "Bloodshed.xml", tele)
		st.playSound("ItemSound.quest_middle")
	elif npcId == CHEST :
		npc.decayMe()
		tele = PyObject()
		tele.x = 83279
		tele.y = 148011
		tele.z = -3404
		exitInstance(player,tele)
		st.giveItems(ADENA,2750000)
		st.giveItems(STONE,1)
		st.giveItems(SCROLL,1)
		st.playSound("ItemSound.quest_finish")
		player.sendPacket(ExShowScreenMessage("Solo Instance Event (83+): Completed", 8000))
	return

def onKill(self,npc,player,isPet):
	st = player.getQuestState(qn)
	npcId = npc.getNpcId()
	if npcId == SENTRY1 :
		if npc.getInstanceId() in self.worlds:
			world = self.worlds[npc.getInstanceId()]
			st.playSound("ItemSound.quest_middle")
			player.sendPacket(CreatureSay(npc.getObjectId(), 0, npc.getName(), "Master, Forgive Me!"))
			st.giveItems(E_APIGA,1)
			openDoor(DOOR1,npc.instanceId)
	elif npcId == SENTRY2 :
		if npc.getInstanceId() in self.worlds:
			world = self.worlds[npc.getInstanceId()]
			st.playSound("ItemSound.quest_middle")
			player.sendPacket(CreatureSay(npc.getObjectId(), 0, npc.getName(), "Master, Forgive Me!"))
			st.giveItems(E_APIGA,1)
			openDoor(DOOR2,npc.instanceId)
	elif npcId == HOUND :
		if npc.getInstanceId() in self.worlds:
			world = self.worlds[npc.getInstanceId()]
			st.playSound("ItemSound.quest_middle")
			st.giveItems(E_APIGA,2)
			player.sendPacket(ExShowScreenMessage("Demonic Lord Naglfar Has Appeared!", 8000))
			newNpc = self.addSpawn(NAGLFAR,-242754,219982,-9985,306,False,0,False,npc.instanceId)
			player.sendPacket(Earthquake(240826,219982,-9985,20,10))
	elif npcId == NAGLFAR :
		if npc.getInstanceId() in self.worlds:
			world = self.worlds[npc.getInstanceId()]
			player.sendPacket(CreatureSay(npc.getObjectId(), 0, npc.getName(), "Ugh.... Defeated.. How!?"))
			player.sendPacket(ExShowScreenMessage("Congratulations! You Have Defeated Demonic Lord Naglfar.", 12000))
			st.playSound("ItemSound.quest_fanfare_2")
			st.giveItems(E_APIGA,4)
			newNpc = self.addSpawn(CHEST,-242754,219982,-9985,306,False,0,False,npc.instanceId)
	return

QUEST = Bloodshed(-1, qn, "Bloodshed")
QUEST.addStartNpc(ROSE)
QUEST.addTalkId(ROSE)
QUEST.addTalkId(CHEST)

QUEST.addKillId(NAGLFAR)
QUEST.addKillId(HOUND)
QUEST.addKillId(SENTRY1)
QUEST.addKillId(SENTRY2)

 

 

Credits go to Sakretsu !

Guest
This topic is now closed to further replies.



  • Posts

    • Back to Full Operating Mode ▪ As of January 16, Mustang Service is back to its regular workflow. › What this means: → we accept both standard and complex cases → turnaround times are back to normal → no holiday-related limitations ▪ If you postponed a task “until after the holidays” — now is the right time to get back to it. Message us — we’ll review your case and suggest the optimal way forward. › TG: @mustang_service ( https:// t.me/ mustang_service ) › Channel: Mustang Service ( https:// t.me/ +6RAKokIn5ItmYjEx ) #drawing #verification #documents #KYC #backtowork
    • General Trackers :   IPTorrents invite IPTorrents account 1 tb TorrentLeech invite Torrentleech account 1 tb buffer  InTheShaDow ( ITS ) account Acid-lounge invite Torrentday invite Crnaberza account Abn.Lol account Limit-of-eden account Norbits account Xspeeds account Xspeeds invite Bemaniso invite Wigornot account Bithumen invite Filelist account Funfile invite AvistaZ invite Potuk.net invite ResurrectThe.Net invite GrabThe.Info invite Greek-Team invite LinkoManija invite Fano.in account tracker.czech-server.com Speed.cd invite Arab-torrents.net account Arabscene.me account Scenetime account 4thd.xyz invite Btarg.com.ar account Dedbit invite Estone.cc account Speedapp invite Finvip invite Fluxzone account GigaTorrents account Gimmepeers account Haidan.video invite Mojblink account Mycarpathians invite Newinsane.info account Oscarworld.xyz account Peers.FM invite Pt.msg.vg account Ransackedcrew account Redemption invite Scene-rush account Seedfile.io invite Teracod invite Torrent.ai account Torrentmasters invite Ttsweb invite X-files invite X-ite invite Ncore account TorrentHR account Rptorrents account BwTorrents account Superbits invite Krazyzone account Immortalseed account Tntracker invite Pt.eastgame.org account Bitturk account Rstorrent account Tracker.btnext invite Torrent-turk.de account BeiTai.PT account Pt.keepfrds account 52pt.site account Pthome account Torrentseeds account Aystorrent account Blues-brothers.biz invite Divteam account Thesceneplace invite CinemaMovies.pl account Brasiltracker account Patiodebutacas account Newheaven.nl account  Swarmazon.club invite Bc-reloaded account Crazyspirits account Silentground invite Omg.wtftrackr invite Milkie.cc invite Breathetheword invite Madsrevolution account Chilebt account Yubraca account Uniongang.tv account Frboard account Exvagos account Diablotorrent account Microbit account Carp-hunter.hu account Majomparade.eu account Theshinning.me account Youiv.info account Dragonworld-reloaded account Sharewood.tv account Partis.si account Digitalcore.club invite Fuzer.me account R3vuk.wtf invite Ztracker account 1 tb buffer 3changtrai account Best-core.info account Bitsite.us account Eliteunitedcrew invite Exitorrent.org account Tophos invite Torrent.lt account Sktorrent.eu account Oshen account Blackhattorrent account Pirata.digital account Esharenet account Ohmenarikgi.la Pirate-share account Immortuos account Kiesbits account Cliente.amigos-share.club account Broadcity invite Ilovetorzz account Torrentbytes account Polishsource account Portugas invite Shareisland account ArabaFenice account Hudbt.hust.edu.cn account Audiences account Nanyangpt account Pt.sjtu.edu.cn account Pt.zhixing.bjtu.edu.cn account Byr.pt invite Ptfiles invite Red-bits account Pt.hdpost.top account Irrenhaus.dyndns.dk (NewPropaganda) account Mnvv2.info (MaxNewVision V2) account 1ptba.com account Spidertk.top account Film-paleis account Generation-free account Aftershock-tracker account Twilightsdreams account Back-ups.me invite Sor-next.tk ( Spirit Of Revolution ) account Tfa.tf ( The Falling Angels ) account Hdmayi account S-f-p.dyndns.dk ( Share Friends Projekt ) account Unlimitz.biz account Pttime account St-tracker.eu account New-retro.eu account Zbbit account Tigers-dl.net account Jptvts.us account Lat-team account Club.hares.top account Falkonvision-team account Concen account Drugari account T.ceskeforum account Peeratiko.org account Zamunda.se account Central-torrent.eu account h-o-d.org account Torrentleech.pl account Demonoid invite Lst.gg account Fakedoor.store account LaidBackManor account Vrbsharezone.co.uk invite Torrenteros account Arenaelite account Datascene account Tracker.0day.community Tapochek.net invite Ptchina invite Lesaloon account Exyusubs account Therebels.tv account Ubits.club invite Zmpt.cc account Turktorrent.us account Dasunerwarte account Hawke.uno account Monikadesign account Fearnopeer account Alpharatio account Wukongwendao.top account Chinapyg account Azusa.wiki account Yggtorrent.top account Torrentdd account Cyanbug.net invite Hhanclub.top account Wintersakura.net account Xthor account Tctg.pm account Finelite invite Agsvpt.com account Pt.0ff.cc invite Qingwapt.com account Xingtan.one account Ptcafe.club invite Theoldschool.cc account W-o-t.pro account Coastal-crew.bounceme.net account Darkpeers.org account Pianyuan.org account Seedpool.org  account Tempelbox account Pt.itzmx.com account Capybarabr.com account Itatorrents.xyz  account Letseed.org account The-new-fun.com  account Malayabits.cc account Trellas.me account Yu-scene.net account Futuretorrent.org account Bitpt.cn account Tocashare.biz  account Videoteka.org  account White-angel.hu account   Movies Trackers :   Anthelion account Pixelhd account Cinemageddon account DVDSeed account Cinemageddon account Cinemaz account Retroflix account Classix-unlimited - invite Movie-Torrentz (m2g.link) invite Punck-tracker.net account Tmghub account Tb-asian account Cathode-ray.tube account Greatposterwall account Telly account Arabicsource.net account Upload.cx account Crabpt.vip invite Onlyencodes.cc account Exyusubs account Hellashut.net invite Nordichd.sytes.net invite Locadora.cc account   HD Trackers :   Blutopia buffered account Hd-olimpo buffered account Hdf.world account Torrentland.li account HdSky account Hdchina account Chdbits account Totheglory account Hdroute account Hdhome account TorrentCCF aka et8.org account 3DTorrents invite HD-Torrents account Bit-HDTV account HDME.eu invite Hdarea.co account Asiancinema.me account JoyHD invite HDSpace invite CrazyHD invite Bluebird-hd invite Htpt.cc account Hdtime invite Ourbits.club account Hd4fans account Siambit account Privatehd account Springsunday account Tjupt account Hdcity.leniter invite Ccfbits account Discfan account Pt.btschool.club account Ptsbao.club invite Hdzone.me invite Danishbytes account Zonaq.pw account Tracker.tekno3d account Arabp2p account Hd-united account Reelflix.xyz account Hdatmos.club account Anasch.cc invite Tigris-t account Nethd.org account Hd.ai invite Hitpt.com account Hdmonkey account Dragonhd.xyz account Hdclub.eu account Forum.bluraycd.com account Carpt account Hdfun.me invite Pt.hdupt invite Puntotorrent account Ultrahd account Rousi.zip account Bearbit account Hdturk.club account Asiandvdclub account Star-space.net account Nordicq.org account Hdkyl.in account Utp.to account   Music Trackers :   Dicmusic account Music-Vid account Open.cd account LzTr account ProAudioTorrents invite Jpopsuki invite TranceTraffic invite Audionews invite Kraytracker invite Libble.me invite Losslessclub invite Indietorrents.com invite Dimeadozen account Funkytorrents invite Karaokedl account zombtracker.the-zomb account Concertos account Sugoimusic account Satclubbing.club invite Metal.iplay invite Psyreactor invite Panda.cd account Adamsfile account Freehardmusic account Tracker.hqmusic.vn accouunt Twilightzoom account 3 tb buffer Hiresmusic account Metalguru account Musictorrents.org account Musebootlegs.com invite Zappateers.com account Jungleland.dnsalias.com account Naftamusic account   E-Learning Trackers :   Thevault account BitSpyder invite Brsociety account Learnbits invite Myanonamouse account Libranet account 420Project account Learnflakes account Pt.soulvoice.club account P2pelite account Aaaaarg.fail invite Ebooks-shares.org account Abtorrents account Pt.tu88.men invite Docspedia.world invite   TV-Trackers : Skipthecommericals Cryptichaven account TV-Vault invite Shazbat.TV account Myspleen account Tasmanit.es invite Tvstore.me account Tvchaosuk account Jptv.club account Tvroad.info   XXX - Porn Trackers :   FemdomCult account Pornbay account Pussytorrents account Adult-cinema-network account Bootytape account 1 Tb buffer Exoticaz account Bitporn account Kufirc account Gaytorrent.ru invite Nicept account Gay-torrents.org invite Ourgtn account Pt.hdbd.us account BitSexy account Happyfappy.org account Kamept.com account Lesbians4u.org account   Gaming Trackers :   Mteam.fr account BitGamer invite Retrowithin invite Gamegamept account   Cartoon/Anime/Comic Trackers :   Animeworld account Oldtoons.world account U2.dmhy account CartoonChaos invite Animetorrents account Mononoke account Totallykids.tv account Bakabt.me invite Revanime account Ansktracker account Tracker.shakaw.com.br invite Bt.mdan.org account Skyey2.com account Animetracker.cc Adbt.it.cx invite Tracker.uniotaku.com account Mousebits.com account   Sports Trackers :   MMA-Tracker invite T3nnis.tv invite AcrossTheTasman account RacingForMe invite Sportscult invite Ultimatewrestlingtorrents account Worldboxingvideoarchive invite CyclingTorrents account Xtremewrestlingtorrents account Tc-boxing invite Mma-torrents account Aussierul invite Xwt-classics account Racing4everyone account Talk.tenyardtracker account Stalker.societyglitch invite Extremebits invite Rgfootball.net account F1carreras.xyz account   Software/Apps Trackers :   Brokenstones account Appzuniverse invite Teamos.xyz account Macbb.org account   Graphics Trackers:   Forum.Cgpersia account Gfxpeers account Forum.gfxdomain account   Documentary Trackers:   Forums.mvgroup account   Others   Fora.snahp.eu account Board4all.biz account Filewarez.tv account Makingoff.org/forum account Xrel.to account Undergunz.su account Corebay account Endoftheinter.net ( EOTI ) account Thismight.be invite Skull.facefromouter.space account Avxhm.se (AvaxHome) account Ssdforum account Notfake.vip account Intotheinter.net account Tildes.net invite Thetoonz account Usinavirtual account Hdclasico invite HispaShare account Valentine.wtf account Adit-hd account Forum-andr.net account Warezforums account Justanothermusic.site account Forbiddenlibrary.moe account Senturion.to account Movieparadise account Militaryzone account Dcdnet.ru account Sftdevils.net account Heavy-r.com account New-team.org account Ddl.tv account Filewarez.club account Hispamula.org account Hubwarez.tv account   NZB :   Ninjacentral.co.za account Tabula-rasa.pw account Drunkenslug account Drunkenslug invite Usenet-4all account Brothers-of-Usenet account Dognzb.cr invite Kleverig account Nzb.cat account Nzbplanet.net invite Ng4you.com account Nzbsa.co.za account Bd25.eu account NZB.to account Samuraiplace account Abhdtv.net account Abook.link account Comix.pw account House-of-usenet Secretbinaries.net account Vnext.to account Stockboxx.top account Prices start from 3 $ to 100 $ Payment methods: Crypto, Neteller, Webmoney, Revolut If you want to buy something send me a pm or contact me on:   Email: morrison2102@gmail.com   Discord: LFC4LIFE#4173   Telegram: https://t.me/LFC4LIFE4173   Skype: morrison2102@hotmail.com
    • [BETA] L2 Exay OPENING – February 1st   L2Exay Website   If you don’t want to try the Beta, you can still register and we will notify you when the server officially opens.   Basic Information     Chronicle H5 No donations – nothing can be bought with real money, everything is obtained by playing. High dynamic rates (starts from x30 Sp/Exp) Adena x60 Drop x10– rates increase at higher levels for smooth, linear progression. Focused on PvP, Raids, Events and Clans. Maximum 2 clients per player. Maximum enchant +25 Safe +3. Offline Trade Commands: .online .deposit .withdraw .premium .changepassword Shift + Click (NPC Stats / Drop View)   Features   Scheme Buffer: configure different buff setups for your character. Global Gatekeeper: access all zones from a single location. GM Shop: buy almost anything (up to S grade only). Premium Shop (Community Board) Fame Shop (Community Board) Reputation Shop (Clan leaders only – Community Board) Community Board with utilities and special shops for easy access. Multiple custom zones: Boss Combo, Adena Farm, Coin Farm. Multiple custom items designed to extend gameplay progression (does not end at S84). Multiple boss spawns. Community Board features: Deleveling, Drop Search, Premium Manager, Basic Gatekeeper, Noblesse/Heal, Premium Shop. Premium Account is purchased using VIP Coins, obtained by voting for the server. Premium significantly increases special coin drops and also grants PcCafe Points just for being online. PcCafe Points can be used in the Premium Shop (CB) or Prime Shop. Automatic Events: Team vs Team, Deathmatch, Capture the Flag, Invasion, Treasure Chests. Events reward not only winners but also participants simply for taking part.   Custom Items   Experience boost scrolls. Drop boost scrolls. Experience Locker. NPC Spawn Scrolls: spawn your own Buffer, GM Shop or Global Gatekeeper anywhere. Boss Spawn Scrolls: every day you can claim VIP Coins from the website and receive 3 random boss scrolls to summon your own bosses and farm their drops. Elite Pet Items: powerful pet gear for players who enjoy solo gameplay, giving your pet a meaningful role. Elite Items: extremely powerful items that greatly enhance their owners and extend gameplay. Endgame Items: very powerful but hard to obtain. Lucky Boxes: sometimes you win, sometimes you lose. Treasure Sacks & Gear Boxes: RNG taken to the next level. Bosses drop different types of gear boxes that can grant random equipment, or you can exchange boss coins for specific gear. Economy is not based only on Adena – there are multiple custom coins with different values, while Adena still plays an important role. Manor Seeds have been redesigned to be more flexible and less restricted by zones or levels. A wide variety of consumables: from self-resurrection items to title color changers. PvP is no longer just about gear and reaction speed, but also about how you combine consumables strategically.   Many Ways to Farm   As mentioned before, there are multiple shops, each with its own currency. One thing I personally never liked about most Lineage 2 servers (and MMORPGs in general, except maybe Guild Wars 2) is monotonous farming: killing the same monsters or repeating the same quest for days, weeks, months or even years. We wanted to change that, so we focused on a more varied farming system.   Adena farming zone (classic, unavoidable). Coin farming zone (also classic). General farming zones. Spoil is highly profitable (not so typical). Boss zones with fast respawn, boss combos, boss summon scrolls. Elite monsters with higher coin drops. Champion monsters: low-rank boss-like enemies with good drops. Passive farming with Premium: earn special currency just by being online. Automatic events have been reworked: more rewarding, improved logic, and rewards for losing teams and participants. Clan gameplay: Fame and Reputation are used as currency in some shops. Fortress and Castle dungeon systems have been redesigned to be far more profitable. Manor system is also very beneficial for clans, plus exclusive perks like Clan Shop and Premium Buffer for clans owning a Clan Hall, Fortress or Castle. Manor System Redesign: Farming seeds and selling crops to castle owners now grants large amounts of materials that can be exchanged for coins. Low-level seeds have been redesigned: for example, a level 85 character can plant a level 20 seed on a level 60 monster. Rates are reduced, but not drastically.   What Else Can You Do?   Go fishing – extremely profitable on this server, yielding large amounts of Adena and coins. PvP – earn special coins for each PvP kill and use them to buy items, some of them exclusive and tradable.   New Player Support   Yes! Every new character receives starter packs and initial equipment so you can focus on playing. In addition to NG and D-grade gear, you will receive consumables such as: Silver EXP Scroll Golden EXP Scrolls Premium Drop Scrolls Chocolate Cookies (Vitality)   That’s everything for now. I hope to see you in-game, and any feedback or suggestions are more than welcome. Sorry for the long post!
  • 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..

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock