Esempio n. 1
0
    def __init__(self, pyseco):
        pyseco_plugin.__init__(self, pyseco)
        self.register_callback("TrackMania.BeginChallenge")
        self.register_callback("pyseco.mapmanager.EndRound")
        self.register_callback("TrackMania.PlayerConnect")

        self.initialize()
Esempio n. 2
0
 def __init__(self, pyseco):
     pyseco_plugin.__init__(self, pyseco)
     self.initialize()
     self.register_callback("TrackMania.PlayerCheckpoint")
     self.register_callback("TrackMania.BeginRace")
     self.register_callback("TrackMania.PlayerConnect")
     self.register_callback("TrackMania.EndRound")
Esempio n. 3
0
    def __init__(self, pyseco):
        pyseco_plugin.__init__(self, pyseco, db=True)
        self.initialize()

        self.pyseco.add_callback_listener("TrackMania.PlayerFinish", self)
        self.pyseco.add_callback_listener("TrackMania.PlayerConnect", self)
        self.pyseco.add_callback_listener("TrackMania.BeginChallenge", self)
        self.pyseco.add_callback_listener("TrackMania.EndRound", self)
Esempio n. 4
0
    def __init__(self, pyseco):
        pyseco_plugin.__init__(self, pyseco, db=True)
        self.register_callback("TrackMania.BeginChallenge")
        self.register_callback("TrackMania.PlayerCheckpoint")
        self.register_callback("TrackMania.PlayerFinish")

        self.curr_times = dict()

        challenge = self.pyseco.query((), "GetCurrentMapInfo")
        self.new_map(challenge[0][0])
Esempio n. 5
0
 def __init__(self, pyseco):
     pyseco_plugin.__init__(self, pyseco, db=True)
     self.pyseco.add_callback_listener("TrackMania.PlayerConnect", self)
     self.pyseco.add_callback_listener("TrackMania.PlayerDisconnect", self)
     self.pyseco.add_callback_listener("TrackMania.PlayerInfoChanged", self)
     self.initialize()
Esempio n. 6
0
 def __init__(self, pyseco):
     pyseco_plugin.__init__(self, pyseco, db=True)
     self.pyseco.add_callback_listener("TrackMania.PlayerChat", self)
Esempio n. 7
0
    def __init__(self, pyseco):
        pyseco_plugin.__init__(self, pyseco)
        self.pyseco.add_callback_listener("TrackMania.BeginChallenge", self)
        self.pyseco.add_callback_listener("TrackMania.EndRound", self)

        self.pyseco.query((), "SendHideManialinkPage")
Esempio n. 8
0
 def __init__(self, pyseco):
     pyseco_plugin.__init__(self, pyseco)
     self.register_chat_command("admin")