Frankenstein Posted July 14, 2013 Report Share Posted July 14, 2013 ya que cuando la meto al server no hace nada es como sino metiera la quest... :/ quest cambio_pez begin state start begin when 20093.chat."Cambia tu Pez" begin say_title("Hola "..pc.get_name().."") say("Yo te doy la posibilidad de cambiár tu Pez") say("Por un 5 bonus.") say_reward("Deseas cambiar tu Pez") local s = select ("Si","No) if s == 2 then return end if s == 1 then pc.remove_item(vnum pez) pc.give_item2("70024", 1) chat("Haz recibido tu 5 Bonus correctamente.") end end end end Link to comment Share on other sites More sharing options...
PACI Posted July 14, 2013 Report Share Posted July 14, 2013 Hiciste ./qc y reload q? Link to comment Share on other sites More sharing options...
TheSanto Posted July 14, 2013 Report Share Posted July 14, 2013 te falta el comando del pez Link to comment Share on other sites More sharing options...
Frankenstein Posted July 14, 2013 Author Report Share Posted July 14, 2013 ya hice ./qc y reload pero es del comando del pez es poner type 18 tambien lo hice... entonces no se que sera :/ Link to comment Share on other sites More sharing options...
Ðro Posted July 15, 2013 Report Share Posted July 15, 2013 Prueba cambiando esto: pc.give_item2("70024", 1) por pc.give_item2(70024, 1) Link to comment Share on other sites More sharing options...
F30 Posted July 15, 2013 Report Share Posted July 15, 2013 quest cambio_pez begin state start begin when 20093.chat."Cambia tu Pez" begin say_title("Hola "..pc.get_name().."") say("Yo te doy la posibilidad de cambiár tu Pez") say("Por un 5 bonus.") say_reward("Deseas cambiar tu Pez") local s = select ("Si","No") if s == 2 then return end if s == 1 then pc.remove_item(vnum pez) pc.give_item2("70024, 1") chat("Haz recibido tu 5 Bonus correctamente.") end end end end no estoy seguro que esta bien pero prueba asi lo que coregii fue lo que sale con rojo si no funcciona cambia : pc.give_item2("70024, 1") por pc.give_item2("70024"," 1") espero que te sirva Link to comment Share on other sites More sharing options...
Croqueta Posted July 19, 2013 Report Share Posted July 19, 2013 quest cambio_pez begin state start begin when 20093.chat."Cambia tu Pez" begin say_title("Hola "..pc.get_name().."") say("Yo te doy la posibilidad de cambiár tu Pez") say("Por un 5 bonus.") say_reward("Deseas cambiar tu Pez") if select ("Si","No")==2 then return end pc.remove_item(vnum,cantidad) pc.give_item2(70024, 1) chat("Haz recibido tu 5 Bonus correctamente.") end endend Link to comment Share on other sites More sharing options...
Recommended Posts