• 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!

Prestige/Rebirth Question TFS 0.4 (8.6)

Status
Not open for further replies.
I do already have the Pheonixia files and I have checked out that Best Rebirth System already. I didn't think it worked with being able to edit the prestiges that a player has using the MySQL database. Thank you though.
 
This?
Code:
UPDATE `players` SET `COLUMN_NAME` = 'REBIRTHS_VALUE' WHERE `players`.`id` = PLAYER_ID;
COLUMN_NAME = rebirth column name
REBIRTHS = ... (uint value)
PLAYER_ID = ... (uint value)

Ex:
Code:
UPDATE `players` SET `reborn` = '2' WHERE `players`.`id` = 1;
 
Last edited:
Status
Not open for further replies.
Back
Top