ta e eu posso saber porque você não adicionou no script?
ta ai malandrão rs
function onKill(cid, target)
--[[ adicione os monstro aqui monstros
nome do monstro,storage
]]--
local m = {
["demon"] = 12001,
["dragon lord"] = 12002,
["dragon"] = 12003,
["acolyte of the cult"] = 12004,
["adept of the cult"] = 12005,
["amazon"] = 12006,
["ancient scarab"] = 12007,
["banshee"] = 12008,
["behemoth"] = 12009,
["beholder"] = 12010,
["carrion worm"] = 12011,
["cave rat"] = 12012,
["cyclops"] = 12013,
["demon skeleton"] = 12014,
["fire elemental"] = 12015,
["Gargoyle"] = 12016,
["ghost"] = 120017,
["ghoul"] = 12018,
["hydra"] = 12019,
["kongra"] = 12020,
["larva"] = 12021,
["Lizard sentinels"] = 12022,
["lizard Snakecharmer"] = 12023,
["lizard templar"] = 12024,
["minotaur"] = 12025,
["minotaur archer"] = 12026,
["necromancer"] = 12027,
["novice of the cult"] = 12028,
["demodras"] = 12029,
["orshabaal"] = 12030,
["the old widow"] = 12031,
["ashmunrah"] = 12032,
["dipthrah"] = 12033,
["morguthis"] = 12034,
["thalas"] = 12035,
["Water Elemental"] = 12036,
["Warlock"] = 12037,
["giant spider"] = 12038,
["grim eeaper"] = 12039,
["spectre"] = 12040,
["banshee"] = 12041,
["tiquandas Revenge"] = 12042,
["yakchal"] = 120043,
["bog raider"] = 12044,
["hellfire fighter"] = 12045,
["massive energy elemental"] = 12046,
["Water elemental"] = 12047,
["triple medusa"] = 12048,
["draken elite"] = 12049,
["ghazbaran"] = 12050,
["ferumbras"] = 12051,
["bazir"] = 12052,
["apocalypse"] = 12053,
["lizard abonimation"] = 12054,
["draken spellweaver"] = 12055,
["infernatil"] = 12056,
["morgaroth"] = 12057,
["living plant"] = 12058,
["the plasmother"] = 12059,
["infernalist"] = 12060,
["drasilla"] = 12061,
["the obliverator"] = 12062,
["abomination fury"] = 12063,
["behemoth"] = 12064,
["wyrm"] = 12065,
["draken abomination"] = 12066,
["frost dragon"] = 12067,
}
-- 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