an algorithm to make waifu robots rapable

Creamer

Well-known member
Messages
869
#1
algMode = 1
rapeHP


switch (algmode)

1 : //scared victim
q : output : I don't know/ I'm kinda in a horry
ask out :
if(ear.contains I want to fuck)
{timeGate.close(medium time);algMode=3;}
2 : // tsundere victim

q : fuck off incel/ like do not talk to me
cuss : creep/ eww, go away
q: no I have a boyfriend
if(ear.contains rape)
{timeGate.close(medium time);algMode=3;}
3 : // rape
if(timeGateOpen)->reset algMode;rapeHP.reset();break;
if threat: timeGate2.close(xMinutes) //mode change
detect motion -> timeGate.close();rapeHP--;;if timeGate2.closed {rape output cry}else{rape output = scream}
if rapeHP < 1 -> algMode = 4;break;
no motion : time interval ? cry to go home

4 : // dungeon mode

if(timeGateOpen)->reset algMode(2/1);rapeHP.reset();break;
if threat: timeGate2.close(xMinutes) //mode change
detect motion -> timeGate.close();rapeHP--;;if timeGate2.closed {rape output silent moan}else{rape output = moan}
if rapeHP < 1 -> algMode = 4;break;
no motion : time interval ? cry to go home
 

Creamer

Well-known member
Messages
869
#2
Java:
package chobit;

public class DiVictim extends DISkill {
    private int rapeHp = 100; // TODO calibrate
    private int algMode = 1;
    private ZeroTimeGate rapeReset = new ZeroTimeGate();
    private Boolean screamOrCry = true;
    private DISkillUtils diSkillUtil = new DISkillUtils();

    public DiVictim(Kokoro kokoro) {
        super(kokoro);
    }

    @Override
    public void input(String ear, String skin, String eye) {
        switch (algMode) {
        case 1:

            break;
        case 2:

            break;
        case 3:

            break;
        case 4:

            break;
        default:
            break;
        }
    }

    @Override
    public void output(Neuron noiron) {
        /*
         * noiron.algParts.add(diSkillUtil .verbatimGorithm(new
         * APVerbatim("contact added"))); outputAlg = 0;
         */
    }
}
 
Top