Forum

> > CS2D > General > The.Lua.Tutorial
Forums overviewCS2D overviewGeneral overviewLog in to reply

English The.Lua.Tutorial

26 replies
Page
To the start Previous 1 2 Next To the start

old Re: The.Lua.Tutorial

KimKat
GAME BANNED Off Offline

Quote
I admire this site, now I actually learned something. The design of the website is great, who is the creator of the website? - I assume it's leegao.

I want to see more of these lua tutorials.

old Re: The.Lua.Tutorial

Lee
Moderator Off Offline

Quote
xD, yeah, it's a derivative design created by me. I'll be regularly updating with new tutorials.

They'll be much smaller than the crash course

old Re: The.Lua.Tutorial

TheLetterP
COMMUNITY BANNED Off Offline

Quote
leegao has written
I've recently started writing a set of Lua tutorials, they will be posted on http://luatut.com/

Use them if you dare

thank you leegao, very helpful

I learn something today

old Re: The.Lua.Tutorial

SQ
Moderator Off Offline

Quote
Yea, really wonderful website design, especially variable (over/blinking) color idea.
Nice work!

old Re: The.Lua.Tutorial

memo
COMMUNITY BANNED Off Offline

Quote
thanks very much i am waiting for long time for this , but i have 1 question can you give us a explain how to work with the Lua for windows i download it and start the unbug
command but how to solve this bug ,i mean the program give you a fix to your bug or you must think it by your self ?

old Re: The.Lua.Tutorial

SQ
Moderator Off Offline

Quote
memo has written
command but how to solve this bug ,i mean the program give you a fix to your bug or you must think it by your self ?

It gives you debug log, like in CS2D.
You have to use your brains to fix it, lol.

old Re: The.Lua.Tutorial

SQ
Moderator Off Offline

Quote
Nope, nil valuable means value doesn't exist.
It means you haven't declared your value.

Like (Nil Comparing Example):
1
2
3
4
5
6
7
8
9
if (value == nil) then -- Check If Value [b]Doesn't[/b] Exist
	print("Value Doesn't Exist")
end

value = 5 -- Value Is Now equal 5

if (value ~= nil) then -- Check Value If It's [b]Does[/b] Exist
	print("Value Exist! and equal "..value)
end

old Re: The.Lua.Tutorial

Lee
Moderator Off Offline

Quote
TheLetterP has written
I learn something today


thanks p

Flacko has written
Nice, I didn't see the crash course


I've only just finalized the crash course tutorial

redefinder has written
Nice tutorial!=)
I read the two chapters and I learned a lot......
More will come right?


Definitely, I'm planning on adding a new set of tutorial once a week, although unfinished tutorials will also appear on the site

Quote
command but how to solve this bug ,i mean the program give you a fix to your bug or you must think it by your self ?


Can you see if you can find
C:\Program Files\Lua\5.1\SciTE\SciTE.exe

It may be a lot easier to use that as your code editor

old Re: The.Lua.Tutorial

KimKat
GAME BANNED Off Offline

Quote
My binary exectuable is located here "C:\Program\Lua 5.1\SciTE\SciTE.exe" because I used custom setup for advanced users lol.

Well, I know... by default it's as leegao says:
"C:\Program Files\Lua\5.1\SciTE\SciTE.exe" <<

I just don't like all the extra subfolders so I almost always take custom setup.

Anyways, I'm looking forward to learning some more LUA scripting. Keep it up!
To the start Previous 1 2 Next To the start
Log in to replyGeneral overviewCS2D overviewForums overview