“attendre () dans Lua” Réponses codées

Fonction d'attente Lua

function wait(seconds)
    local start = os.time()
    repeat until os.time() > start + seconds
end
--Exactly the same as the roblox one!
Tes

Fonction d'attente reconstruite dans Lua

function wait(seconds)
  local start = os.time()
  repeat until os.time() > start + seconds
end

-- This is the wait function (mostly known from roblox)
-- It works exactly like the roblox version
-- It's used like this: wait(how many seconds)
Stupid Skipper

attendre () dans Lua

wait(5)  -- Waits 5 seconds then prints "Hello world!"
print("Hello world!")
Sticky

attendre () dans Lua

--this is a example of wait

print("gonna wait some seconds so i can talk again")
wait(2) --wait 2 sec
print("now can i say something")
dl.idiot..

Réponses similaires à “attendre () dans Lua”

Questions similaires à “attendre () dans Lua”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code