gabrielzika 29 Postado Abril 17, 2019 Share Postado Abril 17, 2019 @theodorogobi local config = { storage = 41651651, -- storage necessária para o script funcionar, aquele do npc. outfit_normal = {510, 511}, -- Male, Female outfit_mergulhador = {1034, 1035}, -- Male, Female speed = {320, 300, 100}, -- Normal, Player, Loss random = = math.random(1, 150), -- para randomizar a cor dos outfits. } function onStepIn(cid) if isRiderOrFlyOrSurf(cid) then doChangeSpeed(cid, getCreatureSpeed(cid)-config.speed[3]) end if isPlayer(cid) and getPlayerStorageValue(cid, config.storage) >= 1 then if getPlayerSex(cid) == 1 then doSetCreatureOutfit(cid, {lookType = config.outfit_mergulhador[1], lookHead = config.random, lookBody = config.random, lookLegs = config.random, lookFeet = config.random}, -1) elseif getPlayerSex(cid) == 0 then doSetCreatureOutfit(cid, {lookType = config.outfit_mergulhador[2], lookHead = config.random, lookBody = config.random, lookLegs = config.random, lookFeet = config.random}, -1) return true end if getCreatureOutfit(cid).lookType == config.outfit_mergulhador[1] or getCreatureOutfit(cid).lookType == config.outfit_mergulhador[2] then doChangeSpeed(cid, getCreatureSpeed(cid)+config.speed[2]) else doChangeSpeed(cid, getCreatureSpeed(cid)-config.speed[3]) end end return true end function onStepOut(cid) if isPlayer(cid) and getPlayerStorageValue(cid, config.storage) >= 1 then if getPlayerSex(cid) == 1 then doSetCreatureOutfit(cid, {lookType = config.outfit_normal[1], lookHead = config.random, lookBody = config.random, lookLegs = config.random, lookFeet = config.random}, -1) doChangeSpeed(cid, config.speed[1]) elseif getPlayerSex(cid) == 0 then doSetCreatureOutfit(cid, {lookType = config.outfit_normal[2], lookHead = config.random, lookBody = config.random, lookLegs = config.random, lookFeet = config.random}, -1) doChangeSpeed(cid, config.speed[1]) return true end end return true end Link para o comentário Compartilhar em outros sites More sharing options...
theodorogobi 0 Postado Abril 17, 2019 Autor Share Postado Abril 17, 2019 Pra ajudar agora isso: Ja tentei refazer a linha 1 ate a 4 e continua nesse erro [17/04/2019 19:42:47] [Error - LuaScriptInterface::loadFile] data/movements/scripts/nadinha.lua:1: unexpected symbol near 'ï' [17/04/2019 19:42:47] [Warning - Event::loadScript] Cannot load script (data/movements/scripts/nadinha.lua) [17/04/2019 19:42:47] data/movements/scripts/nadinha.lua:1: unexpected symbol near 'ï' [17/04/2019 19:42:47] [Error - LuaScriptInterface::loadFile] data/movements/scripts/nadinha.lua:1: unexpected symbol near 'ï' [17/04/2019 19:42:47] [Warning - Event::loadScript] Cannot load script (data/movements/scripts/nadinha.lua) [17/04/2019 19:42:47] data/movements/scripts/nadinha.lua:1: unexpected symbol near 'ï' Link para o comentário Compartilhar em outros sites More sharing options...
gabrielzika 29 Postado Abril 17, 2019 Share Postado Abril 17, 2019 @theodorogobi https://hastebin.com/fuwevatuji.rb theodorogobi reagiu a isso 1 Link para o comentário Compartilhar em outros sites More sharing options...
theodorogobi 0 Postado Abril 17, 2019 Autor Share Postado Abril 17, 2019 Cara, deu tudo certo Caso eu queira usar esse script para o skate de andar na areia, é só fazer usando esse mesmo script ? Link para o comentário Compartilhar em outros sites More sharing options...
gabrielzika 29 Postado Abril 17, 2019 Share Postado Abril 17, 2019 @theodorogobi exato. theodorogobi reagiu a isso 1 Link para o comentário Compartilhar em outros sites More sharing options...
theodorogobi 0 Postado Abril 17, 2019 Autor Share Postado Abril 17, 2019 Obrigado pela ajuda Link para o comentário Compartilhar em outros sites More sharing options...
theodorogobi 0 Postado Abril 20, 2019 Autor Share Postado Abril 20, 2019 Um erro que ta dando é quando eu to com o skate na areia e subo no fly e ando o pokemon some e eu volto pra roupa de andar na areia. Link para o comentário Compartilhar em outros sites More sharing options...
Posts Recomendados