Advertisement
Guest User

Quest for gianfro95x by xXIntelXx aka Naos~ Roberto I.

a guest
Sep 25th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.17 KB | None | 0 0
  1. quest tutto begin
  2.     state start begin
  3.         when 20095.chat."Tutto" begin
  4.             say_title("Tutto")
  5.             say("Ciao cosa vuoi fare??")
  6.             local a = select("Diventare grasso","Laggare","Essere powa","Diventare brutto","Annulla")
  7.             if a == 1 then
  8.                 say("Ok diventerai grasso continui??")
  9.                 local grasso = select("Si","No")
  10.                 if grasso == 1 then
  11.                     say("Ecco a te :P")
  12.                     notice_all("Un player \232 diventato grasso sta a voi capirlo haha ")
  13.                     chat("Sei diventato grasso xD")
  14.                     pc.polymorph(20031, 2*60)
  15.                     set_state("rimuovi")
  16.                     if grasso == 2 then
  17.                         say("Torna quando vuoi")
  18.                     end
  19.                 end
  20.             end
  21.             if a == 2 then
  22.                 say("Così facendo laggherai continui??")
  23.                 local lag = select("Si","No")
  24.                 if lag == 1 then
  25.                     say("Ecco a te :P")
  26.                     notice_all("Un player da adesso laggher\224 sta a voi capirlo haha")
  27.                     chat("Adesso laggherai xD")
  28.                     if lag == 2 then
  29.                         say("Torna quando vuoi")
  30.                     end
  31.                 end
  32.             end
  33.             if a == 3 then
  34.                 say("Vuoi essere powa??")
  35.                 local powa = select("Si","No")
  36.                 if powa == 1 then
  37.                     say("Ecco a te :P")
  38.                     notice_all("Un player è diventato powa sta a voi scoprirlo xD")
  39.                     chat("Sei diventato powa xD")
  40.                     if powa == 2 then
  41.                         say("Torna quando vuoi")
  42.                     end
  43.                 end
  44.             end
  45.             if a == 4 then
  46.                 say("Vuoi essere brutto??")
  47.                 local brutto = select("Si","No")
  48.                 if brutto == 1 then
  49.                     say("Ecco a te :P")
  50.                     notice_all("Un player è diventato brutto sta a voi scoprirlo xD")
  51.                     chat("Sei diventato bruto xD")
  52.                     pc.polymorph(20011, 2*60)
  53.                     set_state("rimuovi")
  54.                     if brutto == 2 then
  55.                         say("Torna quando vuoi")
  56.                     end
  57.                 end
  58.             end
  59.             if a == 5 then
  60.                 say("Torna quando vuoi")
  61.             end
  62.         end
  63.     end
  64.    
  65.     state rimuovi begin
  66.         when letter begin
  67.             if pc.is_polymorphed() then
  68.                 send_letter("Rimuovi trasformazione")
  69.             end
  70.         end
  71.  
  72.  
  73.         when button or info begin
  74.             if pc.is_polymorphed() then
  75.                 say_title("Rimuovi trasformazione")
  76.                 say("Vuoi rimuovere la trasformazione?[ENTER]")
  77.                 local a = select("Si","No")
  78.                 if a == 2 then
  79.                     pc.remove_polymorph()
  80.                 end
  81.             end
  82.     set_state("__COMPLETE__")
  83.     end
  84.     state __COMPLETE__ begin
  85.     end
  86. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement