Ir para conteúdo

[Encerrado] [Bike System] - Action com um problema PDA Slicer 1.8


didogunner

Posts Recomendados

Olá, ;X

 

Seguinte a bike system do pda slicer tem um único problema!

Qual seria?

Quando o player monta na bike, ele consegue soltar o pokemon ;X

Sendo assim ele consegue usar order pra fly, ou surf e etc...

 

Ta i?

 

e que dai, quando ele usa a order e tira ela! ele volta sem a bike, com outfit normal mas com a velocidade da bike!

 

Alguém tem a solução? ;X

 

Segue a Action:

 

 

local function BikeSpeedOn(cid, t) --alteradp v1.8 refeita...

setPlayerStorageValue(cid, t.s, t.speed)

doChangeSpeed(cid, -getCreatureSpeed(cid))

doChangeSpeed(cid, t.speed)

end

 

local function BikeSpeedOff(cid, t)

setPlayerStorageValue(cid, t.s, -1)

doRegainSpeed(cid)

end

 

function onUse(cid, item, fromPosition, itemEx, toPosition)

 

local pos = getThingPos(cid)

local t = {text='Mount, bike!', dtext='Demount, bike!', s=5700, speed = 500}

 

if #getCreatureSummons(cid) >= 1 then

return doPlayerSendCancel(cid, "Return your pokemon.")

end

if getPlayerStorageValue(cid, 17001) == 1 or getPlayerStorageValue(cid, 63215) == 1 or getPlayerStorageValue(cid, 17000) == 1 then

return doPlayerSendCancel(cid, "You can't use bike while ride/fly/surf.")

end

 

if getPlayerStorageValue(cid, t.s) <= 0 then

doSendMagicEffect(pos, 177)

doCreatureSay(cid, t.text, 19)

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You have mounted in a bike.')

BikeSpeedOn(cid, t)

if getPlayerSex(cid) == 1 then

doSetCreatureOutfit(cid, {lookType = 1394}, -1)

else

doSetCreatureOutfit(cid, {lookType = 1393}, -1)

end

else

doSendMagicEffect(pos, 177)

doCreatureSay(cid, t.dtext, 19)

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, 'You haven demouted of a bike.')

BikeSpeedOff(cid, t)

doRemoveCondition(cid, CONDITION_OUTFIT)

end

return true

end

 

Link para o comentário
Compartilhar em outros sites

vai em actions/scripts/goback.lua e ache isso..

if getPlayerStorageValue(cid, 17000) >= 1 or getPlayerStorageValue(cid, 17001) >= 1 or getPlayerStorageValue(cid, 63215) >= 1  then
  return true																													   
end

e troque pra..

if getPlayerStorageValue(cid, 17000) >= 1 or getPlayerStorageValue(cid, 17001) >= 1 or getPlayerStorageValue(cid, 63215) >= 1 or getPlayerStorageValue(cid, 5700) >= 1  then
  return true																													  
end

Link para o comentário
Compartilhar em outros sites

  • 5 years later...
A questão neste tópico de suporte foi encerrada por falta de respostas. Este tópico está fechado e foi movido para Suporte - Tópicos Sem Resposta.

+ Caso a dúvida não tenha sido resolvida você poderá criar outro tópico solicitando ajuda.
* Lembre-se que é permitido dar UP no tópico a cada 24 horas para assim o destacar e manter movimentado.
Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...