Hello
I would like to make a script for my website to display whether a player have completed Annihilator Quest (CID: 100), however, I am a bit lost.
What I've come up with so far is:
However, this gives a SQL syntax error and also I don't know how to display whether the player completed Annihilator or NOT.
Anybody able to help?
Using Nicaw ACC for Avesta
I would like to make a script for my website to display whether a player have completed Annihilator Quest (CID: 100), however, I am a bit lost.
What I've come up with so far is:
Code:
<?php
$data = mysql_query("SELECT * FROM player_storage WHERE key = 100")
or die(mysql_error());
$info = mysql_fetch_array( $data );
$data2 = mysql_query("SELECT name FROM player_storage WHERE id = ".$info['player_id']." ")
or die(mysql_error());
$info2 = mysql_fetch_array( $data2 );
?>
However, this gives a SQL syntax error and also I don't know how to display whether the player completed Annihilator or NOT.
Anybody able to help?
Using Nicaw ACC for Avesta
Last edited: