Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. @echo off
  2. echo **********************************************************************
  3. echo ************Das Programm Kompiliert dateien und das viel *************
  4. echo ************Schneller als andere Kompiler, ***************************
  5. echo ************Grund ist ein Besseres Kopilierungs Ebene ****************
  6. echo ************Drück Enter um Anzufangen! *******************************
  7. echo **********************************************************************
  8. pause>nul
  9. cls
  10. echo **********************************************************************
  11. echo ************Bitte Warten**********************************************
  12. echo **********************************************************************
  13. @If exist E:\SA-MP\LAR\Gamemodes\gamemode.amx del E:\SA-MP\LAR\Gamemodes\gamemode.amx
  14. @If exist E:\SA-MP\LAR\filterscripts\actions.amx del E:\SA-MP\LAR\filterscripts\actions.amx
  15. @If exist E:\SA-MP\LAR\filterscripts\LARL0.3bMapping.amx del E:\SA-MP\LAR\filterscripts\LARL0.3bMapping.amx
  16. @If exist E:\SA-MP\LAR\filterscripts\MidoStream.amx del E:\SA-MP\LAR\filterscripts\MidoStream.amx
  17. @If exist E:\SA-MP\LAR\filterscripts\zoll.amx del E:\SA-MP\LAR\filterscripts\zoll.amx
  18.  
  19. echo GameMode
  20. call pawncc.exe E:\SA-MP\LAR\Gamemodes\gamemode.pwn -r
  21. move gamemode.amx E:\SA-MP\LAR\Gamemodes\ > nul
  22.  
  23.  
  24. echo actions
  25. call pawncc.exe E:\SA-MP\LAR\filterscripts\actions.pwn -r
  26. move actions.amx E:\SA-MP\LAR\filterscripts\ > nul
  27.  
  28.  
  29. echo LARL0.3bMapping
  30. call pawncc.exe E:\SA-MP\LAR\filterscripts\LARL0.3bMapping.pwn -r
  31. move LARL0.3bMapping.amx E:\SA-MP\LAR\filterscripts\ > nul
  32.  
  33. echo MidoStream
  34. call pawncc.exe E:\SA-MP\LAR\filterscripts\MidoStream.pwn -r
  35. move MidoStream.amx E:\SA-MP\LAR\filterscripts\ > nul
  36.  
  37. echo Zoll
  38. call pawncc.exe E:\SA-MP\LAR\filterscripts\zoll.pwn -r
  39. move zoll.amx E:\SA-MP\LAR\filterscripts\ > nul
  40.  
  41. del *.xml
  42. echo Fertig!
  43. pause>nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement