CapsAdmin

Untitled

Aug 19th, 2012
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.55 KB | None | 0 0
  1. ---------------------------------
  2. -- Shader elevator logic data. Yes, this is not a uniform elevator.
  3. -- Some elevators can take you to other places.
  4. ---------------------------------
  5. module  ( "ms" , package.seeall )
  6.  
  7. Elevators = {
  8.     ["mro" ]={ name=                "Maintenance room", -- This room allows you to go anywhere.
  9.         targets={
  10.                     ["theater"]=        "Theater Entrance",
  11.                     ["lup"]=            "Lobby Place A",
  12.                     ["lobby"]=          "Lobby Place B",
  13.                     ["buildflat"]=      "Build Area",
  14.                     ["buildrp"]=        "Build City",
  15.                     ["ocean"]=          "Fishing House",
  16.                     ["ocean2"]=         "Fishing Dock",
  17.                     ["elevatordrop"]=   "Hell",
  18.                     ["activisel"]=      "Games",
  19.                     ["soccer"]=         "Soccer Field",
  20.                 },
  21.     },
  22.     -- Lobby Advanced
  23.     ["lup" ]={ name=                "Lobby",
  24.             targets={
  25.                     ["theater"]=        "Theater Entrance",
  26.                     ["buildflat"]=      "Build Area",
  27.                     ["fakeloop"]=       "Build Loop",
  28.                     ["buildrp"]=        "Build City",
  29.                     ["ocean"]=          "Fishing House",
  30.                     ["ocean2"]=         "Fishing Dock",            
  31.                     ["activisel"]=      "Games",
  32.                     ["soccer"]=         "Soccer Field",
  33.                     },
  34.     },
  35.     -- Lobby newcomer
  36.     ["lobby" ]={ name=          "Lobby",
  37.             targets={
  38.                     ["theater"]=        "Theater",
  39.                     ["buildflat"]=      "Build",
  40.                     ["ocean"]=          "Fishing",
  41.                     },
  42.            
  43.     },
  44.     ["theater" ]={ name=            "Theater",
  45.             targets={
  46.                     ["lobby"]=          "Leave",
  47.                     ["elevatordrop"]=   "ITS A TRAP",  
  48.                     ["buildflat"]=      "Build",
  49.                     },
  50.            
  51.     },
  52.     ["buildflat" ]={ name=      "Build Area",
  53.             targets={
  54.                     ["lobby"]=          "Leave",
  55.                     ["buildrp"]=        "Build City",
  56.                     ["ocean"]=          "Fishing House",
  57.                     ["fakeloop"]=       "Build Loop",
  58.                     ["ocean2"]=         "Fishing Dock",
  59.                     },
  60.            
  61.     },
  62.     ["buildrp" ]={ name=            "Build Area - City",
  63.             targets={
  64.                     ["lobby"]=          "Leave",
  65.                     ["buildflat"]=      "Build",
  66.                     ["fakeloop"]=       "Build Loop",
  67.                     ["ocean"]=          "Fishing House",
  68.                     ["ocean2"]=         "Fishing Dock",                    
  69.                     },
  70.     },
  71.     ["ocean" ]={ name=          "Fishing house",
  72.             targets={          
  73.                     ["lobby"]=          "Leave",
  74.                     ["buildflat"]=      "Build",
  75.                     },
  76.     },
  77.     ["ocean2" ]={ name=         "Fishing Dock",
  78.             targets={  
  79.                     ["lobby"]=          "Leave",
  80.                     ["buildflat"]=      "Build",
  81.                    
  82.                     },
  83.     },
  84.     ["elevatordrop" ]={ name=       "Welcome. to. HELL!",
  85.             targets={
  86.                     ["elevatordrop"]=   "Leave, or not",
  87.                     },
  88.     },
  89.  
  90.     ["activisel"]={ name=               "Activity Selection",
  91.             targets={
  92.                     ["lobby"]=          "Leave",           
  93.                     },
  94.            
  95.     },
  96.  
  97.     ["soccer" ]={ name=         "Soccer Field",
  98.             targets={
  99.                     ["lobby"]=          "Leave",           
  100.                     },
  101.     },
  102.     ["fakeloop" ]={ name=           "Almost fun loop",
  103.             targets={
  104.                     ["lobby"]=          "Leave",           
  105.                     },
  106.     },
  107. }
Advertisement
Add Comment
Please, Sign In to add comment