Jump to content

xJustMe

Members
  • Posts

    16
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by xJustMe

  1. Impossible to combine them just in xml, they have different target and skill types. But yeah, you can make it to work like you want, make a new skilltype or modify existing one.
  2. private void doClanTeleport(L2PcInstance player, int val) { L2TeleportLocation list = TeleportLocationTable.getInstance().getTemplate(val); if(!player.isClanLeader() && player.getClan() != null) { player.sendMessage("Solo El lider de Clan Puede Usar El Teleport"); return; } if(player.getClan() == null) { player.sendMessage("No Estas en un clan"); return; } for (L2PcInstance member : player.getClan().getOnlineMembers("")) { if ((member == null) || (member == player)) { continue; } if (member.isInDuel() && ((member.getDuelId() != member.getDuelId()))) { continue; } if (!member.isInsideRadius(player, 1000, false, false)) { player.sendMessage("El Jugador " + member.getName() + " Esta muy Lejos y no sera teleportado."); continue; } if (player.getClanId() == member.getClanId() && member.getLevel() >= 76 && member.getClan() != null && player.getClan() != null && member.getClanId() == player.getClanId()) { member.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ()); member.sendMessage("Entrando A una Zona De Clan"); player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ()); } else { player.sendMessage("No Cumples Los Requisitos."); return; } } } Should be like this I think. EDIT: Also, player (clan leader) teleportation is in wrong place, because he will be teleported as many times as there is online members.
  3. CharInfo.java final Player tmp = getClient().getPlayer(); if (tmp != null && tmp.isInSameParty(_player)) { writeC(1); //1 for blue circle, 2 for red circle } else { writeC((Config.PLAYER_SPAWN_PROTECTION > 0 && _player.isSpawnProtected()) ? TeamType.BLUE.getId() : _player.getTeam().getId()); } Thats atleast for acis. EDIT: Also you need to add broadcastCharInfo in Party.java on member leave, otherwise ppl will still have circles even if you leave party.
  4. Hey, link is dead, perhaps you can reupload it ? thanks
  5. Okey, I found it already. If anyone else needs it, here it is: http://www.mediafire.com/download/ww4b3u0efs58t8q/Phoenix+Event+Engine+aCis.rar
  6. Hello, maybe somebody still have the phoenix event engine for acis which was shared some time ago in download section of this forum by elfo and willing to share with me ? Thanks in advance.
  7. Now I'm waiting 2nd day, posted in few forums, no answer :-\
  8. Here is my problem: I downloaded rb status for epilogue , changed imports, tryed to start but I realised that there is no So i changed to this one Now I get this error: Please someone help me, I really need this npc for gracia final :/
×
×
  • Create New...