Cant Seem To Get This Right..

So im working on a tool to help my friends with their CF (just a alternative launcher for it)

and my coding is correct but for some reason i keep getting this "Failed to load url of Version.ini" error..

here's the coding...

SET CrossFire=C:\Program Files\Z8Games\CrossFire\patcher_cf.exe
:00
Echo Chose Your Destiny...
echo =======================
Echo Enter 1 To Lauch CrossFire
Echo Enter 2 To Clean you Prefetch
Echo Enter 3 To Clean you Temp
Echo Enter 4 To Restart your computer
Echo Enter 5 For Credits
Echo =======================
Set/p "Option=>"
if %Option%==1 Goto 10
if %Option%==2 Goto 20
if %Option%==3 Goto 30
if %Option%==4 Goto 40
if %Option%==5 Goto 50
:10
start "" "%CrossFire%"
pause
GoTo 00
:20
del c:\windows\prefetch\*.* /q
GoTo 00
:30
del C:\Windows\Temp\*.* /q
GoTo 00
:40
SHUTDOWN -r -t 0
:50
ECHO Credit: This Launcher was made by PsichotiX
pause

Comments