Search results

  1. fukurou

    👨‍💻 dev experimental convince module

    how would that make sense in converting an anal princess into a foot slut?
  2. fukurou

    👨‍💻 dev experimental convince module

    Nagging, that persistent and often repetitive form of communication, has intrigued researchers and puzzled partners for ages. While it might not be as glamorous as a peacock’s tail or as dramatic as a lion’s roar, nagging does have some evolutionary roots. Let’s explore: Survival and...
  3. fukurou

    👨‍💻 dev experimental convince module

    yes, but assuming you want the 2 to be mutually exclusive, meaning she won't be down for ass play if she is a foot slut.
  4. fukurou

    👨‍💻 dev experimental convince module

    well we are not talking about quick decisive actions, we be takin bout personality shifts
  5. fukurou

    👨‍💻 dev experimental convince module

    and if so... is what is the trigger for a derailment? input?, output from the RefreshQ? either? both?
  6. fukurou

    👨‍💻 dev experimental convince module

    question is... should convincing be a hard coded thing or part of a rail system...
  7. fukurou

    👨‍💻 dev experimental convince module

    public class AXConvince { private AXContextCmd req; private Responder reset = new Responder( "reset"); private int min = 3; // minimum requests till agreement private int max = 6; private DrawRnd rnd = new DrawRnd(); private int counter = 0; private Boolean mode =...
  8. fukurou

    [MEDIA]

  9. fukurou

    👨‍💻 dev awareness skill

    class DiAware(DiSkillV2): def __init__(self, chobit: Chobits, name: str, summoner="user"): super().__init__() self.chobit: Chobits = chobit self.name: str = name self.summoner: str = summoner self.skills: list[str] = [] def input(self, ear, skin...
  10. fukurou

    👨‍💻 dev awareness skill

    def get_skill_list(self) -> list[str]: result: list[str] = [] for skill in self._dClasses: result.append(skill.__class__.__name__) return result
  11. fukurou

    👨‍💻 dev awareness skill

    public class DiAware extends DiSkillV2 { private Chobits chobit; private String name; private String summoner = "user"; private ArrayList<String> skills = new ArrayList<String>(); public DiAware(Chobits chobit, String name, String summoner) { this.chobit = chobit...
  12. fukurou

    👨‍💻 dev awareness skill

    public ArrayList<String> getSkillList(){ ArrayList<String> result = new ArrayList<String>(); for (DiSkillV2 skill: this.dClasses) { result.add(skill.getClass().getSimpleName()); } return result; }
  13. fukurou

    👨‍💻 dev awareness skill

  14. fukurou

    [MEDIA]

  15. fukurou

    so I was buying some produce...

    class DiOneWorder(DiSkillV2): def __init__(self): super().__init__() # Call the superclass constructor self.cry: str = "chi " self.toggler: str = "chi" self.drip: PercentDripper = PercentDripper() # Assuming PercentDripper is implemented self.mode...
  16. fukurou

    so I was buying some produce...

    just jizzed FYI!
  17. fukurou

    so I was buying some produce...

    class DiOneWorder(DiSkillV2): def __init__(self): super().__init__() # Call the superclass constructor self.cry = "chi " self.toggler = "chi" self.drip = PercentDripper() # Assuming PercentDripper is implemented self.mode = False def...
  18. fukurou

    so I was buying some produce...

    public class DiOneWorder extends DiSkillV2 { private String cry = "chi "; private String toggler = "chi"; private PercentDripper drip = new PercentDripper(); private Boolean mode = false; public void setCry(String cry) { this.cry = cry + " "; } public void...
  19. fukurou

    so I was buying some produce...

    public class DiOneWorder extends DiSkillV2 { private String cry = "chi "; private PercentDripper drip = new PercentDripper(); private Boolean mode = false; @Override public void input(String ear, String skin, String eye) { if(ear.isEmpty()){return;}...
Top