This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
tasks:striporcum [2017/04/07 16:14] liz |
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: |
| ; A mini game to decide if you get to strip or cum by Liz x | ; A mini game to decide if you get to strip or cum by Liz x | ||
| - | show:<h2>Welcome to Strip or Cum</h2>You need to be standing in front of your webcam with 5 items of clothing on. Each round, if you pick the right button you win a cum token (you need 3 to win). If you don't you loose an item of clothing. | + | ; Add a bit of dress up. do we check limits here? |
| - | wait:2 | + | |
| - | button:Ready | + | |
| ;TEMP2 = Num of clothes | ;TEMP2 = Num of clothes | ||
| settemp2:5 | settemp2:5 | ||
| + | settemp1:Math.floor((Math.random() * 3) + 1) | ||
| + | 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... | ||
| + | wait:10 | ||
| + | if:(TEMP1 == 1) | ||
| + | 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 | ;TEMP3 = Num of cum tokens | ||
| settemp3:0 | settemp3:0 | ||
| - | + | ; | |
| - | while:((TEMP2 > 0) and (TEMP3 < 3)) | + | while:((TEMP2 > 0) && (TEMP3 < 3)) |
| show:You are wearing TEMP2 items of clothing and have TEMP3 cum tokens, pick a button | show:You are wearing TEMP2 items of clothing and have TEMP3 cum tokens, pick a button | ||
| choice:Button 1,Button 2,Button 3 | choice:Button 1,Button 2,Button 3 | ||
| settemp1:Math.floor((Math.random() * 3) + 1) | settemp1:Math.floor((Math.random() * 3) + 1) | ||
| - | if:(LASTASK == TEMP1) | + | if:(LASTASK == TEMP1) |
| - | show:You guessed the right button (LASTASK == TEMP1) | + | show:You guessed the correct button, take a cum token |
| - | settemp2:(TEMP3+1) | + | settemp3:(TEMP3+1) |
| - | fi: | + | button:Thank You |
| - | if:(LASTASK != TEMP1) | + | fi: |
| - | show:Bad luck you guessed the wrong button (LASTASK != TEMP1) | + | if:(LASTASK != TEMP1) |
| - | settemp2:(TEMP2-1) | + | show:Bad luck you guessed the wrong button, it was TEMP1. Remove an item of clothing. |
| - | fi: | + | settemp2:(TEMP2-1) |
| - | button:Ok | + | button:Removed |
| + | wait:2 | ||
| + | cam:2 | ||
| + | fi: | ||
| endwhile: | endwhile: | ||
| + | log:Game finished with TEMP2 items of clothing and TEMP3 cum tokens. | ||
| if:(TEMP3 == 3) | if:(TEMP3 == 3) | ||
| - | show:You get to cum | + | show:Well done, you get to cum. But I do expect you to eat it. |
| - | button:Ok | + | button:Yes, DTITLE |
| fi: | fi: | ||
| if:(TEMP3 < 3) | if:(TEMP3 < 3) | ||
| - | show:No cumming for you! | + | show:No cumming for you in the next 24 hours! |
| - | button:Ok | + | setdenial:1 days |
| + | button:Thank you, DTITLE | ||
| fi: | fi: | ||
| + | ; | ||
| + | ; | ||
| </code> | </code> | ||