din_npc 308 B

123456789101112131415161718
  1. # din_npc
  2. ! enables going home to current house
  3. ! 1 = parents house
  4. ! 2 = Grandparents House
  5. ! 3 = St. Petersburg Apt
  6. $go_home = {
  7. if curr_home = 1:
  8. gt 'pavResidential'
  9. elseif curr_home = 2:
  10. gt 'gadukino'
  11. elseif curr_home = 3:
  12. gt 'street'
  13. end
  14. }
  15. --- din_npc ---------------------------------