music_gigstarts.qsrc 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # music_gigstarts
  2. !! This is where all the gig introduction meetings will go (pub owners, cafe managers, etc.)
  3. if $ARGS[0] = 'delparco_start':
  4. '<center><img <<$set_imgh>> src="images/pc/activities/music/busking.jpg"></center>'
  5. 'As you finish your set, a tall woman steps up to you with a smile. "Hi, you are really good at this." she looks at you thoughtfully, then nods. "I''m Zariyah, I''m managing Del Parco and we are planning to run some live music evenings. Would you be interested in playing in a more formal setting?"'
  6. if pcs_inhib < 30:
  7. if pcs_inhib < 10:
  8. $diff = 'hard'
  9. elseif pcs_inhib < 20:
  10. $diff = 'medium'
  11. else
  12. $diff = 'easy'
  13. end
  14. gs 'willpower', 'skill', 'self', $diff
  15. will_cost = (will_cost * 3) - (pcs_perform)
  16. if will_cost <= pcs_willpwr:
  17. act 'Accept (<<will_cost>> Willpower)': gt 'music_gigstarts', 'delparco_accept'
  18. else
  19. act 'Accept (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
  20. end
  21. else
  22. act 'Accept (<<will_cost>> Willpower)': gt 'music_gigstarts', 'delparco_accept'
  23. end
  24. act 'Decline': gt 'music_gigstarts', 'delparco_decline'
  25. end
  26. if $ARGS[0] = 'delparco_accept':
  27. *clr & cla
  28. ml_venues['del_parco'] = 1
  29. ml_delparcoQW = 2
  30. ml_delparcogigdeadline = daystart + (12 - week)
  31. '<center><img <<$set_imgh>> src="images/pc/activities/music/zariyah.jpg"></center>'
  32. 'You look at the woman a bit surprised, then you smile back "Of course! I mean... you mean like a proper stage performance?"'
  33. 'She nods "Well, it''s a small cafe so you wouldn''t be playing on a stage, per se, but yes, in front of people. You would sing and play your music." she looks at her watch "I will have to go, but please come to the cafe before next Friday, during the week, and we can discuss the details. Poka!" she gives a small wave and hurries off.'
  34. act 'Leave': gt $loc, 'start'
  35. end
  36. if $ARGS[0] = 'delparco_decline':
  37. *clr & cla
  38. ml_venues['del_parco'] = 1
  39. ml_delparcoQW = 1
  40. ml_delparcogigdeadline = daystart + (12 - week)
  41. '<center><img <<$set_imgh>> src="images/pc/activities/music/zariyah.jpg"></center>'
  42. 'You look at the woman a bit surprised "I''m... that''s really nice but... I''m not sure... "'
  43. 'She looks at you for a long moment then shakes her head "You need to be a bit more confident if you want do anything with music. Listen" she looks at her watch " I have to run, but if you change your mind, come to the cafe during the week before next Saturday. You are good, and you should not miss out on opportunities." she says before heading off."'
  44. act 'Leave': gt $loc, 'start'
  45. end
  46. --- music_gigstarts ---------------------------------