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

Windows How to add lua function

Cornex

Web Developer
Senator
Joined
Jun 15, 2008
Messages
3,443
Solutions
6
Reaction score
1,170
Location
Sweden
Hello. i got error
PHP:
attempt to call global 'isVip' (a nil value)

How can i add this isVip to the functions?

Thanksss =)
 
open one of the lib files and add:
LUA:
function isVip(cid)
  -- your check here.. bla
  -- return true / false here depending on check
end
 
Back
Top