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

Monsters do not die on 0 hp

Zool

Banned User
Joined
Jun 9, 2009
Messages
742
Reaction score
5
Location
Poland/St Wola
When i have this scripts :
creaturescripts :

Code:
function onKill(cid, target)
    local room = getArenaMonsterIdByName(getCreatureName(target))
    if room > 0 then
        setPlayerStorageValue(cid, room, 1)
        doPlayerSendTextMessage(cid,MESSAGE_EVENT_DEFAULT,'You can enter the next room! You have 3 minutes until the teleport gets disabled again.')
    end
    return TRUE
end


Monster dont die on 0 hp whats wrong?
 
Last edited:
Back
Top