Ir para conteúdo
  • 0

Monster Conter


koete

Pergunta

Peguei o Script Monster Conter

e tentei colocar ele mandar as msg em channel, até que não deu erro na source

mas da debug no cliente. Alguém pode me ajudar?

 

 

 

 

 

 

 

 

 

 

 

 

local monsters = {

["rat"] = 110000,
}
function onKill(cid, target, lastHit)
if(isMonster(target) == TRUE) then
local name = getCreatureName(target)
local monster = monsters[string.lower(name)]
if(monster) then
local killedMonsters = getPlayerStorageValue(cid, monster)
if(killedMonsters == -1) then
killedMonsters = 1
end
doPlayerSendChannelMessage(cid, "","Você matou " .. killedMonsters .. " " .. name .. "'s.", TALKTYPE_CHANNEL_HIGHLIGHT, 12)
setPlayerStorageValue(cid, monster, killedMonsters + 1)
end
end
return TRUE
end

 

 

Link para o comentário
Compartilhar em outros sites

6 respostass a esta questão

Posts Recomendados

  • 0

Tenta

local monsters = {
["rat"] = 110000,
}
 
function onKill(cid, target, lastHit)
if(isMonster(target) == TRUE) then
local name = getCreatureName(target)
local monster = monsters[string.lower(name)]
if(monster) then
local killedMonsters = getPlayerStorageValue(cid, monster)
if(killedMonsters == -1) then
killedMonsters = 1
end
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você matou " .. killedMonsters .. " " .. name .. "'s.")
setPlayerStorageValue(cid, monster, killedMonsters + 1)
end
end
return TRUE
end
Link para o comentário
Compartilhar em outros sites

  • 0

Resolvido descobri o error Slicer

 

 

doPlayerSendChannelMessage(cid, "","Você matou " .. killedMonsters .. " " .. name .. "'s.", 8, 12)

Era problema no talkType

8 = TalkType

12 = Chat que eu criei

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...