• 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!

abs

Master-m

Need help? Just ask!
Senator
Joined
May 28, 2007
Messages
4,338
Reaction score
16
Location
The Netherlands
The absolutes function makes an integer positive. Usefull in complex problems.

Lua:
function abs(str)
	
	if str < 0 then
		str = -str
	end
	
	return str
end
 
I'm pretty sure this function already exists :p
 
Ye it's standart function.

Like the most string. funcs also are standart in LUA.
 
Back
Top