Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

If 1+1 = 2, would it wait 2?

Asked by 10 years ago

I have a script.

It's not the full one though

x = 1
wait(x+x) 

would it wait 2? Or no?

5 answers

Log in to vote
2
Answered by
KAAK82 16
10 years ago

lol...

x = 1+1
wait(x)
0
That's a way too. Roboy5857 20 — 10y
0
yup... also, was it u that Thumbs Upped this? :D KAAK82 16 — 10y
0
Yep. Roboy5857 20 — 10y
0
Please set this as the actual answer if it helped. Just click the button on the left that says, "Accept Answer". Gamenew09 180 — 10y
View all comments (2 more)
0
thnx all of u :D I had -8 now I have 0 Reputation! :D KAAK82 16 — 10y
0
And now you have -46 rep iluvmaths1123 198 — 7y
Ad
Log in to vote
0
Answered by
HexC3D 830 Moderation Voter
10 years ago

Yes it would but why not do

x = 2
wait(x)
0
I like it fancy, lol. Roboy5857 20 — 10y
0
Mk your choice, though I do love simplicity. HexC3D 830 — 10y
0
No problem with meh. Roboy5857 20 — 10y
Log in to vote
0
Answered by 10 years ago

Or

x = 1
y = 1
wait(y+x)

Put Variety.

0
Even memory inefficient :D Ekkoh 635 — 10y
Log in to vote
0
Answered by
Vividex 162
10 years ago
wait(2)

e.e and yes,

x=1
wait(x+x)

would wait 2 :-)

Log in to vote
0
Answered by 9 years ago

You can,if you make a letter mean a number you can add the letters together to make it wait that time.

Example 1:

x = 1
wait(x+x)

Waits 2 seconds. You can make any value and make it wait that much.

Example 2:

y = 10
wait(y+y)

Waits 20 seconds. Or you can add two different letters.

Example 3:

x = 3
y = 2
wait(x+y)

Waits 5 seconds.

Answer this question