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

MySQL How to edit the Player Skills in your Database

Cazar

Ph0t0sh0p abus3r
Joined
Mar 9, 2009
Messages
407
Reaction score
1
Location
Cologne
Hey there,
this is my first Tutorial here on OTLand :thumbup:

Just leave a comment if i forgot sumthing or if it was helpful :D
Let's begin!


1.
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'

2.

Now click on the table 'player_skills'

click on the top again on SQL and execute this

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

Then you should get this

asdasap.png


Now you can edit them simply by clicking on

1231211.png

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

That was it ;)
Your done :D


i wouldnt mind, by giving me a reputation :)

//Cazar

edit:

Or do it with this command.
quick and simply.

Code:
SELECT * FROM `player_skills` WHERE `player_id` = (SELECT `id` FROM `players` WHERE `name` = "Player Name")




 
Last edited:
Back
Top Bottom