Jump to content

snake45

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by snake45

  1. SiRaLeX? that's a really lame sounding name, go practice math bros.
  2. well poop.. i didnt even know you could install games there. more wasted time.. oh well, hehe. anyhow i will leave those decisions to admins. i just figured id contribute if i could as cnc was life back when and was excited to see it revived.
  3. heres an updated version, i ignored if winetricks fails or not and also added the overrides, and also changed the prefix to .cncnet which makes since as to the conflicts. i also base64 the exe (not posted for forum length) and utilize it from a variable (not sure if this work). i will mess around with the other overrides later unless you guys already got around to it. also: currently i am running on ubuntu and no apparent issues. edit again: fixed missing variable. last edit: https://github.com/zen45/cncnet-installer.sh #!/bin/bash WINETRICKS="https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks" MD5_SUM="f264e0c4977518edf4527019e408bef5" SERVICE="CnCNet.exe" BINARY="TVpQAgQP//+4QBoBuhAOH7QJzSG4AUzNIZCQVGhpcyBwcm9ncmFtIG11c3QgYmUgcnVuIHVuZGVy IFdpbjMyDQokN1BFTAEIGV5CKuCPgQsBAhmiRpiqEMBAEAIBBgRQAQQCQIEQQBAQEOB8CSABLAEY Q09ERdChEKIEIGBEQVRBUALABKZAwEJTU5QO0KrALmlkYXRhfAngCqpAwC50bHMI8LTALnJkYXRh GAECtEBQLnJlbG9jHAkQAUBQLnJzcmMsIAEstkBQUAHsQFAKBnN0cmluZzwQQG0RQATEKUCsKEDU KEAYKUARCyQpQARGcmVlEzApQAxJbml0SW5zdGFuY2UWTClAD0NsZWFudXBJbnN0YW5jZRBoKEAJ Q2xhc3NUeXBlEGwoQAlDbGFzc05hbWUSgChAC0NsYXNzTmFtZUlzEqgoQAtDbGFzc1BhcmVudBDA KUAJQ2xhc3NJbmZvE/goQAxJbnN0YW5jZVNpemUTsClADEluaGVyaXRzRnJvbQ/IKUAIRGlzcGF0 Y2gU8ClADU1ldGhvZEFkZHJlc3MRPCpACk1ldGhvZE5hbWUTeCpADEZpZWxkQWRkcmVzcxXEKUAO RGVmYXVsdEhhbmRsZXISrChAC05ld0luc3RhbmNlE9QoQAxGcmVlSW5zdGFuY2UHVE9iamVjdI1A w41A/yUg4UCLwP8lHOFAi8D/JRjhQIvA/yUU4UCLwP8lEOFAi8D/JQzhQIvA/yUI4UCLwP8lKOFA 0Bp97ytyoBu2QXtLgFKMR4BtDLrQymvedbDOy0r+3dkGsto6H8lfpHWfNHtHCchKNOyBjtGF3Q97 UdbRrYntab3zV6vo108UFHQCnlp/cEFPbDa3Jw6GP6v0cGLHF308M+DIpGeiFIRTpbDRtTs+ODRp yWjSqLP3sUkqic64GLp9fvrZxSoidPjGano0IrqOumQd1+QlNR4vtXSmmkmBb353A//truz2Cg==" ARGUMENTS="/silent" echo "Downloading wine" if [ -f /etc/lsb-release ]; then apt-get install wine -y elif [ -f /etc/debian_version ]; then aptitude install wine -y elif [ -f /etc/redhat-release ]; then yum|dnf install wine -y else echo "Unable to determine distribution" exit fi echo "Configuring wine." WINEARCH=win32 WINEPREFIX=~/.cncnet winecfg WINEARCH=win32 WINEDLLOVERRIDES="mscoree,mshtml=" wine wineboot echo "Downloading winetricks just incase." res=$(wget "$WINETRICKS" -q --show-progress) if [ $? -eq 0 ] then chmod +x winetricks && sh winetricks dotnet20 fi echo "Unpacking CnCNet.." echo "$BINARY" | base64 --decode >> $SERVICE sum=`md5sum $SERVICE` if [ ! "$sum" == "$MD5_SUM" ]; then echo "MD5 sums do not match" exit fi wine $INSTALLER $ARGUMENTS
  4. i made a small bash script for multiarch support (ubuntu, debian, fedora, arch, etc) could be greatly improved but it would be good to see an installer other then the lame repository for ubuntu #!/bin/bash INSTALLER="https://downloads.cncnet.org/TiberianSun_Online_Installer.exe" WINETRICKS="https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks" echo "Downloading wine" if [ -f /etc/lsb-release ]; then apt-get install wine -y elif [ -f /etc/debian_version ]; then aptitude install wine -y elif [ -f /etc/redhat-release ]; then yum|dnf install wine -y else echo "Unable to determine distribution" exit fi echo "Configuring wine." WINEARCH=win32 WINEPREFIX=~/.wine winecfg echo "Downloading winetricks." res=$(wget "$WINETRICKS" -q --show-progress) if [ ! $? -eq 0 ] then echo "Failed to download winetricks" exit fi echo "Installing dotnet20." chmod +x winetricks && sh winetricks dotnet20 echo "Downloading installer." res=$(wget "$INSTALLER" -q --show-progress) if [ ! $? -eq 0 ] then echo "Failed to download installer" exit fi wine $INSTALLER
×
×
  • Create New...