exhibitionism.qsrc 996 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # exhibitionism
  2. !!{ 1 point for exposing breasts, 2 for ass and 3 for pussy. 4 for extreme nude situations
  3. use the following gosub to add to it:
  4. gs 'exhibitionism', 3
  5. The last number being the desired level
  6. Use of rand should still work
  7. }
  8. if ARGS[0] > 4: ARGS[0] = 4
  9. if ARGS[0] = 1:
  10. pcs_exhib += 1
  11. if exhibitionist_lvl = 1: arousal += 5
  12. if exhibitionist_lvl = 2: arousal += 10
  13. if exhibitionist_lvl = 3: arousal += 15
  14. elseif ARGS[0] = 2:
  15. pcs_exhib += 2
  16. if exhibitionist_lvl = 1: arousal += 10
  17. if exhibitionist_lvl = 2: arousal += 20
  18. if exhibitionist_lvl = 3: arousal += 30
  19. elseif ARGS[0] = 3:
  20. pcs_exhib += 3
  21. if exhibitionist_lvl = 1: arousal += 15
  22. if exhibitionist_lvl = 2: arousal += 25
  23. if exhibitionist_lvl = 3: arousal += 40
  24. elseif ARGS[0] = 4:
  25. pcs_exhib += 4
  26. if exhibitionist_lvl = 1: arousal += 20
  27. if exhibitionist_lvl = 2: arousal += 40
  28. if exhibitionist_lvl = 3: arousal += 80
  29. end
  30. if pcs_exhib > 100: pcs_exhib = 100
  31. --- exhibitionism ---------------------------------