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

New accounts get x premiumdays

Sebastian Ching

New Member
Joined
Dec 26, 2007
Messages
314
Reaction score
4
Location
Rio grande, rs, Brazil
Hi, i wanna all new accounts get x premiumdays, i know that in config.php we can edit that, but for me isnt working.

$config['site']['newaccount_premdays'] = 3; // how many days receive new account
i dunno why isnot working, please someone help me
:p

thanks
 
Lua:
function onLogin(cid)
	if (getPlayerLastLoginSaved(cid) <= 0) then
		doPlayerAddPremiumDays(cid, 3)
	end
	return true
end
 
In createaccount.php

PHP:
                if($config['site']['newaccount_premdays'])
                {
                        $reg_account->setCustomField("premdays", $config['site']['newaccount_premdays']);
                        $reg_account->setCustomField("lastpremdays", time() + ($config['site']['newaccount_premdays'] * 24 * 60 * 60));
                }
 
I forgot to mention, add it under

Code:
$reg_account->setCustomField("lastday", time());
 
Back
Top