set_home.qsrc 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # set_home
  2. curr_home = ARGS[0]
  3. if curr_home = 1:
  4. $home_name = 'City residential apartment'
  5. $home_town = 'city'
  6. $home_location = 'city_residential'
  7. $home_entrance = 'korr'
  8. elseif curr_home = 2:
  9. $home_name = 'Parent''s home in Pavlovsk'
  10. $home_town = 'pavlovsk'
  11. $home_location = 'pav_complex'
  12. $home_entrance = 'korrPar'
  13. elseif curr_home = 3:
  14. $home_name = 'My cottage in the cooperative farm'
  15. $home_town = 'city'
  16. $home_location = 'dachamy'
  17. $home_entrance = 'dachamy'
  18. elseif curr_home = 4:
  19. $home_name = 'Old town apartment'
  20. $home_town = 'oldtown'
  21. $home_location = 'liames'
  22. $home_entrance = 'korr2x'
  23. elseif curr_home = 5:
  24. $home_name = 'My mansion'
  25. $home_town = 'city'
  26. $home_location = 'youplace'
  27. $home_entrance = 'ymans'
  28. elseif curr_home = 6:
  29. $home_name = 'My hotel room in Pavlovsk'
  30. $home_town = 'pavlovsk'
  31. $home_location = 'pav_train'
  32. $home_entrance = 'HotelHole'
  33. elseif curr_home = 7:
  34. $home_name = 'Nicholas'' Apartment'
  35. $home_town = 'city'
  36. $home_location = 'city_center'
  37. $home_entrance = 'nichBedroomServant'
  38. elseif curr_home = 8:
  39. $home_name = 'Niko''s apartment'
  40. $home_town = 'pavlovsk'
  41. $home_location = 'pav_residential'
  42. $home_entrance = 'pav_residential'
  43. elseif curr_home = 9:
  44. $home_name = 'Uncle Sergey''s apartment'
  45. $home_town = 'pavlovsk'
  46. $home_location = 'pav_complex'
  47. $home_entrance = 'shulgahall'
  48. elseif curr_home = 10:
  49. $home_name = 'Lyceum school'
  50. $home_town = 'pavlovsk'
  51. $home_location = 'pav_commercial'
  52. $home_entrance = 'etoexhib'
  53. elseif curr_home = 11:
  54. $home_name = 'University halls'
  55. $home_town = 'city'
  56. $home_location = 'city_island'
  57. $home_entrance = 'obroom'
  58. elseif curr_home = 12:
  59. $home_name = 'Hunter''s lodge in Gadukino'
  60. $home_town = 'gadukino'
  61. $home_location = 'swamp_yard'
  62. $home_entrance = 'swamphouse'
  63. elseif curr_home = 13:
  64. $home_name = 'Shared apartment in Pavlovsk'
  65. $home_town = 'pavlovsk'
  66. $home_location = 'pav_complex'
  67. $home_entrance = 'korrPar'
  68. elseif curr_home = 14:
  69. $home_name = 'Grandparent''s house in Gadukino'
  70. $home_town = 'gadukino'
  71. $home_location = 'gaddvor'
  72. $home_entrance = 'gaddvor'
  73. end
  74. --- set_home ---------------------------------