HannoIVJoin Date: 2011-01-18 Post Count: 390 |
I have NO scripting experience whatsoever, so I'm gonna say No support, but I'm sure that if I had even one mishap with this "while true do" fellow, I would give him the skirmish of a lifetime. |
|
|
"Agree or you can't script"
You're an idiot.
~~That awkward moment when you realize your alt got a rare gift last Christmas~~ |
|
|
I didn't want to point that out to him, Alex.
Lol. |
|
|
|
^^^ makes me laugh every time |
|
|
|
Alex, that's just to get people to view, :P. |
|
|
It's your fault if you don't save often and lose your work. ROBLOX can't fix the while true do..end thing because it's literally impossible. I mean, they can check for this:
while true do
end
But what about this:
a = true
while a do
end
Or:
while 1 == 1 do
end
Or:
while 5*2 == 10
Or even:
ILikeCookies = false
while not ILikeCookies do
end
See, it's impossible to check for. |
|
|
It's not impossible, mister! >:{ |
|
|
you obviously have no idea how to script |
|
SharksieJoin Date: 2009-10-10 Post Count: 30576 |
Learn how to while wait() do. |
|
|
Make sure there's a wait before you press run, then.
~Candy was better before! When it didn't make yer face implode!~ |
|
GiverLolJoin Date: 2010-12-20 Post Count: 810 |
I agree. |
|
|
Which is why I almost always do
while wait() do
end
Unless I need a condition, but even then
while something and wait() do
end
Works just fine.
-[::ƧѡÎḾḠΰῩ::]-[::Helper of Scripting and Writer of Wikis::]- |
|
|
No support. If you actually are a scripter you don't forget to put a wait, I just put while wait() do so I don't forget just in case. |
|
ToonUJoin Date: 2011-08-15 Post Count: 6303 |
I like the idea, doubt it'll happen though.
--[[Kevin]]--[[Join My Primary [Unlimited Inc] Today!]]-- |
|
|
pwnedu46Join Date: 2009-05-23 Post Count: 7534 |
Next time, try using
while wait() do
-- code
end
It does the same thing as
while true do
wait()
--code
end
so you won't forget the wait. |
|
pwnedu46Join Date: 2009-05-23 Post Count: 7534 |
" If you actually are a scripter you don't forget to put a wait, I just put while wait() do so I don't forget just in case."
This isn't true. Even the best scripters make simple mistakes like that. There are also cases where something like this would be useful where the infinite loop is less obvious, like an infinite recursive loop. |
|
|
Save your work regularily.
Problem solved.
"oh what if u dont" I hear you say.
Then you, sir, are a failure. |
|
|
Also, back it up on your computer.
~Candy was better before! When it didn't make yer face implode!~ |
|