This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
tasks:striporcum [2017/04/07 15:36] liz created |
tasks:striporcum [2018/06/20 17:36] (current) |
||
|---|---|---|---|
| Line 2: | Line 2: | ||
| Title:Strip or Cum | Title:Strip or Cum | ||
| Sex: Female T Male T Trans T | Sex: Female T Male T Trans T | ||
| - | Require: | + | Require: cancum |
| - | Limits: | + | Limits: |
| - | ; Will be a mini game but just testing idea for now Liz x | + | ; A mini game to decide if you get to strip or cum by Liz x |
| - | show:Welcome this is just a test for now should get numbers 1 to 3 | + | ; Add a bit of dress up. do we check limits here? |
| - | wait:1 | + | ;TEMP2 = Num of clothes |
| - | button:Ok | + | settemp2:5 |
| - | settemp1:0 | + | settemp1:Math.floor((Math.random() * 3) + 1) |
| - | while:(TEMP1 < 4) | + | show:<h2>Welcome to Strip or Cum</h2>You need to be standing in front of your webcam with 5 items of clothing on. But to make it more interesting let me have a think what clothes that 5 should be... |
| - | settemp1:(TEMP1+1) | + | wait:10 |
| - | show:Number TEMP1 | + | if:(TEMP1 == 1) |
| - | button:Ok | + | show:I think we will stick with 5 items based on what you are currently wearing |
| + | fi: | ||
| + | if:(TEMP1 == 2) | ||
| + | show:I think we will go for a sexy look, the 5 items must include a nice bra and knickers | ||
| + | fi: | ||
| + | if:(TEMP1 == 3) | ||
| + | show:Well you are a bit of a whore, lets make that 4 items- bra, knickers, short skirt and a skimpy top | ||
| + | settemp2:4 | ||
| + | fi: | ||
| + | button:Dressed, DTITLE | ||
| + | ; | ||
| + | show:Each round, if you pick the right button you get a cum token (you need 3 to win). If you don't you lose an item of clothing. | ||
| + | button:Ready | ||
| + | wait:2 | ||
| + | cam:1 | ||
| + | ;TEMP3 = Num of cum tokens | ||
| + | settemp3:0 | ||
| + | ; | ||
| + | while:((TEMP2 > 0) && (TEMP3 < 3)) | ||
| + | show:You are wearing TEMP2 items of clothing and have TEMP3 cum tokens, pick a button | ||
| + | choice:Button 1,Button 2,Button 3 | ||
| + | settemp1:Math.floor((Math.random() * 3) + 1) | ||
| + | if:(LASTASK == TEMP1) | ||
| + | show:You guessed the correct button, take a cum token | ||
| + | settemp3:(TEMP3+1) | ||
| + | button:Thank You | ||
| + | fi: | ||
| + | if:(LASTASK != TEMP1) | ||
| + | show:Bad luck you guessed the wrong button, it was TEMP1. Remove an item of clothing. | ||
| + | settemp2:(TEMP2-1) | ||
| + | button:Removed | ||
| + | wait:2 | ||
| + | cam:2 | ||
| + | fi: | ||
| endwhile: | endwhile: | ||
| - | show:All Done | + | log:Game finished with TEMP2 items of clothing and TEMP3 cum tokens. |
| - | button:Ok | + | if:(TEMP3 == 3) |
| + | show:Well done, you get to cum. But I do expect you to eat it. | ||
| + | button:Yes, DTITLE | ||
| + | fi: | ||
| + | if:(TEMP3 < 3) | ||
| + | show:No cumming for you in the next 24 hours! | ||
| + | setdenial:1 days | ||
| + | button:Thank you, DTITLE | ||
| + | fi: | ||
| + | ; | ||
| + | ; | ||
| </code> | </code> | ||