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

(Talkaction) Check VIP-Days

Status
Not open for further replies.

kalle303

New Member
Joined
Oct 13, 2007
Messages
108
Reaction score
4
Location
Sweden
Hello!

I need help with a talkaction that will check how many VIP-Days the player has left.

VIP-Storage: 11551
I'm using TFS 0.3.4pl2

Thanks!:thumbup:
/Kalle303
 
Lua:
function onSay(cid, words, param)
local player = getPlayerByNameWildcard(param)
	if(param == "") then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Please input a Name.")
		return TRUE
	end	
	doPlayerPopupFYI(cid, "" .. getCreatureName(player) .. " \n\nVIP Days:  " .. getPlayerStorageValue(player, 7000).. ".")	
	return TRUE
end
 
Last edited:
Status
Not open for further replies.
Back
Top