povis111 Posted September 14, 2013 Posted September 14, 2013 Hey guys, i'm going to share Grand Boss Info Manager... for aCis. Tested and works on rev. 290.The link:http://www68.zippyshare.com/v/97642276/file.htmlInstall:1. put BossRespawn folder into scripts/custom/2. add into scripts.cfg file custom/BossRespawn/BossRespawn.java 3. Change NPC_ID=30951; in BossRespawn.java into any npc id you want, just keep in mind that npc's type must be L2NpcInstance. 4. Credits to BigBoss and Dleogr.Remade to work by povis111.
Trance Posted September 14, 2013 Posted September 14, 2013 It's the same crap, you didn't change anything.
povis111 Posted September 14, 2013 Author Posted September 14, 2013 It's the same crap, you didn't change anything. What do you mean by 'anything', yes, i only changed imports and textbuilder > stringbuilder. But i still changed something... Btw, i was asked to do this and thought some more people would need it ;)
xTakegawa Posted November 30, 2014 Posted November 30, 2014 i have this error but npc is working 1. WARNING in \BossRespawn.java (at line 57) long delay = GrandBossManager.getInstance().getStatsSet(boss).getLong("r espawn_time"); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The static method getStatsSet(int) from the type GrandBossManager should be acce ssed in a static way
povis111 Posted November 30, 2014 Author Posted November 30, 2014 i have this error but npc is working 1. WARNING in \BossRespawn.java (at line 57) long delay = GrandBossManager.getInstance().getStatsSet(boss).getLong("r espawn_time"); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The static method getStatsSet(int) from the type GrandBossManager should be acce ssed in a static way It says that the getStatsSet(int) is a static void and static voids don't need new instances so.. this long delay = GrandBossManager.getInstance().getStatsSet(boss).getLong("respawn_time"); to this long delay = GrandBossManager.getStatsSet(boss).getLong("respawn_time");
T9Text Posted July 22, 2015 Posted July 22, 2015 have problem, i do like post, and show it Change it to L2NpcInstance..... not L2NpcInstaneInstance -.-
netoluan Posted July 22, 2015 Posted July 22, 2015 (edited) Change it to L2NpcInstance..... not L2NpcInstaneInstance -.- i don't write L2NpcInstaneInstance i wrote: Edited July 22, 2015 by netoluan
Nik Posted July 22, 2015 Posted July 22, 2015 Just L2Npc... when its loaded, the server automatically appends Instance. Thats why you get L2NpcInstanceInstance
T9Text Posted July 22, 2015 Posted July 22, 2015 change to L2Npc -.- rly... you have type="L2NpcIntance" ?
netoluan Posted July 22, 2015 Posted July 22, 2015 but i have a "npc service" and the type is too L2NPC, how i can change it, how i can change the type? because i want use the two npc,
Recommended Posts