Jump to content
  • 0

Ligi voithia me ena instance pou thelo.


Question

Posted

Kalispera Boys thelo ligi voithia me ena instance thelo na valo otan pai o pextis na mpi sto Kamaloka px na tou perni kapio Items tis protimisis mou opios exi tin diathesi kai tin kalosini as me voithisi Ty !

 

Ta Spam Den Tha Voithisoun Idietera  8) !

2 answers to this question

Recommended Posts

  • 0
Posted

vasika ti akrivos theleis?

gia na tou perni kapio item ...as pume ena item (id:3481) px 5 tetia ...to eksis pisteuw arkei sto instance:

if(player.getInventory().getItemByItemId(3481) == null || player.getInventory().getItemByItemId(3481).getCount() < 5
{
  player.sendMessage("You dont have blabla");
  return;
}
player.getInventory().destroItemByItemId("destroy",3481,5,player,null);

 

Ola auta stin onBypassFeedback methodo tou instance sou enoeite.

  • 0
Posted

Lipon edo ine to java file tou Kamaloka exo dokimasi mpolika alla exo apogoitefti gia valto stin thesi an mporis fisika na to dokimaso

 

Sorry den thimame pos mpeni to code

 

package instances.Kamaloka;

 

import javolution.util.FastMap;

 

import com.l2dc.gameserver.ai.CtrlIntention;

import com.l2dc.gameserver.instancemanager.InstanceManager;

import com.l2dc.gameserver.instancemanager.InstanceManager.InstanceWorld;

import com.l2dc.gameserver.model.L2Party;

import com.l2dc.gameserver.model.actor.L2Npc;

import com.l2dc.gameserver.model.actor.instance.L2PcInstance;

import com.l2dc.gameserver.model.entity.Instance;

import com.l2dc.gameserver.model.quest.Quest;

import com.l2dc.gameserver.model.quest.QuestState;

import com.l2dc.gameserver.network.serverpackets.SystemMessage;

 

public class Kamaloka extends Quest

{

public Kamaloka(int questId, String name, String descr)

{

super(questId, name, descr);

}

 

class teleCoord

{

int instanceId;

int x;

int y;

int z;

}

 

public teleCoord newCoord(int x, int y, int z)

{

teleCoord tele = new teleCoord();

tele.x = x;

tele.y = y;

tele.z = z;

return tele;

}

 

public class KamaParam

{

public String qn = "";

public String Template = "";

public int PartySize = 6;

public int Npc = 0;

public int Mob = 0;

public int Minion = 0;

public int dataIndex = 0;

public int ClientId = 0;

public teleCoord enterCoord = null;

public teleCoord retCoord = null;

public int Level = 0;

}

 

protected class KamaPlayer

{

public int playerId    = 0;

public int instance = 0;

public long timeStamp = 0;

public int points = 0;

public int count = 0;

public int reward = 0;

public boolean  rewarded = false;

}

 

protected class KamaWorld extends InstanceWorld

{

public FastMap<String, KamaPlayer> KamalokaPlayers = new FastMap<String, KamaPlayer>();

public KamaParam param = new KamaParam();

 

public KamaWorld()

{

InstanceManager.getInstance().super();

}

}

 

protected boolean isPartySizeOk(L2PcInstance player, KamaParam param)

{

boolean retval = true;

int members = player.getParty().getMemberCount();

if (members > param.PartySize)

retval = false;

return retval;

}

 

protected boolean isWithinLevel(L2PcInstance player, KamaParam param)

{

boolean retval = true;

if ((player.getLevel() > param.Level+5) || (player.getLevel() < param.Level-5))

retval = false;

return retval;

}

 

protected boolean checkPrimaryConditions(L2PcInstance player, KamaParam param)

{

boolean retval = true;

if (player.getParty() == null)

{

player.sendPacket(SystemMessage.sendString("You are not currently in a party, so you cannot enter."));

retval = false;

}

else if (!isPartySizeOk(player, param))

{

player.sendPacket(SystemMessage.sendString("You cannot enter due to the party having exceeded the limit."));

retval = false;

}

else if (!isWithinLevel(player, param))

{

player.sendPacket(SystemMessage.sendString("You do not meet the level requirement."));

retval = false;

}

return retval;

}

 

protected boolean checkNewInstanceConditions(L2PcInstance player, KamaParam param)

{

int playerOID = player.getObjectId();

L2Party party = player.getParty();

boolean retval = true;

if (party == null)

{

return false;

}

else if (System.currentTimeMillis() < InstanceManager.getInstance().getInstanceTime(playerOID, param.ClientId))

{

player.sendPacket(SystemMessage.sendString("You can't enter in kamaloka."));

return false;

}

else if (!party.isLeader(player))

{

player.sendPacket(SystemMessage.sendString("Only a party leader can try to enter."));

return false;

}

 

for (L2PcInstance partyMember : party.getPartyMembers())

{

if (!isWithinLevel(partyMember, param))

{

SystemMessage sm = new SystemMessage(2101);

sm.addCharName(partyMember);

player.sendPacket(sm);

return false;

}

else if (!partyMember.isInsideRadius(player, 500, false, false))

{

SystemMessage sm = new SystemMessage(2101);

sm.addCharName(partyMember);

player.sendPacket(sm);

return false;

}

else if (System.currentTimeMillis() < InstanceManager.getInstance().getInstanceTime(partyMember.getObjectId(), param.ClientId))

{

SystemMessage sm = new SystemMessage(2100);

sm.addCharName(partyMember);

player.sendPacket(sm);

return false;

}

}

return retval;

}

 

private void teleportplayer(L2PcInstance player, L2Npc entryNpc, teleCoord teleto, KamaParam param)

{

int instanceId = teleto.instanceId;

Instance instanceObj = InstanceManager.getInstance().getInstance(instanceId);

player.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);

                player.setInstanceId(instanceId);

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

if (param.retCoord != null)

instanceObj.setReturnTeleport(param.retCoord.x, param.retCoord.y, param.retCoord.z);

return;

}

 

protected void exitInstance(L2PcInstance player, teleCoord tele)

{

player.setInstanceId(0);

                player.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);

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

player.setKamalokaId(0);

}

 

