script.lua(檔案已創建)
| @@ -0,0 +1,25 @@ | |||
| 1 | + | WeekOne = {} | |
| 2 | + | function WeekOne.morning () | |
| 3 | + | player.at = "home" | |
| 4 | + | player.x = bed.x | |
| 5 | + | player.y = bed.y | |
| 6 | + | ||
| 7 | + | add (home_door) (bed) (computer) (player) () | |
| 8 | + | ||
| 9 | + | interaction (home_door) (player) (then_go_to (WeekOne.work)) | |
| 10 | + | ||
| 11 | + | interaction (computer) (player) ( | |
| 12 | + | then_message "Wish I had time for a quick browse, but I can't afford the distraction." | |
| 13 | + | ) | |
| 14 | + | ||
| 15 | + | interaction (player) (bed) ( | |
| 16 | + | then_message "haha, I wish I could sleep in more. But need to get that money." | |
| 17 | + | ) | |
| 18 | + | ||
| 19 | + | sequence (function() | |
| 20 | + | say "Whelp, time for another week of work. [>]" | |
| 21 | + | say "Work's been super busy. [>]" | |
| 22 | + | say "It's a tough market to be a software shop. [>]" | |
| 23 | + | say "Anyways, I should probably get to work. [>]" | |
| 24 | + | end) | |
| 25 | + | end | |
上一頁
下一頁