Ir para conteúdo
  • 0

Chão que faz o player fica rodando


Emooooo

Pergunta

2 respostass a esta questão

Posts Recomendados

  • 0

o server jah faz isso pelo mapa, abre seu mapa pelo RME clica no piso aonde o player irá ficar atacando e coloca como no-logout(é uma opção q fica no menu da direita) .. 

 

                             \/

image.png.abbebd5a987100ee7da37fde52400c99.png

Link para o comentário
Compartilhar em outros sites

  • 0

Creditos, Night Wolf.

 

local trainerst = 456488

function helpTrainer(uid, pos)
	look = getCreatureLookDirection(uid)
	look = look < 3 and look + 1 or 0
	doCreatureSetLookDirection(uid, look)
	doSendMagicEffect(pos, 12)
	
	if getPlayerFood(uid) < 100 then
		doPlayerFeed(uid, 100)
		doCreatureSay(uid, "+ Food", TALKTYPE_MONSTER)
	end
	
	addEvent(function()
		if isPlayer(uid) and getCreaturePosition(uid).x == pos.x and getCreaturePosition(uid).y == pos.y and getCreaturePosition(uid).z == pos.z then
			helpTrainer(uid, pos)
		end
	end, 1000)
return true
end	


function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
	helpTrainer(cid, position)
	setPlayerStorageValue(cid,trainerst,1)
return true
end

function onStepOut(cid)
    setPlayerStorageValue(cid,trainerst,-1)
	return true
end

 

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...