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

    • Download Here: https://sitehunterus.blogspot.com/2025/12/exelo-combo-tool-v2.html VirusTotal https://www.virustotal.com/gui/file/2acd067847ee092c7986f55c9f77620d89505d1c0bda34a0ee8f55b9c2905c11?nocache=1 Visit my Blogger list to download 100% free software https://www.freetoolss.com/ https://blackhat8.blogspot.com/ https://hack-crack9.blogspot.com/ https://hackernoons.blogspot.com/ https://sharetools99.blogspot.com/
    • Care to detail why ?   L2JHellas probably got the same issue, it's inherent to L2J if you don't rework Player intentions (and solving it with a Config < 500 attack is stupid, if it works for attack it works for other types of desires), also last time I checked L2JHellas he was using my changesets to fix its own stuff (which is ok, copy-paste my knownlist system which is 10y old is fine, but don't say it will act different since it's literally the same sub-system).   About Lucera code source isn't available so it's easy to say it's better, internally you got no clue what is happening and RU forks got the "feeling" to get everything, but everything is half done, everytime I put an eye on such sources (whatever based on l2ru, they only know how to copy-paste each other).   In the other hand, you seem to use aCis since years (I think I see your name since a decade, and you still use it since you made this topic :   Be a little more appreciative about the work done, it's not only mine but my community aswell, and if you find something, consider to report rather than getting such an idiotic behavior.   I understand you're not forced to share any type of fixes, and than people tend to feel superior when they fix something than aCis didn't yet fix. The thing is, for each bug you found, I found and fixed 10x more than you.   409 is way beyond 382 in all possible ways, if you believe the versus good for you, but don't make ppl believe it's the case, because it's not. There's at least 400+ fixed issues (and that's counting 10 issues by revision, which is kinda low) and entire new systems (spawns, SCHs, pathfind, whole AI implemented, Desire system,...).
    • better than using 409... Search for L2jHellas or Lucera and you won't have any headaches.
  • 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