rylasasin Posted May 1, 2012 Posted May 1, 2012 I have two questsions, and even though they're completely different subject matters I'm just going to ask them in the same thread anyway to kill two birds with one stone. 1. Is there an easy way to call specific sex positions from a list instead of having to put a rand list in each dialogue script? Like Say instead of just "I want to be fucked in the pussy" (which calls a random vagininal animation if you use the isvaginal function), I wanted a "I want it doggie style" and "I want it missionary" and "I want it piledriver" or "I wanna use toys" etc etc. Is there an easy way to do this? Currently I use the sexout sex way of getrandompercent, (example, for doggie-style anal I put this in the script: if GetRandomPercent > 93 set Sexout.anim to 602 elseif GetRandomPercent > 86 set Sexout.anim to 603 elseif GetRandomPercent > 79 set Sexout.anim to 604 elseif GetRandomPercent > 72 set Sexout.anim to 605 elseif GetRandomPercent > 65 set Sexout.anim to 606 elseif GetRandomPercent > 58 set Sexout.anim to 607 elseif GetRandomPercent > 51 set Sexout.anim to 608 elseif GetRandomPercent > 44 set Sexout.anim to 609 elseif GetRandomPercent > 37 set Sexout.anim to 631 elseif GetRandomPercent > 30 set Sexout.anim to 632 elseif GetRandomPercent > 23 set Sexout.anim to 633 elseif GetRandomPercent > 16 set Sexout.anim to 634 elseif GetRandomPercent > 9 set Sexout.anim to 635 elseif GetRandomPercent > 2 set Sexout.anim to 636 else set Sexout.anim to 601 endif However as you can imagine that's rather tedius 1st of all and 2nd it means I'd have to update it every time someone comes out with a new sex anim. I'm wondering if there's an easy way to instead of just calling "from a list of all eligable vaginal sex position animations" there's a way to call from "a list of all eligable DOGGIE STYLE vaginal sex positions" 2. A question for ZAZ/Sexslave: Does anyone have screenshots of all the current bondage anims that ZAZ/Sexslave adds? Reason I ask is because I have a friend that doesn't have the game yet takes an interest in such things (loves to draw) and could use that for inspiration in her pics....
Guest Donkey Posted May 1, 2012 Posted May 1, 2012 Doesn't prideslayer already do the randomizer ?? I think it would be easier just using the options like set Sexout.Sextype To vaginal CIOS SexoutBegin With intializing sextype to Vaginal the system will already chose a number between 601 to 636 You won't have to create so much that your script will run full.
DoctaSax Posted May 1, 2012 Posted May 1, 2012 If you limit yourself to a consecutive string of anims (eg doggystyle anims 601 to 609), you can work with something like set anim to 601 + (GetRandomPercent / 11) Not saying this will get you exactly what you want - the formula's probably a little too rough (random 99 would result in 610, for instance) - but it's something to go on. Edit: actually, after checking http://geck.bethsoft.com/index.php/GetRandomPercent the best formula for that particular string would probably be 601 + (GetRandomPercent * 9 / 100)
Bromm83 Posted May 1, 2012 Posted May 1, 2012 If you have two strings of animations you could do: if GetRandomPercent < 50 set anim to 601 + ((GetRandomPercent * 8) / 100) ; should give 601-609 else set anim to 631 + ((GetRandomPercent * 5) / 100) ; should give 631-636 endif
Recommended Posts
Archived
This topic is now archived and is closed to further replies.