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
But how do put that into VB? Thanks!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%
This works:
Code:Process.Start("C:\Program Files\Rockstar Games\GTA San Andreas\rcon.exe", TextBox1.Text + " " + TextBox2.Text + " " + TextBox3.Text)




Reply With Quote