Advertisement
Guest User

Untitled

a guest
Oct 10th, 2023
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. #!/bin/bash
  2. mkdir -p /boot/home/games/dRally
  3. cp -r /boot/system/bin/dRally /boot/home/games/dRally/
  4.  
  5. cd /boot/home/games/dRally
  6.  
  7. if [ ! -f /boot/home/games/dRally/TR0.BPA ]; then
  8.  
  9. wget https://image.dosgamesarchive.com/games/DeathRallyWin_10.zip
  10. 7z e -o/boot/home/games/dRally DeathRallyWin_10.zip
  11. rm DeathRallyWin_10.zip
  12. 7z e -o/boot/home/games/dRally DeathRallyWin_10.exe -y
  13. rm DeathRallyWin_10.exe
  14. mkdir CINEM && mv ENDANI* CINEM && mv SANIM* CINEM
  15. echo "./CINEM" &> CDROM.INI
  16.  
  17. fi
  18.  
  19. ./dRally
  20. cd $HOME
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement