music_bedroompractice.qsrc 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # music_bedroompractice
  2. !! TODO: Practice and Rehearsal - Rename the file too. F
  3. if $ARGS[0] = 'guitar':
  4. *clr & cla
  5. minut += 15
  6. ml_performance['performed_minutes'] += 15
  7. ml_performance['total_time_performed'] += 15
  8. pcs_mood += 5
  9. gs 'stat'
  10. '<center><img <<$set_imgh>> src="images/pc/activities/music/guitarpractice_1.jpg"></center>'
  11. if ml_guitarlesson['lessoncount'] = 0 and ml_guitar['chordbook'] = 1 and instrmusic_lvl <= 10:
  12. gs 'exp_gain', 'instrmusic', rand(1,3)
  13. gs 'pain', 1, 'fingers', 'ache'
  14. gs 'stat'
  15. 'You open the book you got from Jimmy and start to practice the chords and basic techniques on the guitar.'
  16. 'It goes slowly, your fingers get in the way and they start to hurt after a short time as the strings dig into them, but you soldier on until.'
  17. 'The strings still either buzz, or don''t ring but by the end you start to get a feel for how to do it better. '
  18. elseif ml_guitarlesson['lessoncount'] = 0 and ml_guitar['chordbook'] = 1 and instrmusic_lvl > 15 and $access = 'denied':
  19. 'You open the chordbook you got from Jimmy and start to practice, but you feel that you don''t really improve that much.'
  20. gs 'exp_gain', 'instrmusic', rand(1,2)
  21. elseif ml_guitarlesson['lessoncount'] = 0 and ml_guitar['chordbook'] = 1 and instrmusic > 15 and $access ! 'denied':
  22. '<center><video autoplay loop src="images/pc/activities/music/onlineguitarlesson.mp4"></video></center>'
  23. 'You look at the book you got from Jimmy, then decide to turn to the internet for new lessons.'
  24. gs 'exp_gain', 'instrmusic', rand(1,3)
  25. elseif ml_guitarlesson['lessoncount'] > 0 and instrmusic_lvl >= 15 and $access ! 'denied':
  26. gs 'exp_gain', 'instrmusic', rand(2,3)
  27. '<center><video autoplay loop src="images/pc/activities/music/onlineguitarlesson.mp4"></video></center>'
  28. 'You work through the practices from your guitarlesson then turn to the internet to learn some more new songs.'
  29. else
  30. 'You pick up you guitar and the lessons from the guitar teacher and start to practice.'
  31. gs 'exp_gain', 'instrmusic', rand(2,3)
  32. end
  33. act 'Finish practice': gs 'music_actions', 'start'
  34. end
  35. !! TODO: Tie in with the vocal coach at the Industrial Region Community Centre
  36. if $ARGS[0] = 'vocals':
  37. end
  38. if $ARGS[0] = 'rehearse':
  39. *clr & cla
  40. minut += 30
  41. pcs_mood += 5
  42. ml_performance['performed_minutes'] += 30
  43. ml_performance['total_time_performed'] += 30
  44. gs 'stat'
  45. '<center><img <<$set_imgh>> src="images/pc/activities/music/guitarpractice_1.jpg"></center>'
  46. if ml_performance['set_quality'] < 25:
  47. !! TODO: Very, very beginning, many mistakes, frowny..
  48. elseif ml_performance['set_quality'] < 50:
  49. !! TODO: Getting better, the main bits are learned, most of the lyrics remembered
  50. elseif ml_performance['set_quality'] < 75:
  51. !! TODO: Not perfect, could play it with some errors and mistakes
  52. elseif ml_performance['set_quality'] < 95:
  53. !! TODO: Almost perfect, some minor errors, occassionally missed words in the lyrics
  54. else
  55. !! TODO: Done and dusted, learned it all.
  56. end
  57. if ml_performance['set_quality'] < 85:
  58. gs 'exp_gain', 'instrmusic', rand(1,3)
  59. gs 'exp_gain', 'vokal', rand(1,3)
  60. if perform_lvl < 35: gs 'exp_gain', 'perform', rand(1,3)
  61. end
  62. ml_performance['set_quality'] += rand(1,(pcs_instrmusic + pcs_vokal + pcs_perform)/10)
  63. ml_performance['set_lastpracticeday'] = daystart
  64. act 'Finish practice': gs 'music_actions', 'start'
  65. end
  66. --- music_bedroompractice ---------------------------------