This is a discussion on script within the Slackware Linux Support forums, part of the Unix Operating Systems category; --> How do I make a script or what it's called I'll need to run export WINEPRELOADER_SETVALEGACY="no" before I'll start ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| Thor-Inge wrote: > How do I make a script or what it's called > I'll need to run > export WINEPRELOADER_SETVALEGACY="no" > > before I'll start Worlod of Warcraft > /home/thorro/WorldofWarcraft/cedega WoW.exe > > > Thor-Inge You can type all of that on one line even: WINEPRELOADER_SETVALEGACY="no" /home/thorro/WorldofWarcraft/cedega WoW.exe Eric |
| |||
| Thor-Inge <thorro@broadpark.no> wrote: > How do I make a script or what it's called > I'll need to run > export WINEPRELOADER_SETVALEGACY="no" > > before I'll start Worlod of Warcraft > /home/thorro/WorldofWarcraft/cedega WoW.exe Open your favorite editor and type in the following: -8<--------------but not this line----------------------- #!/bin/sh export WINEPRELOADER_SETVALEGACY="no" /home/thorro/WorldofWarcraft/cedega WoW.exe -8<--------------and this line is after end of file------ As you can see the file contains exactly what you wrote and only one more line "#!/bin/sh". Save the file with a name of your choice, it could be wow.sh. Then you should make that file executable: "chmod a+x wow.sh". When saving the file you might want to place it in a directory which is included in your path. /usr/local/bin is probably one such directory. regards Henrik -- The address in the header is only to prevent spam. My real address is: hc7(at)uthyres.com Examples of addresses which go to spammers: root@variousus.net root@localhost |
| ||||
| Henrik Carlqvist wrote: > Thor-Inge <thorro@broadpark.no> wrote: > > >>How do I make a script or what it's called >>I'll need to run >>export WINEPRELOADER_SETVALEGACY="no" >> >>before I'll start Worlod of Warcraft >> /home/thorro/WorldofWarcraft/cedega WoW.exe > > > Open your favorite editor and type in the following: > > -8<--------------but not this line----------------------- > #!/bin/sh > > export WINEPRELOADER_SETVALEGACY="no" > /home/thorro/WorldofWarcraft/cedega WoW.exe > -8<--------------and this line is after end of file------ > > As you can see the file contains exactly what you wrote and only one more > line "#!/bin/sh". Save the file with a name of your choice, it could be > wow.sh. Then you should make that file executable: "chmod a+x wow.sh". > > When saving the file you might want to place it in a directory which is > included in your path. /usr/local/bin is probably one such directory. > > regards Henrik Hi This thing worked. I only had to change: /home/thorro/WorldofWarcraft/cedega WoW.exe to cedega /home/thorro/WorldofWarcraft/WoW.exe Great now I have made my first script. World Of Warcraft works fine in Linux with some work.... I'll run steam, HalfLife Halflife2 Day of Defeat CS ,Call of Duty. Medal of honor. UT2004 Doom ,Quake Heroes3 are games i run on my Slackware box. I don't buy games that don't work in linux with or without wine/cedega Thor-Inge |