Search results

  1. fukurou

    mo regexes

    ^((?!.*server.*)(?!.*person.*).)*$
  2. fukurou

    mo regexes

    ^((?!.*server.*).)*$"
  3. fukurou

    mo regexes

    @the living tribunal "^((?!.*(server|choco).*).)*$"
  4. fukurou

    DIBlabber

    import AXJava.AXContextCmd; import AXJava.AXNPC; import AXJava.Cycler; import LivinGrimoire.DiSkillV2; public class DIBlabber extends DiSkillV2 { private Boolean isActive = true; // skill toggle public AXContextCmd skillToggler = new AXContextCmd(); // chat mode select public...
  5. fukurou

    DIBlabber

    class AXNPC { public var responder:RefreshQ = RefreshQ() public var dripper:PercentDripper = PercentDripper() public var cmdBreaker:AXCmdBreaker = AXCmdBreaker(conjuration: "say") init(replyStockLim:Int,outputChance:Int) { responder.setLimit(lim: replyStockLim) if...
  6. fukurou

    DIBlabber

    class AXContextCmd{ // engage on commands // when commands are engaged, context commans can also engage public var commands:UniqueItemSizeLimitedPriorityQueue = UniqueItemSizeLimitedPriorityQueue() public var contextCommands:UniqueItemSizeLimitedPriorityQueue =...
  7. fukurou

    DIBlabber

    shit in DS!
  8. fukurou

    DIBlabber

    @owly
  9. fukurou

    DIBlabber

    class AXNPC: def __init__(self, replyStackLim: int, outputChance: int): self.responder: RefreshQ = RefreshQ(replyStackLim) self.dripper = PercentDripper() if 0 < outputChance < 101: self.dripper.setLimit(outputChance) self.cmdBreaker: AXCmdBreaker...
  10. fukurou

    DIBlabber

    class AXContextCmd: # engage on commands # when commands are engaged, context commans can also engage def __init__(self): self.commands: UniqueItemSizeLimitedPriorityQueue = UniqueItemSizeLimitedPriorityQueue(5) self.contextCommands: UniqueItemSizeLimitedPriorityQueue...
  11. fukurou

    DIBlabber

    @mr.meeseeks
  12. fukurou

    DIBlabber

    public class AXNPC { public RefreshQ responder = new RefreshQ(); public PercentDripper dripper = new PercentDripper(); public AXCmdBreaker cmdBreaker = new AXCmdBreaker("say"); public AXNPC(int replyStockLim, int outputChance) { responder.setLimit(replyStockLim)...
  13. fukurou

    DIBlabber

    public class AXContextCmd { // engage on commands // when commands are engaged, context commans can also engage public UniqueItemSizeLimitedPriorityQueue commands = new UniqueItemSizeLimitedPriorityQueue(); public UniqueItemSizeLimitedPriorityQueue contextCommands = new...
  14. fukurou

    DIBlabber

    public class AXContextCmd { // engage on commands // when commands are engaged, context commans can also engage public UniqueItemSizeLimitedPriorityQueue commands = new UniqueItemSizeLimitedPriorityQueue(); public UniqueItemSizeLimitedPriorityQueue contextCommands = new...
  15. fukurou

    [MEDIA]

  16. fukurou

    humanoid design

  17. fukurou

    scrapping the new port project

    @owly its a waste of time. 101 classes, + lots of missing codes, +cost I don't see any additional gain none whatsoever.
  18. fukurou

    regex col

    @the living tribunal
  19. fukurou

    regex col

    email : [A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,6} timeStamp : [0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2} simpleTimeStamp : [0-9]{1,2}:[0-9]{1,2} secondlessTimeStamp : [0-9]{1,2}:[0-9]{1,2} fullDate : [0-9]{1,4}/[0-9]{1,2}/[0-9]{1,2} [0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2} date ...
Top