Remélem érthető
-- define function to be called
function delayedChat ()
outputChatBox ( \"Delayed text\")
end
-- set a timer so the function is called after 1 second
setTimer ( delayedChat, 1000, 1)
Szerintem ő úgy értette, hogy a képernyőn folyamatosan számoljon vissza és mikor letelik az idő akkor csináljon valamit.
Ami neked kell az az amit előttem is említettek+
onClientRender
dxDrawText
a drawchat mutatja az időt ami kell még hogy csináljon vmit. az onClientRender azért kell, hogy ne csak egy pillanatig lásd a szöveget hanem folyamatosan. A másodpercet ami még hátra van meg egy változóval tudod megoldani aminek az értéket beállítod pl 100ra és a funkción belül(amit a setTimer funkció előhív) kivonsz belőle 1-et és ennek a változó értéket rakod be a dxDrawText szövegébe(itt használnod kell a tostring funkciót). Majd a funkcióba kell még egy feltétel ami
if valtozodneve == 0 then
és ehhez a feltételhez írod be azt a funkciót amit szeretnél elindítani mikor véget ér a számlálás.
Tipp: Használj
removeEventHandler
-t, hogy eltüntesd a szöveget mikor a számlálást véget ér.
local szam = 600
theTimer = setTimer(function()
szam = szam - 1
if szam == 0 then
outputChatBox(\"...\")
if isTimer(theTimer) then
killTimer(theTimer)
end
end
end, 100, 600)
function secondsToMinutes(seconds)
local totalSec = tonumber(seconds)
if totalSec then
local seconds = math.fmod(math.floor(totalSec), 60)
local minutes = math.fmod(math.floor(totalSec/60), 60)
if seconds and minutes then
return seconds,minutes
end
end
end
local sx,sy = guiGetScreenSize()
addEventHandler(\"onClientRender\", root, function()
local perc, mp = secondsToMinutes(szam)
dxDrawText(perc..\":\"..mp,0,sy-30,300,30)
end)
local szam = 600
theTimer = setTimer(function()
szam = szam - 1
if szam == 0 then
outputChatBox(\"...\")
if isTimer(theTimer) then
killTimer(theTimer)
end
end
end, 100, 600)
function secondsToMinutes(seconds)
local totalSec = tonumber(seconds)
if totalSec then
local seconds = math.fmod(math.floor(totalSec), 60)
local minutes = math.fmod(math.floor(totalSec/60), 60)
if seconds and minutes then
return seconds,minutes
end
end
end
local sx,sy = guiGetScreenSize()
addEventHandler(\"onClientRender\", root, function()
local perc, mp = secondsToMinutes(szam)
dxDrawText(perc..\":\"..mp,0,sy-30,300,30)
end)
a setTimer funkcióban a 2 argumentum helyén lemaradt egy 0 ;)