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

Lua !buypremium cost item instead of money?

skittles

New Member
Joined
Oct 13, 2007
Messages
265
Reaction score
0
please help i want to make the command

!buypremium

i want to make it cost an item 'ID 5785' and gives 10 days premium.


so when say

!buypremium

it takes the item id 5785 and adds 10 days premium to your account.


anyone can do?
 
there you go..

Lua:
function onSay(cid, words, param)
	if doPlayerRemoveItem(cid, 5785, 1) == TRUE then
		doPlayerAddPremium(cid,10)
	else
		doPlayerSendCancel(cid,"You do not have the required item.")
	end
	return FALSE
end


kind regards, Evil Hero
 
Back
Top