Jump to content


Tazkazz's Content

There have been 3 items by Tazkazz (Search limited from 29-March 23)


By content type

See this member's

Sort by                Order  

#263925 'For' limit must be a number

Posted by Tazkazz on 22 January 2017 - 06:35 PM in Ask a Pro

I'd suggest changing
--Place turtle in rightmost position 1, 1, 1
--Declare dimensions
tArgs={...}
tVar={x, z}
for i=1, 2 do
tVar[i]=tonumber(tArgs[i])
end
to
--Place turtle in rightmost position 1, 1, 1
--Declare dimensions
tArgs={...}
x = tonumber(tArgs[1])
z = tonumber(tArgs[2])



#263730 Chat system

Posted by Tazkazz on 16 January 2017 - 02:45 PM in Ask a Pro

View Postshadowcode, on 16 January 2017 - 12:05 PM, said:

funny...
There's nothing funny, nobody's laughing. We are here to help you, but we really do not know, what you not know - whether how to send renet messages or how to write a program.



#262694 CCFormat - A simple way to format your current computer

Posted by Tazkazz on 13 December 2016 - 08:25 PM in APIs and Utilities

 Sewbacca, on 06 December 2016 - 03:59 PM, said:

For loops are very important in Lua.

In every programming language. *