Ola, achei o script q tava a procura a semanas, achei aq no xtibia mesmo. Porem no meu ot nao esta funcioando. Alguem poderia da uma ajuda pf. eu instalei certinho o script porem o script nao faz a contagem. (nao da nenhum error no console)
tfs 0.4 - 8.60
Citarfunction onKill(cid, target) --[[ adicione os monstro aqui monstros nome do monstro,storage ]]-- local m = { ["demon"] = 12001, } -- checkagem if(isMonster(target) == TRUE) then local n = getCreatureName(target) local name_monster = m[string.lower(n)] if(name_monster) then local contagem = getPlayerStorageValue(cid, name_monster) if(contagem == -1) then contagem = 1 end doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você ja matou "..contagem .." " .. n .. ".") setPlayerStorageValue(cid, name_monster, contagem + 1) end end return TRUE end