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

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.



  • Posts

    • Discord         :  utchiha_market Telegram        : https://t.me/utchiha_market  
    • Trust is built on experience. We share feedback from our users collected on external resources.     👉 Official website: https://vibesms.com 📢 Telegram channel: https://t.me/vibe_sms  
    • 我们已更新当前产品信息并重新设计了主题 — 欢迎访问,抢先了解我们项目的新产品与新服务! 相关链接: 数字商品商店: 点击 Telegram 机器人: 点击 SMM 面板: 点击 我们的项目正在积极寻找新的供应商和合作伙伴! — Snapchat 旧号和新号 | 含分数 (snapscores) | 地区: 欧洲/美国 | 通过邮箱/手机号完全访问 — Reddit 老账号,发帖和评论业力值从 100 到 100,000+ | 通过邮箱完全访问 — LinkedIn 老账号,含真实人脉 | 地区: 欧洲/美国 | 通过邮箱完全访问 + 有效的双重验证密码 — Instagram 老账号 (2010–2023 年) | 通过邮箱完全访问 (可能还绑定双重验证密码) — Facebook 老账号 (2010–2023 年) | 通过邮箱完全访问 (可能还绑定双重验证密码) | 含好友或无好友 | 地区: 欧洲/美国/亚洲 — Threads 账号 | 通过邮箱完全访问 (可能还绑定双重验证密码) — TikTok/Facebook/Google ADS 代理广告账号 请通过以下联系方式与我们联系 — 一起讨论合作条款! 我们也始终欢迎其他形式的合作提案。 联系方式与支持: Telegram: https://t.me/socnet_support Telegram 频道: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord 服务器: https://discord.gg/y9AStFFsrh 邮箱: solomonbog@socnet.store 通过这些联系方式您还可以: — 获取批发采购咨询 — 建立合作伙伴关系 (现有合作伙伴: https://socnet.bgng.io/partners ) — 成为我们的供应商 SocNet — 数字商品与高级订阅商店 
    • 我们已更新当前产品信息并重新设计了主题 — 欢迎访问,抢先了解我们项目的新产品与新服务! 相关链接: 数字商品商店: 点击 Telegram 机器人: 点击 SMM 面板: 点击 我们的项目正在积极寻找新的供应商和合作伙伴! — Snapchat 旧号和新号 | 含分数 (snapscores) | 地区: 欧洲/美国 | 通过邮箱/手机号完全访问 — Reddit 老账号,发帖和评论业力值从 100 到 100,000+ | 通过邮箱完全访问 — LinkedIn 老账号,含真实人脉 | 地区: 欧洲/美国 | 通过邮箱完全访问 + 有效的双重验证密码 — Instagram 老账号 (2010–2023 年) | 通过邮箱完全访问 (可能还绑定双重验证密码) — Facebook 老账号 (2010–2023 年) | 通过邮箱完全访问 (可能还绑定双重验证密码) | 含好友或无好友 | 地区: 欧洲/美国/亚洲 — Threads 账号 | 通过邮箱完全访问 (可能还绑定双重验证密码) — TikTok/Facebook/Google ADS 代理广告账号 请通过以下联系方式与我们联系 — 一起讨论合作条款! 我们也始终欢迎其他形式的合作提案。 联系方式与支持: Telegram: https://t.me/socnet_support Telegram 频道: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord 服务器: https://discord.gg/y9AStFFsrh 邮箱: solomonbog@socnet.store 通过这些联系方式您还可以: — 获取批发采购咨询 — 建立合作伙伴关系 (现有合作伙伴: https://socnet.bgng.io/partners ) — 成为我们的供应商 SocNet — 数字商品与高级订阅商店 
    • 我们已更新当前产品信息并重新设计了主题 — 欢迎访问,抢先了解我们项目的新产品与新服务! 相关链接: 数字商品商店: 点击 Telegram 机器人: 点击 SMM 面板: 点击 我们的项目正在积极寻找新的供应商和合作伙伴! — Snapchat 旧号和新号 | 含分数 (snapscores) | 地区: 欧洲/美国 | 通过邮箱/手机号完全访问 — Reddit 老账号,发帖和评论业力值从 100 到 100,000+ | 通过邮箱完全访问 — LinkedIn 老账号,含真实人脉 | 地区: 欧洲/美国 | 通过邮箱完全访问 + 有效的双重验证密码 — Instagram 老账号 (2010–2023 年) | 通过邮箱完全访问 (可能还绑定双重验证密码) — Facebook 老账号 (2010–2023 年) | 通过邮箱完全访问 (可能还绑定双重验证密码) | 含好友或无好友 | 地区: 欧洲/美国/亚洲 — Threads 账号 | 通过邮箱完全访问 (可能还绑定双重验证密码) — TikTok/Facebook/Google ADS 代理广告账号 请通过以下联系方式与我们联系 — 一起讨论合作条款! 我们也始终欢迎其他形式的合作提案。 联系方式与支持: Telegram: https://t.me/socnet_support Telegram 频道: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord 服务器: https://discord.gg/y9AStFFsrh 邮箱: solomonbog@socnet.store 通过这些联系方式您还可以: — 获取批发采购咨询 — 建立合作伙伴关系 (现有合作伙伴: https://socnet.bgng.io/partners ) — 成为我们的供应商 SocNet — 数字商品与高级订阅商店 
  • 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