sol Posted November 13, 2017 Report Share Posted November 13, 2017 hi, les cuento tengo esta quest de montura, la cual es para unas monturas nuevas que e agregado. el problema es que en el sello me sale 3 hs de uso. quisiera si me pueden modificar esta quest. la cual al hacerle clic me salga este menú, desea subirse a la montura, desea bajarse o desea alimentar a la montura. quest mamut begin state start begin when 52154.use begin pc.mount(215, 60*60*5) end end end y este es el item de la comida 38100 Supercomida (3 dias) 38101 Supercomida (7 dias) 38102 Supercomida (15 dias) también tengo la quest de evolución de monturas pero no logro editarla para que solo me permita llamar la montura y darle de comer ya que estas nuevas monturas no tiene evolución. de ya muchas gracias Link to comment Share on other sites More sharing options...
Dilong Posted November 14, 2017 Report Share Posted November 14, 2017 Spoiler quest sello begin state start begin when 52001.use begin local s = select("Subir","Bajar","Aumentar tiempo","Cancelar") if s == 4 then return elseif s == 1 then if pc.is_mount() then chat("error") return end if pc.is_polymorphed() then chat("error") return end pc.mount(20205, 60*5) elseif s == 2 then pc.unmount() elseif s == 3 then local s2 = select("tiempo","Cerrar") if s2 == 2 then return elseif s2 == 1 then if pc.count_item(38100)< 1 then say("error") else item.set_socket(idsocket,240) -- socket encargado del tiempo 240 -- duracion pc.remove_item(38100,1) end end end end end end Seri asi Link to comment Share on other sites More sharing options...
Recommended Posts