music_bedroompractice.qsrc 1.5 KB

123456789101112131415161718192021222324252627282930313233
  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. '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.'
  10. '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. '
  11. instrmusic_exp += rand(1,3)
  12. elseif ml_guitarlessoncount = 0 and ml_chordbook = 1 and instrmusic_lvl > 15 and instrmusic_lvl < 25 and internet < 1:
  13. 'You open the chordbook you got from Jimmy and start to practice, but you feel that you don''t really improve that much.'
  14. instrmusic_exp += rand(1,2)
  15. elseif ml_guitarlessoncount = 0 and ml_chordbook = 1 and instrmusic_lvl > 15 and internet > 0:
  16. 'You look at the book you got from Jimmy, then decide to turn to the internet for new lessons.'
  17. instrmusic_exp += rand(1,3)
  18. elseif ml_guitarlessoncount > 0:
  19. 'You pick up you guitar and the lessons from the guitar teacher and start to practice.'
  20. instrmusic_exp += rand(2,5)
  21. end
  22. if $loc = 'sitr':
  23. act 'Finish practice': gt $loc
  24. else
  25. act 'Finish practice': gt $loc, 'start'
  26. end
  27. end
  28. --- music_bedroompractice ---------------------------------