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

os.time

Adiko

GetOnMyHorse
Joined
Apr 25, 2009
Messages
177
Reaction score
0
Location
Poland \ Wodzisław
Mam taki problem. Chce dodac vipa do shopa i mam już prawie wszystko gotowe oprócz tego j.....go os.time. Jest tam jakieś mnożenie ale nie wiem jakie. Mógłby mi ktoś powiedziec jakie? Albo najlepiej wkleic do tego skryptu:

$buy_player_account->setCustomField('viptime', $player_viptime+$buy_offer['days']*3600*24+??????);
Skrypt na add vipa:
function doAccountAddVipTime(accountName, vipTime)
local result = db.getResult("SELECT `viptime` FROM `accounts` WHERE `name` = '" .. accountName .. "' LIMIT 1;")
if(result:getID() ~= -1) then
if(result:getDataInt("viptime") > os.time())then
timeToAdd = result:getDataInt("viptime")+vipTime
else
timeToAdd = os.time()+vipTime
end
db.executeQuery("UPDATE `accounts` SET `viptime` = " .. timeToAdd .. " WHERE `name`='" .. accountName .. "' LIMIT 1;")
result:free()
return TRUE
end
end

Z góry thx
 
Back
Top