|
|
@ -6,15 +6,10 @@ For usage in code, there is the class :py:class:`rcon.Client`. |
|
|
|
|
|
|
|
from rcon import Client |
|
|
|
|
|
|
|
with Client('127.0.0.1', 5000) as client: |
|
|
|
client.login('mysecretpassword') # Perform initial login. |
|
|
|
seed = client.seed # Get the server's seed. |
|
|
|
players = client.players # Get the server's players info. |
|
|
|
mansion = client.locate('Mansion') # Get the next mansion's location. |
|
|
|
with Client('127.0.0.1', 5000, passwd='mysecretpassword') as client: |
|
|
|
response = client.run('some_command', 'with', 'some', 'arguments') |
|
|
|
|
|
|
|
print(seed) |
|
|
|
print(players) |
|
|
|
print(mansion) |
|
|
|
print(response) |
|
|
|
|
|
|
|
Configuration |
|
|
|
------------- |
|
|
@ -27,7 +22,7 @@ The configuration file format is: |
|
|
|
host = <hostname_or_ip_address> |
|
|
|
port = <port> |
|
|
|
passwd = <password> |
|
|
|
prompt = <console_prompr> |
|
|
|
prompt = <console_prompt> |
|
|
|
|
|
|
|
The :code:`passwd` and :code:`prompt` entries are optional. |
|
|
|
|
|
|
|