Recent content by owly

  1. owly

    👨‍💻 dev LG port Java->vb.net

    hmm... hey @mr.meeseeks does the swift ver not have usages of setAvtice in the Fusion cls?
  2. owly

    👨‍💻 dev LG port Java->vb.net

    delete the todos they be fucked
  3. owly

    👨‍💻 dev LG port Java->vb.net

    100 AbsDictionaryDB + Mutatable + APSay:Mutatable + DeepCopier + APVerbatim:Mutatable + GrimoireMemento + Algorithm + CldBool + APCldVerbatim:APVerbatim + Kokoro + Neuron + DiSkillUtils + DiSkillV2 + DiHelloWorld:DiSkillV2 + Cerabellum + Fusion + Thinkable + Chobits:Thinkable + Brain + @fukurou
  4. owly

    Arduino beefup

    shit in the ass man!
  5. owly

    DiAware port

    @fukurou 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] = [] self.replies...
  6. owly

    blabberv5 py->java

    package skills; import AXJava.*; import LivinGrimoire.DiSkillV2; import java.util.ArrayList; public class DiBlabberV5 extends DiSkillV2 { private AXNPC2 npc; private String tempStr = ""; private OnOffSwitch autoTalk = new OnOffSwitch(); private String funnel = ""; public...
  7. owly

    blabberv5 py->java

    public class DiBlabberV5 extends DiSkillV2 { private AXNPC2 npc; private String tempStr = ""; private OnOffSwitch autoTalk = new OnOffSwitch(); private String funnel = ""; public DiBlabberV5(int memorySize, int replyChance) { super(); this.npc = new...
  8. owly

    blabberv5 py->java

    class DiBlabberV5(DiSkillV2): def __init__(self, memory_size: int = 15, reply_chance: int = 90): super().__init__() self.npc: AXNPC2 = AXNPC2(memory_size, reply_chance) self.npc.cmdBreaker = AXCmdBreaker("tell me") self._temp_str: str = ""...
  9. owly

    we need to find the entry points

    if not npc.learn(ear): # str learn npc.strLearn(ear)
  10. owly

    we need to find the entry points

    maybe a skill toggler too
  11. owly

    we need to find the entry points

    so the alg would be: strRespond->t if t: say t; return; learn1?||learn2?->save also strLearn should exclude the canjuration
  12. owly

    we need to find the entry points

    class AXNPC2(AXNPC): def __init__(self, replyStockLim: int, outputChance: int): super().__init__(replyStockLim, outputChance) self.annoyedQue: AnnoyedQ = AnnoyedQ(5) def strLearn(self, ear: str): # learns inputs containing strings that are repeatedly used by...
  13. owly

    👨‍💻 dev [Blender] Animating a 3D Anime Character | Project Feline Devstream !wishlist !website !discord

    yeah fuck'em how long does is fucking take to make a wall runner? he can't scale that's his problem.
  14. owly

    👨‍💻 dev db test

    class DiSayer(DiSkillV2): def __init__(self): super().__init__() self.cmdBreaker = AXCmdBreaker("say") self.command = "" def input(self, ear, skin, eye): self.command = self.cmdBreaker.extractCmdParam(ear) if self.command...
Top