Postado Novembro 15, 2014 10 anos Queria uma scripts de bike que quando eu estiver usando ela eu consiga soltar o pokemon.
Postado Novembro 15, 2014 10 anos Aki No Pegou testa ai Data/Actions/scripts Crie Um arquivo chamado Bike.lua Ou se voce tiver apague e Cole isso dentro Mostrar conteúdo oculto function onUse(cid, item, fromPosition, itemEx, toPosition) local sBike = 2547 local t = { [12692] = {article='a', name='bike', text='Mount, Bike', dtext='Demount, Bike', s=19999, condition=bikeCondition}, } function BikeSpeedOn(cid,nSpeed) setPlayerStorageValue(cid,sBike,getCreatureSpeed(cid)) doChangeSpeed(cid,-getCreatureSpeed(cid)) doChangeSpeed(cid,nSpeed) end function BikeSpeedOff(cid) doChangeSpeed(cid,-getCreatureSpeed(cid)) doChangeSpeed(cid,getPlayerStorageValue(cid,sBike)) end local v, r = getCreaturePosition(cid), t[item.itemid] local s = r.s local pos = {x = v.x, y = v.y, z = v.z} if r then if getPlayerStorageValue(cid, 25000) == 5 then return end if getPlayerStorageValue(cid, 23000) == 5 then return end if getPlayerStorageValue(cid, 17001) == 1 or getPlayerStorageValue(cid, 63215) == 1 or getPlayerStorageValue(cid, 17000) == 1 then doPlayerSendCancel(cid, "You can't use bike while ride/fly/surf.") return true end if getPlayerSlotItem(cid, CONST_SLOT_AMMO).uid == item.uid then doPlayerSendCancel("Não está no slot correto") return true end if getPlayerStorageValue(cid, s) <= 0 then doCreatureSay(cid, r.text, 19) setPlayerStorageValue(cid, s, 1) BikeSpeedOn(cid,1250) if getPlayerSex(cid) == 1 then doSetCreatureOutfit(cid, {lookType = 1503, lookHead = 0, lookAddons = 0, lookLegs = 0, lookBody = 0, lookFeet = 0}, -1) else doSetCreatureOutfit(cid, {lookType = 1502, lookHead = 0, lookAddons = 0, lookLegs = 0, lookBody = 0, lookFeet = 0}, -1) end elseif getPlayerStorageValue(cid, s) == 1 then doCreatureSay(cid, r.dtext, 19) setPlayerStorageValue(cid, s, 0) BikeSpeedOff(cid) return doRemoveCondition(cid, CONDITION_OUTFIT) else return doPlayerSendCancel(cid, 'You can\'t do this.') end else return doPlayerSendTextMessage(cid,MESSAGE_STATUS_CONSOLE_BLUE, 'Report bugs in Bike system.') end end Dps em Actions.xml Cole isso <action itemid="12692" script="bike.lua" /> De vermelho ID q dO ITEM Obs: a Bike E so ver no Item Editor Se ajudei REP +
Postado Novembro 15, 2014 10 anos REMOVIDO ! Editado Novembro 15, 2014 10 anos por Nildson (veja o histórico de edições)
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.