local config = {
storage_value = 55555,
boss_name = 'Orshabaal'
}
function onStatsChange(cid, attacker, type, combat, value)
if(attacker == config.boss_name) then
if(getPlayerStorageValue(cid, config.storage_value) == -1) then
return false
end
end
return true
end