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

[SOLVED] Where/How can I edit skills of players?

dizoxur

New Member
Joined
Feb 27, 2009
Messages
54
Reaction score
0
I'm just wondering, where can I edit them? Will give rep!
 
Last edited:
Just click in your Database on the table 'players'

then click at the top on SQL and execute this.

Code:
SELECT * FROM `players` WHERE NAME = "CHARACTERNAME"

example Paladin Sample.

Then you will get this

asdkn.png


Just remember his 'id'

and click table 'player_skills'

click on the top again SQL and execute this

Code:
SELECT * FROM `player_skills` WHERE PLAYER_ID = "YOURPLAYERID"

Then you should get this

asdasap.png


just edit them then ;)

1. Fist
2. Club
3. Sword
4. Axe
5. Shielding
6. Distance
7. Fishing


Rep++ if i helped you :D

//Cazar
 
all in 1 query:
PHP:
SELECT * FROM `player_skills` WHERE `player_id` = (SELECT `id` FROM `players` WHERE `name` = "Player Name")
 
Back
Top