1
0

music_bedroompractice.qsrc 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. # music_bedroompractice
  2. if $ARGS[0] = 'guitar':
  3. *clr & cla
  4. minut += 30
  5. ml_performed_minutes += 15
  6. '<center><img <<$set_imgh>> src="images/pc/activities/music/guitarpractice_1.jpg"></center>'
  7. if ml_guitarlessoncount = 0 and ml_chordbook = 1 and instrmusic_lvl <= 15:
  8. 'You open the book you got from Jimmy and start to practice the chords and basic techniques on the guitar'
  9. instrmusic_exp += rand(1,3)
  10. elseif ml_guitarlessoncount = 0 and ml_chordbook = 1 and instrmusic_lvl > 15 and instrmusic_lvl < 25 and internet < 1:
  11. 'You open the chordbook you got from Jimmy and start to practice, but you feel that you don''t really improve that much'
  12. instrmusic_exp += rand(1,2)
  13. elseif ml_guitarlessoncount = 0 and ml_chordbook = 1 and instrmusic_lvl > 15 and internet > 0:
  14. 'You look at the book you got from Jimmy, then decide to turn to the internet for new lessons.'
  15. instrmusic_exp += rand(1,3)
  16. elseif ml_guitarlessoncount > 0:
  17. 'You pick up you guitar and the lessons from the guitar teacher and start to practice.'
  18. instrmusic_exp += rand(2,5)
  19. end
  20. if $loc = 'sitr':
  21. act 'Finish practice': gt $loc
  22. else
  23. act 'Finish practice': gt $loc, 'start'
  24. end
  25. end
  26. --- music_bedroompractice ---------------------------------