• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

I want to add prem if its lower than 4 days automatic please help

moekl

Member
Joined
Aug 25, 2014
Messages
128
Reaction score
19
Location
Sweden
like the code here

<?php
if(isset($account->attrs['premend']) && $account->attrs['premend'] > time()) {
echo '<b>Premium status:</b> You have ';
$days = ceil(($account->attrs['premend'] - time())/(3600*24));
if($days <= 5) echo '<b style="color: red">';
else echo '<b>';
echo $days.'</b> day(s) left';
}
?>

i would like to put if 5 days < then addprem 500 days
 
Code:
    if getPlayerPremiumDays(cid) <= 4 then
    doPlayerAddPremiumDays(cid, 7)
    doSendMagicEffect(getCreaturePosition(cid), 6)
        doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "7 Prem days more.")
    end

insert that in data/creaturescript/login.lua
 
Back
Top