Ir para conteúdo
  • Cadastre-se

Suporte Erro Unknown event name: - Podem me ajudar?


Posts Recomendados

.Qual servidor ou website você utiliza como base? 
TFS 1.3   -   Web Gesior

 

Qual o motivo deste tópico? 

Erro ao ligar o servidor:  Unknown event name:

 

Está surgindo algum erro? Se sim coloque-o aqui. 

Citar

Ao iniciar o Servidor aparecem os erros abaixo e não sei como arrumar.  Unknown event name:

>> Initializing gamestate
[Warning - Monster::Monster] Unknown event name: BoneCapsule
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: RiftInvaderDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath
[Warning - Monster::Monster] Unknown event name: WhiteDeerDeath

 

Você tem o código disponível? Se tiver publique-o aqui: 
Creaturescript do White Deer

 local config = {
	-- ordered by chance, the last chance being 100
	{chance = 30, monster = 'Enraged White Deer', message = 'The white deer summons all his strength and turns to fight!'},
	{chance = 100, monster = 'Desperate White Deer', message = 'The white deer desperately tries to escape!'}
}

local whiteDeerDeath = CreatureEvent("WhiteDeerDeath")
function whiteDeerDeath.onDeath(creature, corpse, killer, mostDamageKiller, unjustified, mostDamageUnjustified)
	local targetMonster = creature:getMonster()
	if not targetMonster or targetMonster:getMaster() then
		return true
	end

	local chance = math.random(100)
	for i = 1, #config do
		if chance <= config[i].chance then
			local spawnMonster = Game.createMonster(config[i].monster, targetMonster:getPosition(), true, true)
			if spawnMonster then
				spawnMonster:getPosition():sendMagicEffect(CONST_ME_TELEPORT)
				targetMonster:say(config[i].message, TALKTYPE_MONSTER_SAY)
			end
			break
		end
	end
	return true
end
whiteDeerDeath:register()

rift_invader_death
 

local crystals = {
	[1] = {fromPosition = Position(33389, 31467, 14), toPosition = Position(33391, 31469, 14), crystalPosition = Position(33390, 31468, 14), globalStorage = GlobalStorage.FerumbrasAscendant.Crystals.Crystal1},
	[2] = {fromPosition = Position(33393, 31467, 14), toPosition = Position(33395, 31469, 14), crystalPosition = Position(33394, 31468, 14), globalStorage = GlobalStorage.FerumbrasAscendant.Crystals.Crystal2},
	[3] = {fromPosition = Position(33396, 31470, 14), toPosition = Position(33398, 31472, 14), crystalPosition = Position(33397, 31471, 14), globalStorage = GlobalStorage.FerumbrasAscendant.Crystals.Crystal3},
	[4] = {fromPosition = Position(33396, 31474, 14), toPosition = Position(33398, 31476, 14), crystalPosition = Position(33397, 31475, 14), globalStorage = GlobalStorage.FerumbrasAscendant.Crystals.Crystal4},
	[5] = {fromPosition = Position(33393, 31477, 14), toPosition = Position(33395, 31479, 14), crystalPosition = Position(33394, 31478, 14), globalStorage = GlobalStorage.FerumbrasAscendant.Crystals.Crystal5},
	[6] = {fromPosition = Position(33389, 31477, 14), toPosition = Position(33391, 31479, 14), crystalPosition = Position(33390, 31478, 14), globalStorage = GlobalStorage.FerumbrasAscendant.Crystals.Crystal6},
	[7] = {fromPosition = Position(33386, 31474, 14), toPosition = Position(33388, 31476, 14), crystalPosition = Position(33387, 31475, 14), globalStorage = GlobalStorage.FerumbrasAscendant.Crystals.Crystal7},
	[8] = {fromPosition = Position(33386, 31470, 14), toPosition = Position(33388, 31472, 14), crystalPosition = Position(33387, 31471, 14), globalStorage = GlobalStorage.FerumbrasAscendant.Crystals.Crystal8}
}

local riftInvaderDeath = CreatureEvent("RiftInvaderDeath")
function riftInvaderDeath.onDeath(creature, corpse, lasthitkiller, mostdamagekiller, lasthitunjustified, mostdamageunjustified)
	if not targetMonster or targetMonster:getName():lower() ~= 'rift invader' then
		return true
	end

	local targetMonster = creature:getMonster()
	local pos = Position(33392 + math.random(-10, 10), 31473 + math.random(-10, 10), 14)
	local name = targetMonster:getName():lower()
	Game.createMonster(name, pos)

	for i = 1, #crystals do
		local crystal = crystals[i]
		if isInRange(targetMonster:getPosition(), crystal.fromPosition, crystal.toPosition) then
			if Game.getStorageValue(crystal.globalStorage) > 8 then
				local item = Tile(crystal.crystalPosition):getItemById(17580)
				if not item then
					return true
				end
				item:transform(17586)
				Game.setStorageValue(GlobalStorage.FerumbrasAscendant.Crystals.AllCrystals, Game.getStorageValue(GlobalStorage.FerumbrasAscendant.Crystals.AllCrystals) + 1)
			end
			if Game.getStorageValue(GlobalStorage.FerumbrasAscendant.Crystals.AllCrystals) == 8 then
				local creature = Tile(Position(33392, 31473, 14)):getTopCreature()
				creature:say('NOOOOOOOOOOO!', TALKTYPE_MONSTER_YELL)
				creature:say('FERUMBRAS BURSTS INTO SOUL SPLINTERS!', TALKTYPE_MONSTER_YELL, nil, nil, Position(33392, 31475, 14))
				creature:remove()
				for a = 1, #crystals do
					local crystalEffect = crystals[i]
					crystalEffect.crystalPosition:sendMagicEffect(CONST_ME_FERUMBRAS)
					Game.createMonster('Ferumbras Soul Splinter', Position(33392, 31473, 14), false, true)
				end
			end
			Game.setStorageValue(crystal.globalStorage, Game.getStorageValue(crystal.globalStorage) + 1)
			lasthitkiller:say("The negative energy of the rift creature is absorbed by the crystal!", TALKTYPE_MONSTER_SAY, nil, nil, crystal.crystalPosition)
			lasthitkiller:say("ARGH!", TALKTYPE_MONSTER_SAY, nil, nil, Position(33392, 31473, 14))
		end
	end

	local vortex = Game.createItem(22455, 1, creature:getPosition())
	addEvent(function()
		vortex:remove(1)
	end, 10 * 1000)
	return true
