Jump to content

SycoraX

Members
  • Posts

    13
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About SycoraX

Profile Information

  • Current Mood
    Playful
  • Gender
    Male
  • Country
    Argentina
  • Location
    Imperial Tomb

SycoraX's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. If you Remember, give me the post or the solution! Thank you SweeTs
  2. Hi guys i have a bug. When i target a mob and click "attack", the pet hit only one time, and does nothing. I press "attack" again and nothing. Any suggestion? thank you.
  3. Thank you, Reborn12 i will test it. I tell you a question, do you have a link with functional vote reward system?
  4. Hi guys can any help me to set olympiad period to 2 weeks? Thank you!
  5. Thank you, now works. I had deleted the zone id, and changed the ZoneType from BossZone, to FlagZone. Thank for your support Acces Denied, i must you a beer. ;D
  6. Hi guys i have this problem now: When i try teleport to baium, antharas, valakas nothing happen. And the console say: net.sf.l2j.gameserver.scripting.scripts.teleports.GrandBossTeleporters null java.lang.NullPointerException at net.sf.l2j.gameserver.scripting.scripts.teleports.GrandBossTeleporter s.onAdvEvent(GrandBossTeleporters.java:108) at net.sf.l2j.gameserver.scripting.Quest.notifyEvent(Quest.java:975) at net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.processQuestE vent(L2PcInstance.java:1145) at net.sf.l2j.gameserver.network.clientpackets.RequestBypassToServer.run Impl(RequestBypassToServer.java:162) at net.sf.l2j.gameserver.network.clientpackets.L2GameClientPacket.run(L2 GameClientPacket.java:63) at net.sf.l2j.gameserver.network.L2GameClient.run(L2GameClient.java:767) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) Any can help?
  7. Hi, Absolutepower, thank you so much, it works fine :). But this is for the closestTownName, i need zone name. For example: Solina Brother in Monastery of Silence, yes its obvious, but is for newbies.
  8. Hi guys, i need your help. I have this event: ### Eclipse Workspace Patch 1.0 Index: java/net/sf/l2j/gameserver/model/KillTheMobEvent.java =================================================================== --- java/net/sf/l2j/gameserver/model/KillTheMobEvent.java (revision 0) +++ java/net/sf/l2j/gameserver/model/KillTheMobEvent.java (working copy) @@ -0,0 +1,84 @@ +/* + * This program is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see <http://www.gnu.org/licenses/>. + */ +package net.sf.l2j.gameserver.model; + +import net.sf.l2j.Config; +import net.sf.l2j.gameserver.ThreadPoolManager; +import net.sf.l2j.gameserver.datatables.NpcTable; +import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; +import net.sf.l2j.gameserver.model.actor.template.NpcTemplate; +import net.sf.l2j.gameserver.util.Broadcast; +import net.sf.l2j.util.Rnd; + +/** + * @author Bluur + * @version 1.1 + * + */ +public class KillTheMobEvent +{ + private static boolean eventEnabled = false; + private static int mobSelected; + + protected static void start() + { + mobSelected = Config.KILL_THE_MOB_MOB_IDS[Rnd.get(Config.KILL_THE_MOB_MOB_IDS.length)]; + NpcTemplate mob = NpcTable.getInstance().getTemplate(mobSelected); + + if (mob == null) + { + System.out.println("[Kill The Mob]: ID incorreto, evento cancelado..."); + return; + } + + eventEnabled = true; + + Broadcast.announceToOnlinePlayers("[Kill The Mob]: The event was started!", true); + Broadcast.announceToOnlinePlayers("[Kill The Mob]: Search and kill the " + mob.getName(), true); + + sleep(Config.KILL_THE_MOB_DURATION_EVENT); //event time + eventEnabled = false; + Broadcast.announceToOnlinePlayers("[Kill The Mob]: The event is over!", true); + } + + public static void checkerToReward(int id, L2PcInstance player) + { + if (id == mobSelected && player.getLevel() >= Config.KILL_THE_MOB_MIN_LEVEL && player.getLevel() <= Config.KILL_THE_MOB_MAX_LEVEL) + player.addItem("", Config.KILL_THE_MOB_REWARD_ID, Config.KILL_THE_MOB_REWARD_COUNT, player, true); + } + + public static int getMobSelected() + { + return mobSelected; + } + + public static boolean isEventEnabled() + { + return eventEnabled; + } + + public static void init() + { + ThreadPoolManager.getInstance().scheduleEffectAtFixedRate(new Runnable() + { + @Override + public void run() + { + start(); + } + }, Config.KILL_THE_MOB_INTERVAL_EVENT*1000*60, Config.KILL_THE_MOB_INTERVAL_EVENT*1000*60); + } + + private static void sleep(int value) + { + try + { + Thread.sleep(value * 1000 * 60); + } + catch (InterruptedException e) + { + e.printStackTrace(); + } + } +} I want add zone name in this line: Broadcast.announceToOnlinePlayers("[Kill The Mob]: Search and kill the " + mob.getName() + (localization), true); i try with this; but nothing happened. addZoneName(getX(), getY(), getZ());
  9. Hi guys i have a problem with respawn_time for grandbosses. For example, when i kill a Grand Boss, their status goes from 0 to 1, and the respective respawn_time. The problem is when status goes from 1 to 0, the respawn_time don't goes to 0. ps: The GrandBoss spawn with no problem, but i have a npc for raid/grand bosses status, when the status of grand boss change from 1 to 0 starts take off time (The GrandBss spawn with no problem). I use l2jaCis rev 350 Sorry for my english. Regards
×
×
  • Create New...