Advertisement
Guest User

Untitled

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