• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Rename, for help newbies

KazzXD

New Member
Joined
Aug 31, 2007
Messages
63
Reaction score
0
Is possible to rename this? Example..


PHP:
local function endFunction()
	return end
end

local function endIf()
	return end
end

local function startIf(...)
	return if(...)
end

local function returnAndStopScript()
	return return
end

local function ifElseIsFalse()
	return else
end

local function ifStartIfIsFalse(...)
	return else if(...)
end

function looping..
	return for..
..

Have a method or something for make this possible to help newbies? I have a newbie friend, and this is helpfull for he.

Thanks, Kazz.
 
Why don't you just use the regular syntax? Otherwise you can just patch up your lua library to support them as I doesn't think you can do it in Lua itself.
 
Why don't you just use the regular syntax? Otherwise you can just patch up your lua library to support them as I doesn't think you can do it in Lua itself.

I try to help a newbie friend, and change the "if, for, end" for my language, understand?

Okay, thank's. =)
 
Back
Top