Jump to content
  • 0

[L2J]Raidboss Alive Or Not


Question

Posted

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

  • 0
Posted

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
Posted (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 by Tryskell
  • 0
Posted (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 by Nitzamc
  • 0
Posted

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
Posted

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
Posted

(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
Posted (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 by Tryskell
Guest
This topic is now closed to further replies.


×
×
  • Create New...