Advertisement
Guest User

Cramirez

a guest
Sep 16th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.91 KB | None | 0 0
  1. quest comprar_tetrika begin
  2.     state start begin
  3.         when 20016.CHAT. "Chapa De Reaper" begin
  4.             say_title("Juntador de chapas")
  5.             say("")
  6.             if pc.count_item(30195,30196) >= 1 then
  7.                 say("Vaya por lo que veo tienes las dos partes de la chapa")
  8.                 say("Te dare tu chapa para poder entrar a catacumbas :P.")
  9.                 say("EEE pero ten cuidado, es un sitio muy peligroso")
  10.                 say("Que Cosmos te acompañe :D")  
  11.                 local a = select("Damelo","No, mejor no")
  12.                 if a == 2 then return end
  13.                     if a == 1 then
  14.                     pc.give_item2(30194, 1)
  15.                     pc.remove_item(30195, 1)
  16.                     pc.remove_item(30196, 1)
  17.                 end
  18.             else
  19.                 say("Tienes que tener estos Items para")
  20.                 say("conseguir juntar y crear la chapa.:[ENTER]")
  21.                 say_item_vnum(30195)
  22.                 say_item_vnum(30196)
  23.                 say("No puedo juntarte la chapa si no me traes las partes.")
  24.                 say("Vuelve cuando tengas las dos partes.")
  25.                 return
  26.             end
  27.         end
  28.     end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement