add parameters to the application

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
EiOL
Newbie
Newbie
Posts: 1
Joined: Fri Oct 31, 2008 9:10 am

add parameters to the application

Post by EiOL »

I'm trying to open the server for a game in linux by Wine, the game opens in a single window.
But I have to add some parameters so the executable can run.
For example in windowns would be:

Code: Select all

C:\Game\Server.exe +set dedicated 2 +set sv_punkbuster 1 +exec server.cfg +map_rotate
In the wine I tried something like,

Code: Select all

wine Server.exe +set dedicated 2 +set sv_punkbuster 1 +exec server.cfg +map_rotate
and

Code: Select all

wine "Server.exe +set dedicated 2 +set sv_punkbuster 1 +exec server.cfg +map_rotate"
wine 'Server.exe +set dedicated 2 +set sv_punkbuster 1 +exec server.cfg +map_rotate'
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

add parameters to the application

Post by austin987 »

On Fri, Oct 31, 2008 at 9:15 AM, EiOL <[email protected]> wrote:
I'm trying to open the server for a game in linux by Wine, the game opens in a single window.
More I have to add some parameters to the executable can run.
For example in windowns would be:

Code:
C:\Game\Server.exe +set dedicated 2 +set sv_punkbuster 1 +exec server.cfg +map_rotate



In the wine I tried something like,


Code:

wine Server.exe +set dedicated 2 +set sv_punkbuster 1 +exec server.cfg +map_rotate



and


Code:
wine "Server.exe +set dedicated 2 +set sv_punkbuster 1 +exec server.cfg +map_rotate"
wine 'Server.exe +set dedicated 2 +set sv_punkbuster 1 +exec server.cfg +map_rotate'







http://wiki.winehq.org/FAQ#head-80b94e5 ... b75ce3e40b

--
-Austin
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: add parameters to the application

Post by vitamin »

EiOL wrote:I'm trying to open the server for a game in linux by Wine, the game opens in a single window.
But I have to add some parameters so the executable can run.
And the problem is?
Locked