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

Necessary interesting script, item drop from all monsters

therrax

Member
Joined
Jul 12, 2012
Messages
262
Solutions
1
Reaction score
11
I need a script that will do:
-x item will fall out of all the monsters
-with chance to set
I do not want to simply add to all..
Thanks :)
 
PUMP
LUA:
function onKill(cid, target, lastHit)
local item,chance = 2160,50
if isMonster(target) and chance > math.random(1, 100) then
doPlayerAddItem(cid,item,1)
end
return true
end[/LUA
Any suggestions? :/
 
Back
Top