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

Vip days checker

Sherlok

Active Member
Joined
Aug 29, 2008
Messages
2,116
Reaction score
44
Location
Poland, Wrocław.
Hello,
I search for script '!vip' to check how many VIP days you have.

My VIP storage is 95883 & I use shawak's vip system :)
 
Code:
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, math.ceil(getPlayerStorageValue(cid, vip_storage) / 60 / 60 / 24))
 
go to data/talkactions and open talkactions.xml and paste:
Code:
	<talkaction words="!vip" event="script" value="vipchecker.lua"/>
save and close.

and goto data/talkactions/scripts and select any file, copy and rename it to "vipchecker.lua",
open and delete all the content and.. paste:
Code:
function onSay(cid, words, param, channel)
	if(getPlayerStorageValue(cid, vip_storage) ~= -1) then
		doPlayerSendTextMessage(cid, 22, "Your vip time is: " .. math.ceil(getPlayerStorageValue(cid, vip_storage) / 60 / 60 / 24) .. " days.")
	else
		doPlayerSendTextMessage(cid, 22, "Sorry, you are not vip account.")
	end
	return TRUE
end
save and close.

REP++ if i helped you x)
and sorry my english ;x
 
Back
Top