![]() |
|
#1
|
|||
|
|||
|
hey,
I just wrote up this code, after editing it a little, you will be able to stream games over the network, to computers that don't even have it installed! enjoy! ![]() @echo off REM ******************************** REM By CodeFreakC REM ******************************** :begin Echo GameBoot By CodeFreakC echo Which game would you like to boot? echo 1.Whatever Game echo 2.Whatever Game set /P userin=Enter 1, 2, 3 or 4: IF %userin% == 1 GOTO 1 IF %userin% == 2 GOTO 2 echo Invalid number entered @ping 127.0.0.1 -n 1 -w 1000 > nul cls goto begin :1 C:\your games .exe goto end :2 C:\your games .exe goto end :end REM ********************************* REM End REM ********************************* |
|
#2
|
||||||||||||
|
||||||||||||
|
I don't quite get it.
Care to elaborate a bit, write a bit of documentation?
__________________
__________________
serverguy My System: Eclipse
|
|
#3
|
|||
|
|||
|
Or you could just share that part of the computer. Regardless what is this programmed in?
|
|
#4
|
|||
|
|||
|
Looks like you would just put this in a batch file and run it. Make a notepad file and paste this in it and rename the extension from .txt to .bat.
|
|
#5
|
|||
|
|||
|
Ah alright, thanks. I'll try this out later probably. If I do I'll post here whether it works or not, it seems pretty simple.
|