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

[SQL] query needed

Yaze

Well-Known Member
Joined
Sep 15, 2014
Messages
382
Reaction score
61
Hello dear otland, i need a sql query

that will update all players with
voc 1 heatlh 100 healthmax 100, manamax 100,manamax 100
voc 2 heatlh 200 healthmax 200, manamax 200,manamax 200
voc 3 heatlh 300 healthmax 300, manamax 200,manamax 300
voc 4 heatlh 400 healthmax 400, manamax 200,manamax 400



thanks

Kind Regards,


Ohyeah - http://www.xanteria.net
 
Code:
update players set health = vocation * 100, healthmax = health, mana = health, manamax = health where vocation > 0 and vocation < 5
 
Back
Top