Announcement

Collapse
No announcement yet.

How to create a Quake 3 map cycle?

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

    How to create a Quake 3 map cycle?

    Just bought Quake 3, Team Arena and installed the (imo far superior) Dreamcast maps using an unofficial DC map pack which has all the music too (unlike the official map pack).

    I can load the individual DC levels fine, but how would I create a map cycle list so I can play them one after the other? Quake 3 seems much more limited than UT in that regard.

    #2
    You can either edit the default maplist.cfg, or create a custom one and add +exec mymaplist.cfg to the command line to launch the server.

    Comment


      #3
      I'm a bit rusty as I haven't touched Q3 since 2004 really, but I had a quick google around to jog my memory and this is how you do it:

      Code:
      set m01 "map dc_map01; set nextmap vstr m02"
      set m02 "map dc_map02; set nextmap vstr m03"
      set m03 "map dc_map03; set nextmap vstr m01"
      vstr m01
      That would rotate through three maps repeatedly, for example.

      Comment


        #4
        Thanks I'll give that a go A bit long winded I must say, you could set up a map list within the menu in UT o.o

        Comment

        Working...
        X