public String onAdvEventTo(String event, L2Npc npc, L2PcInstance player)

{

return event;

}

 

private int findInstance(L2PcInstance player)

{

int instanceId = player.getInstanceId();

L2Party party = player.getParty();

if (party != null)

{

if (instanceId == 0)

{

// player outside Kamaloka, search if was inside before

for (L2PcInstance partyMember : party.getPartyMembers())

{

if (partyMember.getInstanceId() != 0)

{

instanceId = partyMember.getInstanceId();

break;

}

}

}

}

return instanceId;

}

 

public String onTalkTo(L2Npc npc, L2PcInstance player, KamaParam param)

{

if (!checkPrimaryConditions(player, param))

return "";

int instanceId = findInstance(player);

// instanceId is 0 for first time or instanceId of a party member

String playerName = player.getName();

KamaWorld world = null;

if (instanceId == 0)

{

// brand new instance

if (!checkNewInstanceConditions(player, param))

return "";

QuestState st = player.getQuestState(param.qn);

if (st == null)

st = newQuestState(player);

instanceId = InstanceManager.getInstance().createDynamicInstance(param.Template);

 

world = new KamaWorld();

world.instanceId = instanceId;

world.templateId = param.ClientId;

world.param = param;

 

L2Party party = player.getParty();

for (L2PcInstance partyMember : party.getPartyMembers())

{

KamaPlayer kp = new KamaPlayer();

kp.instance = instanceId;

kp.playerId = partyMember.getObjectId();

world.KamalokaPlayers.put(partyMember.getName(), kp);

partyMember.removeActiveBuffForKama();

teleCoord teleto = param.enterCoord;

teleto.instanceId = instanceId;

teleportplayer(partyMember, npc, teleto, param);

partyMember.setKamalokaId(instanceId);

}

 

InstanceManager.getInstance().addWorld(world);

 

_log.info("Started " + param.Template + " Instance: " + instanceId + " created by player: " + player.getName());

}

else

{

// party already in kamaloka

InstanceWorld tmpworld = InstanceManager.getInstance().getWorld(instanceId);

KamaPlayer kp = null;

if (tmpworld instanceof KamaWorld)

{

world = (KamaWorld) tmpworld;

kp = world.KamalokaPlayers.get(playerName);

// now if kp is not null we are sure that players was in party at kamaloka start time

if (kp == null)

{

player.sendPacket(SystemMessage.sendString("You can't join a Party during Kamaloka."));

_log.info(param.qn + ": onTalk - player not found in world, id: " + instanceId);

return "";

}

Instance instanceObj = InstanceManager.getInstance().getInstance(instanceId);

if (instanceObj.getCountPlayers()>=param.PartySize)

{

player.sendPacket(new SystemMessage(2102));

return "";

}

teleCoord teleto = param.enterCoord;

teleto.instanceId = instanceId;

teleportplayer(player, npc, teleto, param);

}

else

{

player.sendPacket(SystemMessage.sendString("Your Party Members are in another Instance."));

_log.info(param.qn + ": onTalk - world not found, id: " + instanceId);

return "";

}

}

return "";

}

 

