0 Üye ve 1 Ziyaretçi konuyu incelemekte.
addEventHandler("onPlayerLogin", root, function(_,hesap) -- oyuncu login olduğunda local anliksure = getRealTime().timestamp -- o anın süresini çek setAccountData(hesap, "SonGiris", anliksure) -- hesaba kaydetend)addEventHandler("onPlayerQuit", root, function() -- oyuncu çıkış yaptığında local hesap = getPlayerAccount(source) -- hesabını çek if not isGuestAccount(hesap) -- eğer guest değilse local anliksure = getRealTime().timestamp -- o anın süresini çek setAccountData(hesap, "SonGiris", anliksure) -- hesaba kaydet endend)local gun15 = 86400*15 -- 1 gün = 86400 saniye. 86400*15 setTimer(function() -- timer for i,evler in pairs(SENINEVLERTABLON) do -- evlern olduğu tabloyu döndür if SENIN_EV_TABLONUN_SAHIP_VERISI then -- eğer sahibi varsa local hesap = getAccount(SENIN_EV_TABLONUN_SAHIP_VERISI) -- eğer sahip hesabı varsa local sonGiris = getAccountData(hesap, "SonGiris") or 0 -- hesabın SonGiris verisini çek local anliksure = getRealTime().timestamp -- anlıksüreyi çek if anliksure > sonGiris+gun15 then -- eğer anlıksure sonGiris ve gun15 toplamından büyükse --ev silme işlemleri end end end end,30000,0) -- 30 saniyede bir
örnek;Kod: luaaddEventHandler("onPlayerLogin", root, function(_,hesap) -- oyuncu login olduğunda local anliksure = getRealTime().timestamp -- o anın süresini çek setAccountData(hesap, "SonGiris", anliksure) -- hesaba kaydetend)addEventHandler("onPlayerQuit", root, function() -- oyuncu çıkış yaptığında local hesap = getPlayerAccount(source) -- hesabını çek if not isGuestAccount(hesap) -- eğer guest değilse local anliksure = getRealTime().timestamp -- o anın süresini çek setAccountData(hesap, "SonGiris", anliksure) -- hesaba kaydet endend)local gun15 = 86400*15 -- 1 gün = 86400 saniye. 86400*15 setTimer(function() -- timer for i,evler in pairs(SENINEVLERTABLON) do -- evlern olduğu tabloyu döndür if SENIN_EV_TABLONUN_SAHIP_VERISI then -- eğer sahibi varsa local hesap = getAccount(SENIN_EV_TABLONUN_SAHIP_VERISI) -- eğer sahip hesabı varsa local sonGiris = getAccountData(hesap, "SonGiris") or 0 -- hesabın SonGiris verisini çek local anliksure = getRealTime().timestamp -- anlıksüreyi çek if anliksure > sonGiris+gun15 then -- eğer anlıksure sonGiris ve gun15 toplamından büyükse --ev silme işlemleri end end end end,30000,0) -- 30 saniyede bir