Menu

#6 MP enhancements

git
open
nobody
None
5
2023-09-28
2012-02-26
Anonymous
No

This patchsets add: pq_teamscores and friends (display team scores in team games on the scoreboard)
.loc support (say "i am at %l" -> I am at center room)
a joequake style timer for MP (and SP), moveable by cvar scr_gameclock_(x|y)
Parse_PQServerMessage and friends

Most of this is from either qrack or my modified joequake dev0.15 and is
rather ugly (works for me standard) however it may give some ideas to
enhance quakespasm for multiplayer.

new cvars:

// extern cvar_t cl_autodemo; Could not get it to work

extern cvar_t pq_scoreboard_pings;

Those are part of my unsuccessful try to get cl_autodemo to work, not needed atm
extern cvar_t freelooking; //R00k - added for freelook in playback
extern cvar_t freemoving; //R00k - freemove in demo playback
extern cvar_t cl_demorewind;

extern cvar_t pq_dequake; // JPG 1.05 - dedicated console translation
cvar_t scr_centersbar = {"scr_centersbar", "0",true};
cvar_t scr_printstats = {"scr_printstats", "1",true};
cvar_t scr_printstats_style = {"scr_printstats_style", "0",true};
cvar_t scr_printstats_length = {"scr_printstats_length", "0.5",true};
cvar_t scr_gameclock = {"scr_gameclock", "1", true};
cvar_t scr_gameclock_x = {"scr_gameclock_x", "0", true};
cvar_t scr_gameclock_y = {"scr_gameclock_y", "0", true};
cvar_t pq_teamscores = {"pq_teamscores", "1",true}; // JPG - show teamscores
cvar_t pq_timer = {"pq_timer", "1",true}; // JPG - show timer
cvar_t pq_scoreboard_pings = {"pq_scoreboard_pings", "0",true}; // JPG - show ping times in the scoreboard

Discussion

  • Nobody/Anonymous

    MP enhancements ala proquake/qrack

     
  • Ozkan Sezer

    Ozkan Sezer - 2015-03-23
    • Group: --> svn
     
  • Tim Bergeron

    Tim Bergeron - 2021-12-16

    bump

    who created this patch?

     

Log in to post a comment.