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

!money

enriel

Big L
Joined
Dec 14, 2007
Messages
1,254
Reaction score
2
Location
Montenegro
Anyone that can create a script like this, if you use !money it removes a certain item id and gives you 100 crystal coins.
REP+ =)
 
Code:
local config = {
	item = 2431,
	count = 1,
	money = 10000
}

function onSay(cid, words, param)
	if doPlayerRemoveItem(cid, config.item, config.count) == TRUE then
		doPlayerAddMoney(cid, config.money)
	end
	return TRUE
end
 
Back
Top