end

riftInvaderDeath:register()


bone_capsule

local boneCapsule = CreatureEvent("BoneCapsule")
function boneCapsule.onDeath(creature, corpse, lasthitkiller, mostdamagekiller, lasthitunjustified, mostdamageunjustified)
	local targetMonster = creature:getMonster()
	local position = targetMonster:getPosition()
	position:sendMagicEffect(CONST_ME_POFF)
	if not targetMonster or targetMonster:getName():lower() ~= 'bone capsule' then
		return true
	end

	local monster = Game.createMonster('bone capsule', Position(33485, 32333, 14), true, true)
	if not monster then
		return true
	end

	local ragiaz = Tile(Position(33487, 32333, 14)):getTopCreature()
	ragiaz:teleportTo(position)
	ragiaz:addHealth(math.random(25000, 35000), true, true)
	return true
end

boneCapsule:register()

 

Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui. 

image.thumb.png.f47853a325f1f1a07a1906475ebf42c3.png

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.


  • Conteúdo Similar

    • Por braianlomas
      Como faço para corrigir esse problema para meu cliente, eu uso o tfs 0.3.6  
      Quero resolver esse problema que tenho no meu cliente, como e onde posso resolver?  
      Eu uso o tfs 0.3.6, não tenho as fontes do cliente, se você puder me dar eu vou amá-las para sempre  
       

       
    • Por A.Mokk
      Ola pessoal, estou tentando compilar o TFS 1.5 Downgrade para 8.60 atraves do MSVC 2022, ao tentar compilar da o seguinte erro:
       
       
      Fiz o download do MSVC, GitDash, TFS-SDK-3.2, e de varios boosts que tentei, ao fazer o seguinte procedimento no GitDash:
       
      Ao chegar em ./bootstrap-vcpkg.bat o GitDash nao consegue realizar o procedimento corretamente, alguem poderia me ajudar ?

      Tentei de diversas formas mas o mesmo erro sempre persiste, atualmente meu servidor utiliza TFS 0.4, consigo compilar sem nenhum problema no MSVC 2010, porem, as limitações do TFS 0.4 estão me fazendo precisar atualizar, se alguem souber como corrigir esses erros eu agradeço !

      Tutoriais utilizados :
      Compiling on Windows (vcpkg) · otland/forgottenserver Wiki · GitHub
      Compiling on Windows · otland/forgottenserver Wiki · GitHub
      Compilando TFS 1.3 com vídeo-aula - Tutoriais Infraestrutura & Proteção - Tibia King - Tudo sobre Tibia, OTServ e Bots!
      Compilar TFS 1.3 Vcpkg - Tutoriais Infraestrutura & Proteção - Tibia King - Tudo sobre Tibia, OTServ e Bots!
       
      O que acontece no Powershell:
       
    • Por thunmin
      .Qual servidor ou website você utiliza como base? 
      Canary 2.3.6
      Qual o motivo deste tópico? 
      Queria fazer com que os players não pudessem mexer no aleta sio, pois, agora os mesmos estão conseguindo mexer nos itens
      Está surgindo algum erro? Se sim coloque-o aqui. 
       
      Você tem o código disponível? Se tiver publique-o aqui: 
         
      Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui. 
       
    • Por thunmin
      .Qual servidor ou website você utiliza como base? 
      canary para o cliente 13.16
      Qual o motivo deste tópico? 
      Não consigo encontrar onde ajusta
      to com o problema no 13.16  o exausted, por exemplo os kinas era pra combar exori, erori gran e exori min, porém não ta indo ta dando exausted o char ta soltando magia ou runa e não consegue usar as potions
      Está surgindo algum erro? Se sim coloque-o aqui. 
       
      Você tem o código disponível? Se tiver publique-o aqui: 
         
      Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui. 
       
    • Por Andersontatuador
      Olá galera da TK, me chamo Anderson estou procurando alguém profissional em otservs e site.
      Já tenho um servidor o site e o cliente preciso só de uma pessoal competente, que esteja empenhado a trabalhar,
      não quero nada de graça, pois nessa onda fui mais roubado do quer eu pagar um profissional.
      caso alguém se interesse entrar em contato comigo através do whatsapp
      82 9 9304-9462
       
      Está surgindo algum erro? Se sim coloque-o aqui. 
       
      Você tem o código disponível? Se tiver publique-o aqui: 
         
      Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui. 
       
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo