Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(6) | Call(4) | Derive(0) | Import(2)
thread opening a connection to a Frostbite game server and providing means of observing Frostbite events and sending commands
src/b/3/b3-1.9.2/b3/parsers/frostbite2/abstractParser.py b3(Download)
import b3.parser from b3.parsers.frostbite2.rcon import Rcon as FrostbiteRcon from b3.parsers.frostbite2.protocol import FrostbiteServer, CommandFailedError, CommandError, NetworkError from b3.parsers.frostbite2.util import PlayerInfoBlock, MapListBlock, BanlistContent import b3.events
def setup_frostbite_connection(self): self.info('Connecting to frostbite2 server ...') if self._serverConnection: self.close_frostbite_connection() self._serverConnection = FrostbiteServer(self._rconIp, self._rconPort, self._rconPassword)
time.sleep(2) self.close_frostbite_connection() self._serverConnection = FrostbiteServer(self._rconIp, self._rconPort, self._rconPassword) if self._serverConnection is None or not self._serverConnection.connected:
src/b/i/big-brother-bot-HEAD/b3/parsers/frostbite2/abstractParser.py big-brother-bot(Download)
import b3.parser from b3.parsers.frostbite2.rcon import Rcon as FrostbiteRcon from b3.parsers.frostbite2.protocol import FrostbiteServer, CommandFailedError, CommandError, NetworkError from b3.parsers.frostbite2.util import PlayerInfoBlock, MapListBlock, BanlistContent import b3.events
def setup_frostbite_connection(self): self.info('Connecting to frostbite2 server ...') if self._serverConnection: self.close_frostbite_connection() self._serverConnection = FrostbiteServer(self._rconIp, self._rconPort, self._rconPassword)
time.sleep(2) self.close_frostbite_connection() self._serverConnection = FrostbiteServer(self._rconIp, self._rconPort, self._rconPassword) if self._serverConnection is None or not self._serverConnection.connected: