Jump to content


Luca_S's Content

There have been 4 items by Luca_S (Search limited from 29-March 23)


By content type

See this member's

Sort by                Order  

#279594 Corrupt-A-Wish!

Posted by Luca_S on 07 September 2021 - 04:22 AM in Forum Games

Granted, now it's stuck forever.

I wish my vacation was longer.



#279558 Turtle min down to specified height

Posted by Luca_S on 12 December 2020 - 07:53 AM in Ask a Pro

Can you post your whole code please? Without that I'd guess that TURTLE_POSITION.y isn't updated which means the loop runs forever.



#279557 Detecting Turtle inventory information and using it

Posted by Luca_S on 12 December 2020 - 07:21 AM in Ask a Pro

View Postravensniper72, on 12 December 2020 - 12:48 AM, said:

ok well that does help me some but how would I go about comparing two slots to see if it has a specific item in it?

You can use https://tweaked.cc/m...v:getItemDetail



#279506 os.startTimer issue

Posted by Luca_S on 29 September 2020 - 10:54 AM in Ask a Pro

The timerA and timerB variables are local to the functions TimeA and TimeB respectively, so in the event loop timerA and timerB are nil and thus can never equal the complete variable. remove the local in line 2 and 5 and add

local timerA
local timerB

at the top of your program