didogunner 2 Postado Janeiro 20, 2013 Share Postado Janeiro 20, 2013 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 More sharing options...
Slicer 1070 Postado Janeiro 20, 2013 Share Postado Janeiro 20, 2013 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 More sharing options...
didogunner 2 Postado Janeiro 20, 2013 Autor Share Postado Janeiro 20, 2013 Duvida sanada! VLw REP+ Link para o comentário Compartilhar em outros sites More sharing options...
Slicer 1070 Postado Janeiro 20, 2013 Share Postado Janeiro 20, 2013 sanado, movido Link para o comentário Compartilhar em outros sites More sharing options...
Stigal 584 Postado Abril 20, 2018 Share Postado Abril 20, 2018 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 More sharing options...
Posts Recomendados