Advertisement
Guest User

Untitled

a guest
May 26th, 2016
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. quest anneaudumagasinier begin
  2.     state start begin
  3.         when 40004.use begin
  4.             say_title("Anneau du magasinier:")
  5.             say("Tu m'as invoquĂ©, choisis ce que tu souhaites faire?")
  6.             local s = select("Ouvrir entrepot", "Ouvrir entrepot IS", "Fermer")
  7.             setskin(NOWINDOW)
  8.             if s == 1 then
  9.                 game.open_safebox()
  10.             elseif s == 2 then
  11.                 game.open_mall()
  12.             elseif s == 3 then
  13.             return
  14.             end
  15.         end
  16.     end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement