diff --git a/AutismBotIngame/README.md b/AutismBotIngame/README.md
index 31ee5f77..52010f69 100644
--- a/AutismBotIngame/README.md
+++ b/AutismBotIngame/README.md
@@ -4,12 +4,11 @@ x2go or nomachine or VNC
steam account with css purchased
# launch commands
./steam.sh -applaunch 240 -textmode -textmessagedebug -novid -nosound -noipx -nojoy -noshaderapi -condebug +exec looptest.cfg
-
-autoexec.cfg:
-alias loop "exec looptest.cfg; wait 5; loop;"; wait 5; loop;
+autoexec.cfg:
+alias loop "exec looptest.cfg; wait 5; loop;"; wait 5; loop;
+(textmode is no video output)
-
-# environment settings needed
-use glxinfo to get information about ID's, for example 0x0e5
-export SDL_VIDEO_X11_VISUALID="0x0e5"
+# do this before signing in to steam using VNC/x2go clients that are connected to VNC/x2go servers running virtual desktops
+use glxinfo to get information about ID's, for example 0x0e5
+export SDL_VIDEO_X11_VISUALID=0x074
diff --git a/AutismBotIngame/python/connectServer.py b/AutismBotIngame/python/connectServer.py
deleted file mode 100644
index 69fce38b..00000000
--- a/AutismBotIngame/python/connectServer.py
+++ /dev/null
@@ -1,32 +0,0 @@
-import logging
-import subprocess
-from time import sleep
-
-#export SDL_VIDEO_X11_VISUALID= #"0x074"
-#textmode is no video output, what botox used
-
-
-#-connect 151,80.230.149:27015
-
-
-#subprocess.call(["steam", "steam://install/240"])
-
-#sleep(20)
-#server_ip_ze = "151.80.230.149:27015"
-#subprocess.Popen(["steam", "steam://connect/" + server_ip_ze])
-
-#steam steam://connect/151.80.230.149:27015
-#steam steam://connect/151.80.230.149:27019/test132
-
-#-nopreload seemingly prevents from joining servers
-#cd /home/nonroot/.steam/
-#./steam.sh -applaunch 240 -textmode -textmessagedebug -novid -nosound -noipx -nojoy -noshaderapi -condebug +exec looptest.cfg
-#
-
-def joinsteam():
- subprocess.Popen(["steam", "-login", "username","password"])
- sleep(25)
- subprocess.Popen(["/home/nonroot/.steam/steam.sh", "-applaunch 240 -textmode -textmessagedebug -novid -nosound -noipx -nojoy -noshaderapi -condebug +exec looptest.cfg"])
-
-if __name__ == '__main__':
- joinsteam()
\ No newline at end of file