quest_hotel_maid.tw 1.3 KB

123456789101112131415161718192021222324252627282930
  1. :: quest_hotel_maid
  2. <<switch $location_var[$here][0]>>
  3. <<case 'title'>>
  4. <<set $result ="Hotel Maid">>
  5. <<case 'start'>>
  6. <<set $quest('hotel_maid').workTotal = 0>>
  7. <<set $quest('hotel_maid').paymentsLeft = 0>>
  8. <<case 'stageDescription'>>
  9. <<switch $location_var[$here][1]>>
  10. <<case 0>>
  11. <<set $result =`You have talked with the receptionist of the hotel of Pavlovsk.
  12. She told you to speak to the manager if you are interested in working as a maid.
  13. You can do so between 11:00 and 15:00 every day.`>>
  14. <<case 1>>
  15. <<set $result =`You have been offered a job as a maid at the hotel of Pavlovsk.
  16. If you want to take it, you will need to speak to the manager again.
  17. You can do so between 11:00 and 15:00 every day.`>>
  18. <<case 10>>
  19. <<set $result =`You have accepted the job as a maid at the hotel of Pavlovsk.
  20. You can work any day you like, but you have to start between 16:00 and 17:00.
  21. A maid uniform will be provided to you.`>>
  22. <</switch>>
  23. <<case 'vars'>>
  24. <<switch $location_var[$here][1]>>
  25. <<case 'isMaid'>>
  26. <<set $result = ($q.questIsActive('hotel_maid') && $quest('hotel_maid').stage >= 10)>>
  27. <<case 'salary'>>
  28. <<set $result = 375>>
  29. <</switch>>
  30. <</switch>>