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

Changing Skills

Xoin

New Member
Joined
Jun 7, 2008
Messages
10
Reaction score
0
I Tried everything but i couldn't find it, where am i supposed to change the skills of the characters on a sql serv(tfs for 8.21), also i would like to know where i put to every one learn spells without having to buy them ?
 
Last edited:
There is player_id

run this in the SQL part:
PHP:
SELECT name, id FROM players;

There will come the table which will look something like this:
Player1 | 1
Player2 | 2
 
If you want to find a players skills easily with one query, run this:
PHP:
SELECT * FROM player_skills WHERE player_id = (SELECT id FROM players WHERE name = 'Xoin');
Change the name (here I used Xoin) to what ever you like.
 

Similar threads

Back
Top