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

Can you delete

Yes it is possible. But you have to create a stats system then, if your looking for dmg, defence and etc..

Else you can just make it stronger through health:
Code:
local master = monster:getMaster()
if not master then
    return false
end

monster:setMaxHealth(monster:getMaxHealth() + (master:getLevel() * 2))
monster:addHealth(monster:getMaxHealth())
 
That was just a example. You need to show me the file, when you summon the pet.
 
Back
Top