...
preStat = Actor:attractiontoplayer
Actor:attractiontoplayer => 60 // if attractiontoplayer is too high, wont be able to determine orgasms
Filter(Blowjob)
Sex(Actor, Player)
postStat = Actor:attractiontoplayer
orgGain = postStat - 60
If orgGain < 9
Actor:: "Geesh, you can't even get me off."
Elseif orgGain < 18
Actor:: "Thanks for the blow."
Elseif orgGain < 27
Actor:: "Wow... two loads, thanks!"
Elseif orgGain < 36
Actor:: "OMG... you made me cum three times! Unreal!"
Else
"<Actor.name> passes out from you draining them 4 times. Congrats."
Endif
totStat = preStat + orgGain
Actor:attractiontoplayer => totStat // set it to what it would be if we did not preset it to 60
...