PtokaX forum

Development Section => HOW-TO's => Topic started by: plop on 09 March, 2005, 01:10:50

Title: HOW TO: see if a script is lua 4 or 5
Post by: plop on 09 March, 2005, 01:10:50
this is really easy.
look for the next things:
Quotelua 5
string.find
string.sub
string.gsub

string.
table.
io.
math.
os.
else you'll find things like:
Quotelua 4
strfind
strsub
strgsub
as you see lua 5 has dot's in the commands.

plop