Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

and if I want to print text, how would I go about doing that on it's own separate page? The code I threw together with Lua just displays in the top left corner:

link to the pictures - http://imgur.com/a/ytPKb

the function parameters are:

print text [x y [color]]

try to type

function TIC()
 cls() -- clear screen
print('hello world',10,10,6)
end