-
Rcon
Hello!
I have project to do it.
Project name RCON.
I created form, where is showing RCON of status (offline/online logged), log, etc.
How do i make it RCON work with that program?
I have rcon.exe and with that running must be:
notepad.exe > saving as startrcon.bat
Code:
@echo off
color 3f
cls
CD "C:\Program Files\Rockstar Games\GTA San Andreas\"
cls
set /p A="Server IP: "
cls
set /p B="Server port: "
cls
set /p C="Server RCON password: "
cls
start rcon.exe %A% %B% %C%
But how do put that into VB? Thanks!
This works:
Code:
Process.Start("C:\Program Files\Rockstar Games\GTA San Andreas\rcon.exe", TextBox1.Text + " " + TextBox2.Text + " " + TextBox3.Text)
-
Re: Rcon
-
Re: Rcon
Are you saying you want to create a .bat file like the one you showed us at runtime?
-
Re: Rcon
I want it create:
If i press Button1, then RCON.exe shows up, but i dont want it show.
And i want it program prints from rcon.exe and getting text to program.
Like:
Code:
Process.Start("C:\Program Files\Rockstar Games\GTA San Andreas\rcon.exe", TextBox1.Text + " " + TextBox2.Text + " " + TextBox3.Text)
RCON.exe
RCON connected to the (ip) : (port)...
then checks it Label2.Text = "CONNECTED"
How do it? :S