gad_gpchores.qsrc 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # gad_gpchores
  2. !! Modified date: June, 2024
  3. !! Version: .1 - initial initial release
  4. !! Author: Hooded Silence
  5. !!
  6. !! Task initiator for the grandparents chores whilst Sveta is staying with grandparents.
  7. if $ARGS[0] = 'init':
  8. if gp_chores['active'] > 1:
  9. gt 'gad_gpchores', 'active'
  10. end
  11. gs 'gp_chores', 'convo'
  12. end
  13. if $ARGS[0] = 'active':
  14. end
  15. !! Conversations
  16. if $ARGS[0] = 'convo':
  17. if gp_chores = 0:
  18. 'You approach your <relation> to ask if they have any jobs for you today.'
  19. if gp_chores['mood'] < 0:
  20. gp_chores['bonus'] = 0
  21. 'You are lazy {mc}, i am not sure if you can be trusted to do your share.'
  22. elseif gp_chores['mood'] < 10:
  23. 'Your <relation gives you a hard stare, you are nothing about a layabout. Get out of my sight!'
  24. elseif gp_chores['mood'] > 10:
  25. gp_chores['bonus'] = 10
  26. 'You have been so helpful {mc}, it is wonderful to have you with us. Here''s a something little extra for you. '
  27. elseif gp_chores['mood'] > 20:
  28. gp_chores['bonus'] = 20
  29. 'Your <relation> face lights up when they see you. You have been such a hardworking girl, you''re mother will be so proud of how diligant you become. Here have a little extra cash for your efforts.'
  30. !! potential for helping in village with high rep?
  31. end
  32. end
  33. if gp_chores['active'] = -1:
  34. gp_chores['failed'] += 1
  35. gp_chores['mood'] -= 1
  36. end
  37. if gp_chores['active'] = 5:
  38. gp_chores['completed'] += 1
  39. gp_chores['mood'] += 1
  40. end
  41. end
  42. --- gad_gpchores ---------------------------------