Announcement

Collapse
No announcement yet.

How to automatically create multiplayer game on startup?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to automatically create multiplayer game on startup?

    Hi all --

    So very long story short, I'm running Quake on 4 Raspberry Pis and I need one of those to automatically start a multiplayer game on startup.

    I'm looking for the relevant command to put into the autoexec.cfg file:

    It will need to start a multiplayer game, set the max # of players to 4, and set the map to fallingdm.bsp.

    For reference, the other three Pis will connect to this game using "connect 192.168.1.xxx" in their autoexec.cfg files.

    Thanks in advance, I know this just requires a ****tail of console commands but I'm not finding the relevant commands..

  • #2
    Originally posted by hykul View Post
    Hi all --

    So very long story short, I'm running Quake on 4 Raspberry Pis and I need one of those to automatically start a multiplayer game on startup.

    I'm looking for the relevant command to put into the autoexec.cfg file:

    It will need to start a multiplayer game, set the max # of players to 4, and set the map to fallingdm.bsp.

    For reference, the other three Pis will connect to this game using "connect 192.168.1.xxx" in their autoexec.cfg files.

    Thanks in advance, I know this just requires a ****tail of console commands but I'm not finding the relevant commands..
    Hi Hykul
    I'm no expert but you could try editing the command line, rather than your autoexec, on your Server machine. For example, assuming you were using Myquake.exe as your quake engine of choice you could try something like...
    Code:
    Myquake.exe -ip 192.168.1.xxx -dedicated 4 +map fallingdm.bsp
    This will mean that instead of opening the usual quake game on your server, it will open a server console and run a dedicated quake server. If you need the server to be a machine you can actually play on you might also try experimenting with
    Code:
    Myquake.exe -ip 192.168.1.xxx -listen 4 +map fallingdm.bsp
    but I'm not certain if it will automatically start the server for you.

    Hope this helps

    Monty
    Last edited by Mr.Burns; 04-01-2014, 05:59 AM.
    Mr.Burns
    "Helping to keep this community friendly, helpful, and clean of spammers since 2006"
    WWW: Quake Terminus , QuakeVoid You Tube: QuakeVoid
    Servers: Quake.shmack.net, damage.servequake.com

    News: JCR's excellent ctsj_jcr map is being ported to OOT

    Comment

    Working...
    X