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

First login items!

KnightmareZ

New Member
Joined
Feb 3, 2008
Messages
607
Reaction score
4
Location
Sweden/Ljungby
Hi - please dont tell me to search to ask some friends cuz I did..

Well. My problem is I need to change items on druid,knight,paladin and sorcerer sample but it doesnt work - When I give it items and relog it disapear..

please help
rep++
 
set save to 1 of the 4 sample chars (inside the database)

Code:
UPDATE `players` SET `save` = '1' WHERE `players`.`name` = 'Knight sample' LIMIT 1 ;
UPDATE `players` SET `save` = '1' WHERE `players`.`name` = 'Rook sample' LIMIT 1 ;
UPDATE `players` SET `save` = '1' WHERE `players`.`name` = 'Sorcerer sample' LIMIT 1 ;
UPDATE `players` SET `save` = '1' WHERE `players`.`name` = 'Druid sample' LIMIT 1 ;

After that you can just set the items on them.

If your done it might be proper to set them back to save = 0 again.
Code:
UPDATE `players` SET `save` = '0' WHERE `players`.`name` = 'Knight sample' LIMIT 1 ;
UPDATE `players` SET `save` = '0' WHERE `players`.`name` = 'Rook sample' LIMIT 1 ;
UPDATE `players` SET `save` = '0' WHERE `players`.`name` = 'Sorcerer sample' LIMIT 1 ;
UPDATE `players` SET `save` = '0' WHERE `players`.`name` = 'Druid sample' LIMIT 1 ;
 
Back
Top