Einzelnen Beitrag anzeigen

Neuni

Registriert seit: 25. Feb 2004
815 Beiträge
 
Delphi 7 Personal
 
#1

Rcon Befehle senden

  Alt 21. Mai 2005, 14:30
Hi,
sicherlich kennen einige von euch Counterstrike. Ich möchte nun Rcon-Commands (zum map welchseln und so) an den Server senden. Im Internet hab ich das hier mal gefunden.
Zitat:
Remote App sends a UDP packet to the server on the server's port (e.g., 127.0.0.1:27015):

The packet should start with 4 consecutive bytes of 255 (32-bit integer -1) and the string:

"challenge rcon\n".

The server will respond to the requesting system on the purported remote IP address and port with four 255's and:

"challenge rcon number\n" where number is an unsigned int32 number.

To issue the actual rcon, the remote App then responds with a UDP packet containing 4 255s and:

"rcon number \"password\" rconcommands" where password is the rcon_password ( should be enclosed in quotes as noted so that multiple word passwords will continue to work ), number is the unsigned int32 number received from the server and rconcommands is the actual rcon command string.

If the remote App fails to send the appropriate challenge number, waits too long to send the challenge, or uses an invalid password more than a few times in the course of a few seconds, the remote App will be assumed to be malicious and the actual ip address used by the remote host will be permanently and automatically banned from the server (as with the addip command). You can use listip to see the list of banned ip addresses on a server.
Mein Problem ist nun, dass ich das irgendwie nicht hinbekomme mit diesem "unsigned int32 number" & co.

Das ganze soll hinterher mal über PHP laufen, aber wenn jemand weiß wie ich das in Delphi machen kann, wäre mir auch schon geholfen, da es ja vom Prinzip her gleich sein wird.

Kann mir bitte einer erklären wie ich das machen muss?
Danke schonmal.
  Mit Zitat antworten Zitat