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

Help please need a talkaction

Lua:
--Remove vip by Kekox
function onSay(cid,words,param)
local config = {
      vipStorage = 11551
}
         if param ~= nil then
            setPlayerStorageValue(getPlayerByName(param), config.vipStorage, -1)
            doPlayerSendTextMessage(cid, 19, "You just removed a vip account of "..getPlayerByName(param)..".")
            doPlayerSendTextMessage(getPlayerByName(param), 19, "Your vip account is done.")
         else
         doPlayerSendCancel(cid, "Command requieres param.")
         end                                    	
         return TRUE
end
Set your vip storage in config..
 
Back
Top