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

Request Sd Lever Read

freak15

Professional Hoster
Joined
Dec 31, 2008
Messages
356
Reaction score
2
Location
Sweden
Hello I Could Like A Scirpt..
When I pull A Lever I get 1 bp 30x sds for 2k
Rep++ If U Give me ;)
Just Write posx posy posz "" and place the levers after^^ just give me scrript if any1 got

Server wich running is "Theforgottenserer"crying demson 8.42
 
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	config = {
		present = ID,   -- ID of item what you get
		cost = 2000,    
		bps = 1,        --how much bps you got?
}

		if doPlayerRemoveMoney(cid, config.cost) == TRUE then
			local container = doPlayerAddItem(cid, 2000, config.bps)
			for i = 1, 20 do
				doAddContainerItem(container, config.present, 1)
			end
		else
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_SMALL, "You do not have enough money.")
		end
	end
	return TRUE
end
Not tested
But I think it work ^_^.

Regards,
Shawak
 
Last edited:
Back
Top