Ir para conteúdo
Propaganda

ERRO COMANDO /GOTO


Posts Recomendados

ai clan meu comando /goto so funciona em player/ npc, quando eu uso em poke nao vai : 20:16 Invalid param specified., eu pegando o comando de outras bases do talkactions e troca pela da base que ja tem da a mesma coisa

 na distro n aparece nadaimage.png.439db6bd379232441713c4905aae1fc5.png

Link para o comentário
Compartilhar em outros sites

  • Moderador

recomendo vc usar esse aqui   

Spoiler
function onSay(cid, words, param, channel)
	if(param == '') then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Comando necessario")
		return true
	end
	
	local creature = getCreatureByName(param)
	
	if creature ~= nil then
		local Pos = getCreaturePosition(creature)
		local PosFreeTile = getClosestFreeTile(creature, Pos)
		doTeleportThing(cid, PosFreeTile)
		doSendMagicEffect(PosFreeTile, CONST_ME_TELEPORT)
	else
		doPlayerSendCancel(cid, param..' inválido')
	end
	

 

Link para o comentário
Compartilhar em outros sites

17 minutos atrás, Wang disse:

recomendo vc usar esse aqui   

  Ocultar conteúdo
function onSay(cid, words, param, channel)
	if(param == '') then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Comando necessario")
		return true
	end
	
	local creature = getCreatureByName(param)
	
	if creature ~= nil then
		local Pos = getCreaturePosition(creature)
		local PosFreeTile = getClosestFreeTile(creature, Pos)
		doTeleportThing(cid, PosFreeTile)
		doSendMagicEffect(PosFreeTile, CONST_ME_TELEPORT)
	else
		doPlayerSendCancel(cid, param..' inválido')
	end
	

 

deu erro  ] [Error - LuaScriptInterface::loadFile] data/talkactions/scripts/teleportto.lua:16: 'end' expected (to close 'function' at line 1) near '<eof>'
[07/08/2024 20:55:06] [Warning - Event::loadScript] Cannot load script (data/talkactions/scripts/teleportto.lua)
[07/08/2024 20:55:06] data/talkactions/scripts/teleportto.lua:16: 'end' expected (to close 'function' at line 1) near '<eof>'

Link para o comentário
Compartilhar em outros sites

22 minutos atrás, Wang disse:

recomendo vc usar esse aqui   

  Mostrar conteúdo oculto
function onSay(cid, words, param, channel)
	if(param == '') then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Comando necessario")
		return true
	end
	
	local creature = getCreatureByName(param)
	
	if creature ~= nil then
		local Pos = getCreaturePosition(creature)
		local PosFreeTile = getClosestFreeTile(creature, Pos)
		doTeleportThing(cid, PosFreeTile)
		doSendMagicEffect(PosFreeTile, CONST_ME_TELEPORT)
	else
		doPlayerSendCancel(cid, param..' inválido')
	end
	

 

deu isso  image.png.135477f09a44e36252d831d4357450df.png

Link para o comentário
Compartilhar em outros sites

  • Administrador
1 hora atrás, Crazzy Dreans disse:

deu isso  image.png.135477f09a44e36252d831d4357450df.png

teste esse, e verifique se adicionou corretamente, reinicie o servidor de preferencia.

 

function onSay(cid, words, param, channel)
	if(param == '') then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.")
		return true
	end

	local creature = getCreatureByName(param)
	local player = getPlayerByNameWildcard(param)
	local waypoint = getWaypointPosition(param)
	local tile = string.explode(param, ",")
	local pos = {x = 0, y = 0, z = 0}

	if(player ~= nil and (not isPlayerGhost(player) or getPlayerGhostAccess(player) <= getPlayerGhostAccess(cid))) then
		pos = getCreaturePosition(player)
	elseif(creature ~= nil and (not isPlayer(creature) or (not isPlayerGhost(creature) or getPlayerGhostAccess(creature) <= getPlayerGhostAccess(cid)))) then
		pos = getCreaturePosition(creature)
	elseif(type(waypoint) == 'table' and waypoint.x ~= 0 and waypoint.y ~= 0) then
		pos = waypoint
	elseif(tile[2] and tile[3]) then
		pos = {x = tile[1], y = tile[2], z = tile[3]}
	else
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.")
		return true
	end

	if(not pos or isInArray({pos.x, pos.y}, 0)) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Destination not reachable.")
		return true
	end

	pos = getClosestFreeTile(cid, pos, true, false)
	if(not pos or isInArray({pos.x, pos.y}, 0)) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Cannot perform action.")
		return true
	end

	local tmp = getCreaturePosition(cid)
	if(doTeleportThing(cid, pos, true) and not isPlayerGhost(cid)) then
		doSendMagicEffect(tmp, CONST_ME_POFF)
		doSendMagicEffect(pos, CONST_ME_TELEPORT)
	end

	return true
