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

function=summon

Dexftw

Total Boss
Joined
Jan 30, 2011
Messages
317
Reaction score
8
how do I change it so you can only summon one monster? it's not in config and it's not in spells.
 
Add to libaries:
Lua:
_doSummonCreature = doSummonCreature
function doSummonCreature(cid, pos)
	return (#getCreatureSummons(cid) < 1 and _doSummonCreature(cid, pos) or false)
end
 
Back
Top