Tamira Posted August 21, 2020 Posted August 21, 2020 package handlers.voicedcommandhandlers; import java.text.SimpleDateFormat; import java.util.Date; import java.util.logging.Logger; import com.l2jserver.gameserver.datatables.NpcTable; import com.l2jserver.gameserver.handler.IVoicedCommandHandler; import com.l2jserver.gameserver.instancemanager.GrandBossManager; import com.l2jserver.gameserver.model.StatsSet; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.instancemanager.RaidBossSpawnManager; public class RaidBoosStatus implements IVoicedCommandHandler { static final Logger _log = Logger.getLogger(RaidBoosStatus.class.getName()); private static final String[] _voicedCommands = { "grandboss", "raidboss" }; @Override public boolean useVoicedCommand(String command, L2PcInstance activeChar, String params) { if (command.startsWith("grandboss")) { return Status(activeChar); } if (command.startsWith("raidboss")) { return Statusboss(activeChar); } else { return false; } } public boolean Status(L2PcInstance activeChar) { int[] BOSSES = { 29001, 29006, 29014, 29019, 29020, 29022, 29028, 29062, 29065, 29118, 29045, 29099, 29163, 29186, 29177 }; SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss"); activeChar.sendMessage("==========<Grand Bosses>=========="); for (int boss : BOSSES) { String name = NpcTable.getInstance().getTemplate(boss).getName(); StatsSet stats = GrandBossManager.getInstance().getStatsSet(boss); if (stats == null) { activeChar.sendMessage("Stats for GrandBoss " + boss + " not found!"); continue; } if (boss == 29019) { long dmax = 0; for (int i = 29066; i <= 29068; i++) { StatsSet s = GrandBossManager.getInstance().getStatsSet(i); if (s == null) continue; long d = s.getLong("respawn_time"); if (d >= dmax) { dmax = d; stats = s; } } } long delay = stats.getLong("respawn_time"); long currentTime = System.currentTimeMillis(); if (delay <= currentTime) { activeChar.sendMessage(name +" = Is Alive"); } else { activeChar.sendMessage(name +" = Is Death ( "+sdf.format(new Date(delay))+" )"); } } activeChar.sendMessage("=============================="); return true; } public boolean Statusboss(L2PcInstance activeChar) { int[] RBOSSES = { 10045, 10281 }; SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss"); activeChar.sendMessage("==========<Raid Bosses>=========="); for (int rboss : RBOSSES) { String name = NpcTable.getInstance().getTemplate(rboss).getName(); StatsSet statsr = RaidBossSpawnManager.getInstance().getStatsSet(rboss); if (statsr == null) { activeChar.sendMessage("Stats for RaidBoss " + rboss + " not found!"); continue; } long delay = statsr.getLong("respawn_time"); long currentTime = System.currentTimeMillis(); if (delay <= currentTime) { activeChar.sendMessage(name +" = Is Alive"); } else { activeChar.sendMessage(name +" = Is Death ( "+sdf.format(new Date(delay))+" )"); } } activeChar.sendMessage("=============================="); return true; } @Override public String[] getVoicedCommandList() { return _voicedCommands; } } Help PLEASE Quote
Tamira Posted August 22, 2020 Author Posted August 22, 2020 10 hours ago, Zake said: Do you get any errors in eclipse? Quote
Zake Posted August 22, 2020 Posted August 22, 2020 I didn't say console errors, i said errors in eclipse Quote
Tamira Posted August 23, 2020 Author Posted August 23, 2020 21 hours ago, Zake said: I didn't say console errors, i said errors in eclipse ??? i dont use eclipse i simple edit it on Notepad and drop to the l2 server I cant understand why i get some retard errors like this.. FUCKING JAVA Quote
Zake Posted August 23, 2020 Posted August 23, 2020 13 minutes ago, Tamira said: ??? i dont use eclipse i simple edit it on Notepad and drop to the l2 server I cant understand why i get some retard errors like this.. FUCKING JAVA This error means that there is no getStatsSet method in your raidbossspawnmanager class. You should use eclipse, it's very user friendly Quote
Tamira Posted August 27, 2020 Author Posted August 27, 2020 On 8/23/2020 at 4:33 PM, Zake said: This error means that there is no getStatsSet method in your raidbossspawnmanager class. You should use eclipse, it's very user friendly i just discovered that i dont have my server's Source.. im working on this thing for 3 years... full customized already... anyway.. i cant use Eclipse to find a way to fix this problem.. cant you help me? Quote
Rootware Posted August 27, 2020 Posted August 27, 2020 Replace StatsSet statsr = RaidBossSpawnManager.getInstance().getStatsSet(rboss); to StatsSet statsr = RaidBossSpawnManager.getInstance().getStoredInfo().get(rboss); Quote
Zake Posted August 27, 2020 Posted August 27, 2020 6 hours ago, Tamira said: i just discovered that i dont have my server's Source.. im working on this thing for 3 years... full customized already... anyway.. i cant use Eclipse to find a way to fix this problem.. cant you help me? It's never too late, pickup a source and start from scratch Quote
Tamira Posted August 29, 2020 Author Posted August 29, 2020 On 8/27/2020 at 12:56 AM, Rootware said: Replace StatsSet statsr = RaidBossSpawnManager.getInstance().getStatsSet(rboss); to StatsSet statsr = RaidBossSpawnManager.getInstance().getStoredInfo().get(rboss); Thx for the help Its now compiling without errors But the CMD ".raidboss" its not showing the bosses.. just send this activeChar.sendMessage("==========<Raid Bosses>=========="); but nothing below it. what else shoud i do? I have the ".grandboss" working very well.. why cant this work.. im geting crazy about it!!! The worst part is that i cant see where the error is!!! On 8/27/2020 at 5:52 AM, Zake said: It's never too late, pickup a source and start from scratch "GAMING MODERATOR" stop flooding everywhere if u dont know or dont want to help. Quote
Rootware Posted August 29, 2020 Posted August 29, 2020 You need to debug your code because it's very weird what you see only one first message and have no errors. Replace String name = NpcTable.getInstance().getTemplate(rboss).getName(); to String name = NpcTable.getInstance().getTemplate(rboss).getName(); if (name == null) { activeChar.sendMessage("Npc template for ID: " + rboss + " isn't exists!"); continue; } Quote
Tamira Posted August 30, 2020 Author Posted August 30, 2020 On 8/29/2020 at 3:06 AM, Rootware said: You need to debug your code because it's very weird what you see only one first message and have no errors. Replace String name = NpcTable.getInstance().getTemplate(rboss).getName(); to String name = NpcTable.getInstance().getTemplate(rboss).getName(); if (name == null) { activeChar.sendMessage("Npc template for ID: " + rboss + " isn't exists!"); continue; } I did change it and nothing happened. i tryed other Raid Bosses ids just to check and still not showing nothing after this "activeChar.sendMessage("==========<Raid Bosses>==========");" My script is like this now.. i tryed and tryed all and it doenst work package handlers.voicedcommandhandlers; import java.text.SimpleDateFormat; import java.util.Date; import java.util.logging.Logger; import com.l2jserver.gameserver.datatables.NpcTable; import com.l2jserver.gameserver.handler.IVoicedCommandHandler; import com.l2jserver.gameserver.instancemanager.GrandBossManager; import com.l2jserver.gameserver.model.StatsSet; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.instancemanager.RaidBossSpawnManager; public class RaidBoosStatus implements IVoicedCommandHandler { static final Logger _log = Logger.getLogger(RaidBoosStatus.class.getName()); private static final String[] _voicedCommands = { "grandboss", "raidboss" }; @Override public boolean useVoicedCommand(String command, L2PcInstance activeChar, String params) { if (command.startsWith("grandboss")) { return Status(activeChar); } if (command.startsWith("raidboss")) { return Statusboss(activeChar); } else { return false; } } public boolean Status(L2PcInstance activeChar) { int[] BOSSES = { 29001, 29006, 29014, 29019, 29020, 29022, 29028, 29062, 29065, 29118, 29045, 29099, 29163, 29186, 29177 }; SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss"); activeChar.sendMessage("==========<Grand Bosses>=========="); for (int boss : BOSSES) { String name = NpcTable.getInstance().getTemplate(boss).getName(); StatsSet stats = GrandBossManager.getInstance().getStatsSet(boss); if (stats == null) { activeChar.sendMessage("Stats for GrandBoss " + boss + " not found!"); continue; } if (boss == 29019) { long dmax = 0; for (int i = 29066; i <= 29068; i++) { StatsSet s = GrandBossManager.getInstance().getStatsSet(i); if (s == null) continue; long d = s.getLong("respawn_time"); if (d >= dmax) { dmax = d; stats = s; } } } long delay = stats.getLong("respawn_time"); long currentTime = System.currentTimeMillis(); if (delay <= currentTime) { activeChar.sendMessage(name +" = Is Alive"); } else { activeChar.sendMessage(name +" = Is Death ( "+sdf.format(new Date(delay))+" )"); } } activeChar.sendMessage("=============================="); return true; } public boolean Statusboss(L2PcInstance activeChar) { int[] RBOSSES = { 18555, 25115 }; SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss"); activeChar.sendMessage("==========<Raid Bosses>=========="); for (int rboss : RBOSSES) { String namer = NpcTable.getInstance().getTemplate(rboss).getName(); if (namer == null) { activeChar.sendMessage("Npc template for ID: " + rboss + " isn't exists!"); continue; } StatsSet statsr = RaidBossSpawnManager.getInstance().getStoredInfo().get(rboss); if (statsr == null) { activeChar.sendMessage("Stats for RaidBoss " + rboss + " not found!"); continue; } long delayr = statsr.getLong("respawn_time"); long currentTime = System.currentTimeMillis(); if (delayr <= currentTime) { activeChar.sendMessage(namer +" = Is Alive"); } else { activeChar.sendMessage(namer +" = Is Death ( "+sdf.format(new Date(delayr))+" )"); } } activeChar.sendMessage("=============================="); return true; } @Override public String[] getVoicedCommandList() { return _voicedCommands; } } please, help!!!! Quote
melron Posted August 30, 2020 Posted August 30, 2020 Which one is the correct output? ==========<Raid Bosses>========== or ==========<Raid Bosses>========== ================================= ? Quote
Tamira Posted September 2, 2020 Author Posted September 2, 2020 On 8/30/2020 at 7:39 AM, melron said: This ==========<Raid Bosses>========== Quote
Rootware Posted September 3, 2020 Posted September 3, 2020 Looks like you didn't updated script in server folder and seeing old script version. The current script version even with wrong situation must showing something more than one the first line. Quote
Recommended Posts
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.