• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Znote AAC] Last deaths

Please I need help .. is possible to create other forms of donation? because ZNote only works by paypal, I need a script to PagSeguro .. Please help me out!
 
Yea why not, not a fast script to do also I dont use PagSeguro so I wont make it, sorry
 
Can anyone help me with an error this page is generating? When I try to open it it's telling me 'Access denied for user ''@'localhost' (using password: NO)'

Thanks,
~Justin
 
I made a flexible function to fetch information from players table.

PHP:
<?php
// Select which parameters you want, this example: fetch player name and vocation from players table (based on player id).
$data = user_character_data($charid, 'name', 'vocation');

echo $data['name']; // Result: playername
echo $data['vocation'] // Result: 1 (if its a sorcerer, etc...).
?>
what about accounts? :(
 
what about accounts? :(

slightly miss leading xD
user_data = fetch stuff from accounts.

user_data($account_id, 'columns', 'you', 'want', 'from', 'accounts');
 
so? how can i fix this?
Code:
Notice: Undefined index: is_player in C:\xampp\htdocs\deaths.php on line 12

Notice: Undefined index: killed_by in C:\xampp\htdocs\deaths.php on line 13
Player	Level	Killed by
Kirito	11

i add this on user.php?
Code:
<?php
// Select which parameters you want, this example: fetch player name and vocation from players table (based on player id).
$data = user_character_data($charid, 'name', 'vocation');

echo $data['name']; // Result: playername
echo $data['vocation'] // Result: 1 (if its a sorcerer, etc...).
?>
 
so? how can i fix this?
Code:
Notice: Undefined index: is_player in C:\xampp\htdocs\deaths.php on line 12

Notice: Undefined index: killed_by in C:\xampp\htdocs\deaths.php on line 13
Player	Level	Killed by
Kirito	11

i add this on user.php?
Code:
<?php
// Select which parameters you want, this example: fetch player name and vocation from players table (based on player id).
$data = user_character_data($charid, 'name', 'vocation');

echo $data['name']; // Result: playername
echo $data['vocation'] // Result: 1 (if its a sorcerer, etc...).
?>

I think you have selected wrong TFS version in config.php
 
The script in Tfs 0.3, works it also, not show the name of Killer.

Works on creatures (ex: dead by rotworm) but not show the name of killer, in the case pvp.

Any solution?
 
The script in Tfs 0.3, works it also, not show the name of Killer.

Works on creatures (ex: dead by rotworm) but not show the name of killer, in the case pvp.

Any solution?

Znote AAC 1.4 supports latest deaths for both TFS 0.2 and 0.3 by default now. I don't think you need this script anymore unless your using an old version of Znote AAC.
 
Pff!!! It's true...! "Running Znote AAC Version: 1.3_PUBLIC."

Sorry man, Im going to download the latest version.
 
Back
Top