This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
@author: moose | |
''' | |
from Logger import Logger | |
from twisted.internet import reactor, protocol | |
class ircprotocol(protocol): | |
logger = None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
@author: moose | |
''' | |
import Logger | |
import socket | |
class Bot(): | |
logger = None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
@author: moose | |
''' | |
import Logger | |
import socket | |
class Bot(): | |
logger = None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.mutinycraft.jigsaw.FactionsExtra; | |
import java.io.*; | |
import java.util.*; | |
import java.util.logging.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.Marneus.Bot.API.Methods; | |
import java.awt.Color; | |
import java.util.Random; | |
/** | |
* A Random class that provides more efficient utilities than java.util.Random. | |
* | |
* @author MooseElkingtons | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.Marneus.Bot.API.Methods; | |
import java.util.Random; | |
/** | |
* Provides various methods for time management. | |
* | |
* @author MooseElkingtons | |
*/ |