actress.qsrc 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # actress
  2. !! Job Categories:
  3. !! roletype = 1 - Just a background extra
  4. !! roletype = 2 - An extra that appears in skimpy clothing or underwear
  5. !! roletype = 3 - An extra with one or more nude scenes
  6. !! roletype = 4 - A minor speaking part
  7. !! roletype = 5 - A minor speaking part with a nude scene
  8. !! roletype = 6 - A secondary or recurring character
  9. !! roletype = 7 - A secondary or recurring character with nude scenes
  10. !! roletype = 8 - A main character
  11. !! roletype = 9 - A main character with nude scenes
  12. !! Secondary Character Roles
  13. if $ARGS[0] = 'scene_prep':
  14. !!$acting_preparedness =
  15. !! if audition['scene_prep'] > 15:
  16. cla & *clr
  17. '<center><img <<$set_imgh>> src="images/shared/accessories/acting/script.jpg"></center>'
  18. 'You open up your copy of the script and skim the words thinking about what to do.'
  19. act'Put down the script':gt $loc, $loc_arg
  20. act'Practice for your role (0:15)':
  21. cla & *clr
  22. '<center><img <<$set_imgh>> src="images/shared/accessories/acting/rehearse.jpg"></center>'
  23. minut += 15
  24. audition['scene_prep'] += 1
  25. 'You spend a bit of time practicing your lines and actions. Most of the time is just spent memorizing the dialogue, you can''t really get into the mindset of the role in only fifteen minutes.'
  26. act'Continue':gt'actress','scene_prep'
  27. end
  28. act'Practice for your role (0:30)':
  29. cla & *clr
  30. '<center><img <<$set_imgh>> src="images/shared/accessories/acting/rehearse.jpg"></center>'
  31. minut += 15
  32. audition['scene_prep'] += 2
  33. 'You spend some time practicing your lines and actions. Most of the time is just spent memorizing the dialogue, but you manage to incorporate some of the posture your character might have and how you might hold yourself during filming.'
  34. act'Continue':gt'actress','scene_prep'
  35. end
  36. act'Practice for your role (0:45)':
  37. cla & *clr
  38. '<center><img <<$set_imgh>> src="images/shared/accessories/acting/rehearse.jpg"></center>'
  39. minut += 15
  40. audition['scene_prep'] += 3
  41. 'You spend a good amount of time practicing your lines and actions. You manage a good amount of progress on memorizing your lines and even think of a few hand motions your character might use.'
  42. act'Continue':gt'actress','scene_prep'
  43. end
  44. act'Practice for your role (1:00)':
  45. cla & *clr
  46. '<center><img <<$set_imgh>> src="images/shared/accessories/acting/rehearse.jpg"></center>'
  47. minut += 15
  48. audition['scene_prep'] += 5
  49. 'You spend a full hour practicing your lines and actions. Not only do you get a decent amount of time in memorizing your lines, but you really manage to get into character during this time. How you should hold yourself, how you should talk, how you should <i>feel</i>, and you feel a good deal more confident in getting into the role.'
  50. act'Continue':gt'actress','scene_prep'
  51. end
  52. end
  53. --- actress ---------------------------------