Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---------------------------------
- -- Shader elevator logic data. Yes, this is not a uniform elevator.
- -- Some elevators can take you to other places.
- ---------------------------------
- module ( "ms" , package.seeall )
- Elevators = {
- ["mro" ]={ name= "Maintenance room", -- This room allows you to go anywhere.
- targets={
- ["theater"]= "Theater Entrance",
- ["lup"]= "Lobby Place A",
- ["lobby"]= "Lobby Place B",
- ["buildflat"]= "Build Area",
- ["buildrp"]= "Build City",
- ["ocean"]= "Fishing House",
- ["ocean2"]= "Fishing Dock",
- ["elevatordrop"]= "Hell",
- ["activisel"]= "Games",
- ["soccer"]= "Soccer Field",
- },
- },
- -- Lobby Advanced
- ["lup" ]={ name= "Lobby",
- targets={
- ["theater"]= "Theater Entrance",
- ["buildflat"]= "Build Area",
- ["fakeloop"]= "Build Loop",
- ["buildrp"]= "Build City",
- ["ocean"]= "Fishing House",
- ["ocean2"]= "Fishing Dock",
- ["activisel"]= "Games",
- ["soccer"]= "Soccer Field",
- },
- },
- -- Lobby newcomer
- ["lobby" ]={ name= "Lobby",
- targets={
- ["theater"]= "Theater",
- ["buildflat"]= "Build",
- ["ocean"]= "Fishing",
- },
- },
- ["theater" ]={ name= "Theater",
- targets={
- ["lobby"]= "Leave",
- ["elevatordrop"]= "ITS A TRAP",
- ["buildflat"]= "Build",
- },
- },
- ["buildflat" ]={ name= "Build Area",
- targets={
- ["lobby"]= "Leave",
- ["buildrp"]= "Build City",
- ["ocean"]= "Fishing House",
- ["fakeloop"]= "Build Loop",
- ["ocean2"]= "Fishing Dock",
- },
- },
- ["buildrp" ]={ name= "Build Area - City",
- targets={
- ["lobby"]= "Leave",
- ["buildflat"]= "Build",
- ["fakeloop"]= "Build Loop",
- ["ocean"]= "Fishing House",
- ["ocean2"]= "Fishing Dock",
- },
- },
- ["ocean" ]={ name= "Fishing house",
- targets={
- ["lobby"]= "Leave",
- ["buildflat"]= "Build",
- },
- },
- ["ocean2" ]={ name= "Fishing Dock",
- targets={
- ["lobby"]= "Leave",
- ["buildflat"]= "Build",
- },
- },
- ["elevatordrop" ]={ name= "Welcome. to. HELL!",
- targets={
- ["elevatordrop"]= "Leave, or not",
- },
- },
- ["activisel"]={ name= "Activity Selection",
- targets={
- ["lobby"]= "Leave",
- },
- },
- ["soccer" ]={ name= "Soccer Field",
- targets={
- ["lobby"]= "Leave",
- },
- },
- ["fakeloop" ]={ name= "Almost fun loop",
- targets={
- ["lobby"]= "Leave",
- },
- },
- }
Advertisement
Add Comment
Please, Sign In to add comment