• 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 + Enforced.

dukzin

New Member
Joined
Aug 18, 2008
Messages
161
Reaction score
3
Hello.
I'm Making A Enforced Server.
So I Have Som Problems.

#Query Done.
Thanks CYBERM.

#Enforced.
Hello If Player 1 Kills Player 2. He Get Levels.
But If Player 2 Come After Player 1 Killed Him.
And Kill Player 1 He Doesn't Get Exp.

¹. Already in 'hardcore' on pvp mode.
². Experience from players is 150.

As i said, I'ts mysql.

Would Be Thankful. :D
 
Last edited:
bump+

Query to take everbody Promoted?

WHAT's WRONG:
UPDATE `players` SET `posx` = 1063 WHERE `account_id` = "9"
UPDATE `players` SET `posy` = 607 WHERE `account_id` = "9"
UPDATE `players` SET `posz` = 7 WHERE `account_id` = "9"
 
Last edited:
I'ts 7 Accounts. How Can I Set All Team Outfit, Temple Only By Account?
Something As: If Account 1 Set Outfit 1 and Temple 1
SQL:
UPDATE `players` SET `town_id` = 1, `looktype` = 10, `lookhead` = 10, `looklegs` = 10, `looktype` = 30, `lookaddons` = 0 WHERE `account_id` = 1;

And, Why can i make to dont save de chars? (MYSQL)
SQL:
UPDATE `players` SET `save` = 0 WHERE `account_id` = 1;

Query to take everbody Promoted?
SQL:
UPDATE `players` SET `promotion` = 1 WHERE `account_id` = 1;

WHAT's WRONG:
UPDATE `players` SET `posx` = 1063 WHERE `account_id` = "9"
UPDATE `players` SET `posy` = 607 WHERE `account_id` = "9"
UPDATE `players` SET `posz` = 7 WHERE `account_id` = "9"
SQL:
UPDATE `players` SET `posx` = 1063, `posy` = 607, `posz` = 7 WHERE `account_id` = 9;
 
Back
Top