public String onKillTo(L2Npc npc, L2PcInstance player, boolean isPet, KamaParam param)

{

if (npc.getNpcId() == param.Mob)

{

InstanceWorld tmpworld = InstanceManager.getInstance().getWorld(npc.getInstanceId());

if (tmpworld instanceof KamaWorld)

{

KamaWorld world = (KamaWorld) tmpworld;

for (KamaPlayer partyMember : world.KamalokaPlayers.values())

InstanceManager.getInstance().setInstanceTime(partyMember.playerId, param.ClientId, ((System.currentTimeMillis() + 86400000)));

    Instance instanceObj = InstanceManager.getInstance().getInstance(world.instanceId);

    instanceObj.setDuration(300000);

}

}

    return "";

}

}

 

 

 

ty gia to help

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Wtb full account or items on l2 warland 
    • https://discord.gg/k53SZ4DM5z   Interlude Client L2Old Pride is a L2 Pride Interlude Based All functional skills (Not archer/mage server)   L2Old Pride Helper (Works like Woundrous Cubic) https://imgur.com/iYqmHQY Farm Zones: Cave of Trials and Elven Ruins (Chaotic) Olympiads: Every 15 days Various Cosmetic Items https://imgur.com/uoeU6Jw https://imgur.com/oCS2Zed PvP Zone: Gludin Village (No-Parties, Disguised) More than 100 new Skills https://imgur.com/6RaPsQV Max Level: 90 https://imgur.com/z4QVJKZ Gaining Xp by PVP https://imgur.com/LRqI31T Purchasable S-grade items +10 or +20 with random chance to enchant +5 Purchasable Custom Items Depends on Tier Mysterious Merchants https://imgur.com/2ZwWyPH Auto Enchant Via PvPing (with low chance) Custom Raid Bosses Siege Every Weekend (Aden, Rune, Giran) Autofarm / Drop Tracker https://imgur.com/Vz3rha6   RATES: • Start Level 80 • Max level 90  • EXP: 5000x • SP: 5000x • ADENA 6000x   ENCHANT: • Maximum enchant S Grade Items: +35. • Maximum enchant Unique/Epic Items: +25. • Maximum enchant Legendary Items: +18. • Maximum enchant Relic Items: +14. •Descriptions for rate at scrolls!   EVENTS: • TEAMS vs TEAMS • CAPTURE THE FLAG • DOMINATION • DEATH MATCH • DICE OF DEATH • CHAOTIC ZONE   OTHERS: Assistance system in pvps. Where support classes are enabled to receive pvp with a low chance, for supporting a party member during pvp. •  /sit to regen HP/MP/CP • Custom Shots Glows https://imgur.com/FLK0DmR • Achievements System • Daily Tasks System • Monthly Tasks System   CUSTOM ARMORS SETS Dread Armor/Titanium Armor Pride Armor Rykros Armor https://imgur.com/SPxoQp1   CUSTOM WEAPONS SETS Unique Weapons Pride Weapons Legendary Weapons Relic Weapons https://imgur.com/kOHNXhS   CUSTOM ACCESSORIES Standard Superior Legendary https://imgur.com/zPqNiiX   CUSTOM JEWELS/TATTOO Legendary Nightmarish https://imgur.com/gcqS28P There are many more features that you will only understand by playing and following. Beta testing server is currently open. Follow us on our discord and join our server to test it.
    • You shouldn't use rev 382, not sure why everyone keep using that.   I don't make changesets for fun, I don't make new revisions for nothing.   Follow the revisions.
    • Your issue isn't related to geoengine at all (as always), rev 410 got improved water movement management.
  • Topics

×
×
  • Create New...

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