Ir para conteúdo

[DÚVIDA] PDA


Malusz

Posts Recomendados

Bom coloquei a bike system no meu servidor de base PDA. Mas quando o player upa o level a bike abaixa a speed, alguem concerta plz.

 

 

Segue a script

local function BikeSpeedOn(cid, t)

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
local t = {text='Mount, bike!', dtext='Demount, bike!', s=5700, speed = 1050}
function onUse(cid, item, fromPosition, itemEx, toPosition)
local pos = getThingPos(cid)
if getPlayerStorageValue(cid, 17001) >= 1 or getPlayerStorageValue(cid, 63215) >= 1 or
getPlayerStorageValue(cid, 17000) >= 1 or getPlayerStorageValue(cid, 75846) >= 1 or
getPlayerStorageValue(cid, 6598754) >= 1 or getPlayerStorageValue(cid, 6598755) >= 1 then --alterado v1.9
return doPlayerSendCancel(cid, "You can't do that right now.")
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

Então amigo, não foi exatamente oque eu coloquei no tópico mas valeu pela resposta. Veja bem não quero alterar a speed da bike, simplesmente quando um player estar mountado na bike e upa 1 lvl a bike abaixa a speed.

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...