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

Frag Door!

Aklovo

Enjoy It
Joined
Dec 30, 2009
Messages
453
Reaction score
12
Location
México
Im looking for a frag door, for ex. when you got 100 kills yo can enter in that door, any idea plx? Thanks a lot
 
General Idea?

Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	local door = {}
	door.frags = 100
	if(getPlayerFrags(cid) < door.frags) then
		doPlayerSendCancel(cid, "You may not enter.")
		return false
	end
end
 
Back
Top