Search found 5 matches

by arthurgps2
Mon Jan 14, 2019 8:02 pm
Forum: Support and Development
Topic: How to make a function wait X amount time?
Replies: 17
Views: 15011

Re: How to make a function wait X amount time?

-snip- Don't worry you are not alone, it has happened many times before... People that don't bother at all about reading the date of the post. PS: No one insulted you nor called you a 4 year old kid or anything like that... so you shouldn't do it either, just laugh it up, you made a mistake, it's f...
by arthurgps2
Sun Jan 13, 2019 10:21 pm
Forum: Support and Development
Topic: How can I make a loading screen?
Replies: 11
Views: 7359

How can I make a loading screen?

So I would like to make a loading screen for my project at the startup, instead of that white screen. I've looked through this forum, but I couldn't find a very clear solution. I want an image written "Loading" to appear while other stuff is loading. Oh, and please explain every part of th...
by arthurgps2
Wed Feb 01, 2017 9:13 pm
Forum: Support and Development
Topic: How to make a function wait X amount time?
Replies: 17
Views: 15011

Re: How to make a function wait X amount time?

zorg wrote:
arthurgps2 wrote:...
Congratulations for bumping a 4 year old thread with an unformatted whatever that was unneeded, this may be a record.
I joined the forum yesterday,so don't judge me,also i think you're talking with a mirror,because the only 4 years old here is you
by arthurgps2
Tue Jan 31, 2017 9:49 pm
Forum: General
Topic: How do i wait until a certain condiction is given?
Replies: 4
Views: 7416

How do i wait until a certain condiction is given?

I've tried

timer=require'hump.timer'

timer.script(function(wait)
repeat
wait(0)
until condiction
end)

but it didn't worked. Please help me!
by arthurgps2
Tue Jan 31, 2017 9:46 pm
Forum: Support and Development
Topic: How to make a function wait X amount time?
Replies: 17
Views: 15011

Re: How to make a function wait X amount time?

Well,i use [hump.timer] for it,there's a lot of ways to a function wait a x amount of time. I'm gonna show you two of them First way timer=require'hump.timer' timer.after(x,function() --Action end) Second way timer=require'hump.timer' timer.script(function(wait) wait(x) --Action end) So thats it,hop...