end

 

  • Like 1
Link para o comentário
Compartilhar em outros sites

18 horas atrás, TELASKO disse:

teste esse, e verifique se adicionou corretamente, reinicie o servidor de preferencia.

 

function onSay(cid, words, param, channel)
	if(param == '') then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.")
		return true
	end

	local creature = getCreatureByName(param)
	local player = getPlayerByNameWildcard(param)
	local waypoint = getWaypointPosition(param)
	local tile = string.explode(param, ",")
	local pos = {x = 0, y = 0, z = 0}

	if(player ~= nil and (not isPlayerGhost(player) or getPlayerGhostAccess(player) <= getPlayerGhostAccess(cid))) then
		pos = getCreaturePosition(player)
	elseif(creature ~= nil and (not isPlayer(creature) or (not isPlayerGhost(creature) or getPlayerGhostAccess(creature) <= getPlayerGhostAccess(cid)))) then
		pos = getCreaturePosition(creature)
	elseif(type(waypoint) == 'table' and waypoint.x ~= 0 and waypoint.y ~= 0) then
		pos = waypoint
	elseif(tile[2] and tile[3]) then
		pos = {x = tile[1], y = tile[2], z = tile[3]}
	else
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.")
		return true
	end

	if(not pos or isInArray({pos.x, pos.y}, 0)) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Destination not reachable.")
		return true
	end

	pos = getClosestFreeTile(cid, pos, true, false)
	if(not pos or isInArray({pos.x, pos.y}, 0)) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Cannot perform action.")
		return true
	end

	local tmp = getCreaturePosition(cid)
	if(doTeleportThing(cid, pos, true) and not isPlayerGhost(cid)) then
		doSendMagicEffect(tmp, CONST_ME_POFF)
		doSendMagicEffect(pos, CONST_ME_TELEPORT)
	end

	return true
end

 

image.png.5d884d89a4eb1832288aeb3fe7d38672.pngcontinua dando mesma coisa

Link para o comentário
Compartilhar em outros sites

  • Administrador
4 horas atrás, Crazzy Dreans disse:

image.png.5d884d89a4eb1832288aeb3fe7d38672.pngcontinua dando mesma coisa

então possivelmente, vc n tem esse gengar por ai não hein é o mesmo do meu OT que eu consigo dar goto em tudo.

Link para o comentário
Compartilhar em outros sites

  • Moderador
Em 07/08/2024 em 20:59, Crazzy Dreans disse:

deu isso  image.png.135477f09a44e36252d831d4357450df.png

Meu  bkp  br  flash só bug  kkkk se for ele pq de for tá até com code  nuk  até no talo  se for ela a versão flash  recomendo adquirir uma versão mais att  com as correções 

  • Sad 1
Link para o comentário
Compartilhar em outros sites

Em 08/08/2024 em 21:48, TELASKO disse:

então possivelmente, vc n tem esse gengar por ai não hein é o mesmo do meu OT que eu consigo dar goto em tudo.

nenhum poke vai kk

Link para o comentário
Compartilhar em outros sites

Em 09/08/2024 em 00:12, Wang disse:

Meu  bkp  br  flash só bug  kkkk se for ele pq de for tá até com code  nuk  até no talo  se for ela a versão flash  recomendo adquirir uma versão mais att  com as correções 

image.thumb.png.f7c7dec1e4633be1471460d29bb4919d.pngessa versao quer peguei

Link para o comentário
Compartilhar em outros sites

  • Moderador
Em 10/08/2024 em 08:43, Crazzy Dreans disse:

image.thumb.png.f7c7dec1e4633be1471460d29bb4919d.pngessa versao quer peguei

Remove os traps  que essa base aí tem,  caso não saiba acho que já tem meu número me da um slv  que te ajudo prócurar .

Link para o comentário
Compartilhar em outros sites

Participe da Conversa

Você pode postar agora e se cadastrar mais tarde. Cadastre-se Agora para publicar com Sua Conta.

Visitante
Responder

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

  Apenas 75 emoticons são permitidos.

×   Seu link foi incorporado automaticamente.   Exibir como um link em vez disso

×   Seu conteúdo anterior foi restaurado.   Limpar Editor

×   Você não pode colar imagens diretamente. Carregar ou inserir imagens do URL.

×
  • Criar Novo...