Benutzer, die sich für diesen Beitrag bedankt haben:
KäseKuchen (10.08.2011)
Benutzerinformationen überspringen
Wohnort: Österreich, Steiermark, Leibnitz
Beruf: Schüler ._.
Ingame-Name: FrØgH
Clan: //w®a*
Renommeemodifikator: 10
Keine Angst ich für meinen Teil halt von DDrace genauso viel wie von City :P beides fürn Kübel
Ganz Ehrlich?
Hast du auch mal an Kritik gedacht?
Was er verbessern kann?
Was er falsch gemacht hat?
Welche Bilde findest du insbesondere schlecht?
Quellcode |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
@echo off title Teeworlds Compiller color 0e :home cls echo. echo [1] Server compillen echo [2] Client compillen echo [3] Credits echo [4] Beenden set /p d=Eingabe: if %d%==1 goto sc if %d%==2 goto cc if %d%==3 goto cs if %d%==4 goto et if not %d%==1 goto err if not %d%==2 goto err if not %d%==3 goto err if not %d%==4 goto err :err cls echo. echo Der Befehl %d% konnte nicht verwendet werden. echo [exit] pause >nul exit :sc cls echo. echo Server wird compilliert... ping localhost -n 3 >nul if exist teeworlds_srv.exe del teeworlds_srv.exe ping -n 2 localhost >nul color 0a :: Check if we already have the tools in the environment if exist "%VCINSTALLDIR%" ( goto compile ) :: Check for Visual Studio if exist "%VS100COMNTOOLS%" ( set VSPATH="%VS100COMNTOOLS%" goto set_env ) if exist "%VS90COMNTOOLS%" ( set VSPATH="%VS90COMNTOOLS%" goto set_env ) if exist "%VS80COMNTOOLS%" ( set VSPATH="%VS80COMNTOOLS%" goto set_env ) echo You need Microsoft Visual Studio 8, 9 or 10 installed pause exit :: Setup the environment :set_env if not exist %VSPATH%vsvars32.bat ( color 0a cls echo. echo === An error occured! === echo. pause >nul exit ) else call %VSPATH%vsvars32.bat :: Compile :compile echo. @echo === Building Teeworlds Server === @call bam.exe server_release @echo === Finished === echo. pause >nul goto sc :cc cls echo. echo Client wird compilliert... ping -n 2 localhost >nul color 0a :: Check if we already have the tools in the environment if exist "%VCINSTALLDIR%" ( goto compile ) :: Check for Visual Studio if exist "%VS100COMNTOOLS%" ( set VSPATH="%VS100COMNTOOLS%" goto set_env ) if exist "%VS90COMNTOOLS%" ( set VSPATH="%VS90COMNTOOLS%" goto set_env ) if exist "%VS80COMNTOOLS%" ( set VSPATH="%VS80COMNTOOLS%" goto set_env ) echo You need Microsoft Visual Studio 8, 9 or 10 installed pause exit :: Setup the environment :set_env if not exist %VSPATH%vsvars32.bat ( color 0a cls echo. echo === An error occured! === echo. pause >nul exit ) else call %VSPATH%vsvars32.bat :: Compile :compile echo. @echo === Building Teeworlds Server === @call bam.exe client_release @echo === Finished === echo. pause >nul goto sc :cs cls echo. echo Teeworlds Compiller gecodet von Tim echo (c) Copyright by Tim echo [exit pause >nul :et echo. echo [exit] pause >nul exit |
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »FrOgH« (7. August 2011, 22:01) aus folgendem Grund: Code in einen Spoiler verpackt.
Quellcode |
|
1 2 3 4 5 |
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" :start C:\Users\Name\Desktop\bam\bam-0.2.0\src\bam server_release pause goto start |
Ne eben nicht ich poste dann hier den Code:
Quellcode
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 @echo off title Teeworlds Compiller color 0e :home cls echo. echo [1] Server compillen echo [2] Client compillen echo [3] Credits echo [4] Beenden set /p d=Eingabe: if %d%==1 goto sc if %d%==2 goto cc if %d%==3 goto cs if %d%==4 goto et if not %d%==1 goto err if not %d%==2 goto err if not %d%==3 goto err if not %d%==4 goto err :err cls echo. echo Der Befehl %d% konnte nicht verwendet werden. echo [exit] pause >nul exit :sc cls echo. echo Server wird compilliert... ping localhost -n 3 >nul if exist teeworlds_srv.exe del teeworlds_srv.exe ping -n 2 localhost >nul color 0a :: Check if we already have the tools in the environment if exist "%VCINSTALLDIR%" ( goto compile ) :: Check for Visual Studio if exist "%VS100COMNTOOLS%" ( set VSPATH="%VS100COMNTOOLS%" goto set_env ) if exist "%VS90COMNTOOLS%" ( set VSPATH="%VS90COMNTOOLS%" goto set_env ) if exist "%VS80COMNTOOLS%" ( set VSPATH="%VS80COMNTOOLS%" goto set_env ) echo You need Microsoft Visual Studio 8, 9 or 10 installed pause exit :: Setup the environment :set_env if not exist %VSPATH%vsvars32.bat ( color 0a cls echo. echo === An error occured! === echo. pause >nul exit ) else call %VSPATH%vsvars32.bat :: Compile :compile echo. @echo === Building Teeworlds Server === @call bam.exe server_release @echo === Finished === echo. pause >nul goto sc :cc cls echo. echo Client wird compilliert... ping -n 2 localhost >nul color 0a :: Check if we already have the tools in the environment if exist "%VCINSTALLDIR%" ( goto compile ) :: Check for Visual Studio if exist "%VS100COMNTOOLS%" ( set VSPATH="%VS100COMNTOOLS%" goto set_env ) if exist "%VS90COMNTOOLS%" ( set VSPATH="%VS90COMNTOOLS%" goto set_env ) if exist "%VS80COMNTOOLS%" ( set VSPATH="%VS80COMNTOOLS%" goto set_env ) echo You need Microsoft Visual Studio 8, 9 or 10 installed pause exit :: Setup the environment :set_env if not exist %VSPATH%vsvars32.bat ( color 0a cls echo. echo === An error occured! === echo. pause >nul exit ) else call %VSPATH%vsvars32.bat :: Compile :compile echo. @echo === Building Teeworlds Server === @call bam.exe client_release @echo === Finished === echo. pause >nul goto sc :cs cls echo. echo Teeworlds Compiller gecodet von Tim echo (c) Copyright by Tim echo [exit pause >nul :et echo. echo [exit] pause >nul exit
zum Lesen den Text mit der Maus markieren
Zitat von »Fisico«
ist halt ein billiger batch code
Batch ist doch kostenlos?
Benutzerinformationen überspringen
Wohnort: ( ͡° ͜ʖ ͡°)
Beruf: ( ͡° ͜ʖ ͡°)
Ingame-Name: ( ͡° ͜ʖ ͡°)
Renommeemodifikator: 13
Benutzerinformationen überspringen
Wohnort: ( ͡° ͜ʖ ͡°)
Beruf: ( ͡° ͜ʖ ͡°)
Ingame-Name: ( ͡° ͜ʖ ͡°)
Renommeemodifikator: 13
jedes kind weiß, was die "@" bedeuten.
Sushi wusste es nicht :D