cum_call 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # cum_call
  2. !{$ARGS[0] is for the location and should be set for all but vaginal:
  3. 'labia' - 'pantyfront' - 'anus' - 'butt' - 'pantyrear' - 'clothesgroin' - 'clothes' - 'back' - 'legs'
  4. 'arms' - 'face' - 'mouth' - 'hands' - 'stomach' - 'breasts' - 'hair' - 'internalcondom'
  5. $ARGS[1] is for the name of the sexual partner, set as '' (blank) if PC should not know name
  6. ARGS[2] is volume, default is 40 (4ml)
  7. ARGS[3] is contraception, if left blank it will use the default, if you want to force a particular type:
  8. 1 - he thought you were on the pill but you weren't.
  9. 2 - you are on the Pill
  10. 3 - Condom. Condoms can still fail vy the code.
  11. 4 - the Condom Broke. This is mostly used to check if cum manage resulted in a broken condom.
  12. 5 - the Condom Slipped off. Like 4, this is mostly to check if the contraception of 3 had a failure. But both 4 and 5 can be specified if you want to write an event where it fails no matter what.
  13. 6 - the condom was Sabotaged but the main character shouldn't know that
  14. 7 - the Condom was Sabotaged by the main character.
  15. ARGS[4] is for changing the potency, -1 for unable to impregnate, default is 10,000
  16. ARGS[5] is a special unaware, for things like unconscious sex, set to 1 for on
  17. For a simple call you only need the first 2, ie:
  18. gs 'cum_call', 'anus', 'Kolka' - for a known partner
  19. gs 'cum_call', 'anus' - for an unknown partner}
  20. if ARGS[5] = 1:
  21. sexunaware = 1
  22. else:
  23. sexpartkno = 1
  24. end
  25. if ARGS[4] ! 0:
  26. sexspecpot = ARGS[4]
  27. end
  28. if ARGS[3] = 1:
  29. sexcontra = 1
  30. elseif ARGS[3] = 2:
  31. sexcontra = 2
  32. elseif ARGS[3] = 3:
  33. sexcontra = 3
  34. elseif ARGS[3] = 4:
  35. sexcontra = 4
  36. elseif ARGS[3] = 5:
  37. sexcontra = 5
  38. elseif ARGS[3] = 6:
  39. sexcontra = 6
  40. elseif ARGS[3] = 7:
  41. sexcontra = 7
  42. end
  43. if ARGS[2] ! 0:
  44. sexvolume = ARGS[2]
  45. end
  46. if $ARGS[1] ! '': sexpartkno = 1 & $cumboy = $boy & $boy = $ARGS[1]
  47. if $ARGS[0] = 'labia':
  48. spafinloc = 1
  49. elseif $ARGS[0] = 'pantyfront':
  50. spafinloc = 2
  51. elseif $ARGS[0] = 'anus':
  52. spafinloc = 3
  53. elseif $ARGS[0] = 'butt':
  54. spafinloc = 4
  55. elseif $ARGS[0] = 'pantyrear':
  56. spafinloc = 5
  57. elseif $ARGS[0] = 'clothesgroin':
  58. spafinloc = 6
  59. elseif $ARGS[0] = 'clothes':
  60. spafinloc = 7
  61. elseif $ARGS[0] = 'back':
  62. spafinloc = 8
  63. elseif $ARGS[0] = 'legs':
  64. spafinloc = 9
  65. elseif $ARGS[0] = 'arms':
  66. spafinloc = 10
  67. elseif $ARGS[0] = 'face':
  68. spafinloc = 11
  69. elseif $ARGS[0] = 'mouth':
  70. spafinloc = 12
  71. elseif $ARGS[0] = 'hands':
  72. spafinloc = 13
  73. elseif $ARGS[0] = 'stomach':
  74. spafinloc = 14
  75. elseif $ARGS[0] = 'breasts':
  76. spafinloc = 15
  77. elseif $ARGS[0] = 'hair':
  78. spafinloc = 16
  79. elseif $ARGS[0] = 'internalcondom':
  80. spafinloc = 17
  81. else
  82. spafinloc = 0
  83. !Vagina and default
  84. end
  85. gs 'Cum_Manage'
  86. $boy = $cumboy
  87. --- cum_call ---------------------------------