• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

One Simple Function

Shawak

Intermediate OT User
Joined
Sep 11, 2008
Messages
1,984
Solutions
2
Reaction score
119
Location
Germany
GitHub
Shawak
Simplest function ever:

Lua:
function isMoney(itemid)
	return isInArray({2148, 2152, 2160}, itemid) == true and true or false
end

Insteand of "if item.itemid = ..." :thumbup:
 
Simplest function ever:

Lua:
function isMoney(itemid)
	return isInArray({2148, 2152, 2160}, itemid) == true and true or false
end

Insteand of "if item.itemid = ..." :thumbup:

Kinda usefull :p really easy, but still usefull, a bit :p
 
Back
Top