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

[gesior acc] Action of inactive characters

Bilip

New Member
Joined
Apr 15, 2009
Messages
41
Reaction score
0
It's about auction (or just buy for fixed price) characters which are inactive (not logged in) for one month or more!
I'm pretty sure I saw this in this forum but now I can't find it.
Thanks!
 
Last edited:
Bump!
Guys anybody?!
I know I saw it here!
If no auction, anything similar like: sell all best characters for 50 pts or ect.
 
In MySQL:
Code:
CREATE TABLE `characters_auctions` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`state` TINYINT( 1 ) NOT NULL DEFAULT '0' ,
`finish_time` INT NOT NULL ,
`char_id` INT NOT NULL ,
`buy_now` INT NOT NULL ,
`bid` INT NOT NULL ,
`bidder` INT NOT NULL ,
INDEX ( `finish_time` ));

php
http://pastebin.com/x2vJ4GZ8
if u use coins need change getPremiumPoints to getCoins and setPremiumPoints to setCoins
 
Back
Top