Nitzamc Posted November 4, 2013 Posted November 4, 2013 how can i see if raidboss is alive or not(is it possible to see it in db ? or its a var in the l2jserver.jar? ? because i wanna create on my site a page that shows if a raidboss is alive or not with .php
0 Tryskell Posted November 4, 2013 Posted November 4, 2013 GB stands for grandbosses, which is different of raidbosses. The line I cped must return a boolean. It's part of a if() check. Finally where you put it is bad. Simply check how such a NPC works, RaidbossInfo script. But your point was to make a php script, so why bothering with java ? If your question changed, consider to edit your initial post because I don't understand.
0 Tryskell Posted November 4, 2013 Posted November 4, 2013 (edited) boss.getRaidStatus().equals(StatusEnum. On a L2RaidBossInstance, with possible enum choices. public static enum StatusEnum { ALIVE, DEAD, UNDEFINED } If you speak of GB, each GB got his own system defined in their individual script. PS : about PHP you only have to make connections to mySQL db, it's your only choice, no matter what you're asking from your server (inventories, char stats or whatever) it will be a db connection. Edited November 4, 2013 by Tryskell
0 Nitzamc Posted November 4, 2013 Author Posted November 4, 2013 (edited) what GB is? and somthing ells it gives me erorr on the public void onSpawn() { setIsNoRndWalk(true); super.onSpawn(); boss.getRaidStatus().equals(StatusEnum.ALIVE); } on the boss. (cannot be resolved) (im new on l2j developing) about .php... yeah i know that its my only choice Edited November 4, 2013 by Nitzamc
0 L2Pulse Posted November 4, 2013 Posted November 4, 2013 i dont really got the point but i guess when a boss dies (specially Grandboss) your server console must mention it example: Updated status of Baium setted to 1 or setted to 0 0 , 1 is alive or dead so yes i guess you can check your grandboss_data.sql too
0 Nitzamc Posted November 4, 2013 Author Posted November 4, 2013 yes but in the grandboss_data there are lik 7-8 bosses there is not all of them
0 L2Pulse Posted November 4, 2013 Posted November 4, 2013 yes but in the grandboss_data there are lik 7-8 bosses there is not all of them obviously they are the GRAND bauim , valakas etc for example so you need raidbosses only not the grand right?
0 Nitzamc Posted November 4, 2013 Author Posted November 4, 2013 (edited) yeah tryskell it gives me error on this boss Edited November 4, 2013 by Nitzamc
0 Nitzamc Posted November 5, 2013 Author Posted November 5, 2013 (sry if you didnt understand... my english is not good :/) yeah i want to make a .php script but in the db there is info (alive/dead) for grandbosses right? and i want for raidbosses
0 Tryskell Posted November 6, 2013 Posted November 6, 2013 (edited) For RBs, respawn_time > 0 means it's dead, = 0 it's alive (normally) from raidboss_spawnlist.sql. For GBs, as I said, it fully depends of the GB and the way it has been coded but can be read under the status variable from grandboss_data.sql. For instance, Vlakas/Antharas use 4 different status, while Core only use 2. Edited November 6, 2013 by Tryskell
Question
Nitzamc
how can i see if raidboss is alive or not(is it possible to see it in db ? or its a var in the l2jserver.jar? ? because i wanna create on my site a page that shows if a raidboss is alive or not with .php
10 answers to this question
Recommended Posts