Ok adding those -game params works now on the server. I am still get all that console spame about VM_drawstring though. Maybe a darkplaces problem?
Announcement
Collapse
No announcement yet.
Mods on Coop server?
Collapse
X
-
It's just this:
VM_drawstring: scale x and y is null !
being spammed about 100 times a second in the console. Can't read any text or read player chat with this going on.
Could you check you .cfg files and see if you have it set anywhere? I don't see it in mine, and it's not mentioned on the darkplaces website either.
-r0t.uk- cOOp - Mapvote - r0t.uk:26001
-r0t.uk- DM - Mapvote - r0t.uk:26000
Comment
-
it's not something you set in your config. It's an engine specific check. In this case it's not letting us know enough information to debug the problem. It's possible there is a cvar that you could use to see more information while this is occurring. You could try running darkplaces with the -developer commandline to see if it provides more information. But there is still something wrong with the way this mod is loading for you. Make sure you have the latest darkplaces ( I think you do), Also make sure you have a few of these cvars in an autoexec.cfg file that are specific to load mods for compatibility:
"sv_gameplayfix_droptofloorstartsolid""1"
"sv_gameplayfix_findradiusdistancetobox""1"
"sv_gameplayfix_grenadebouncedownslopes""1"
"sv_gameplayfix_noairborncorpse""1"
"sv_gameplayfix_qwplayerphysics""1"
"sv_gameplayfix_fixedcheckwatertransition""1"
"sv_gameplayfix_swiminbmodels""1"
"sv_gameplayfix_setmodelrealbox""1"
"sv_gameplayfix_stepwhilejumping""1"
"sv_gameplayfix_upwardvelocityclearsongroundflag"" 1"
"sv_gameplayfix_downtracesupportsongroundflag" "1"
"sv_gameplayfix_delayprojectiles""1"
This is the config file I use:
config.cfg
This is the autoexec.cfg I use:
autoexec.cfg
And this is the default.cfg that runs in the quake.rc:
default.cfg
Hope that helps.Last edited by PrimalLove; 09-06-2014, 09:17 PM.
Comment
-
I can find the warning here: git.xonotic.org Git - xonotic/darkplaces.git/blame_incremental - prvm_cmds.c
Not sure if there's something to set to fix it yet, but I'll persevere a little longer
-r0t.uk- cOOp - Mapvote - r0t.uk:26001
-r0t.uk- DM - Mapvote - r0t.uk:26000
Comment
-
Originally posted by slackhead View PostI can find the warning here: git.xonotic.org Git - xonotic/darkplaces.git/blame_incremental - prvm_cmds.c
Not sure if there's something to set to fix it yet, but I'll persevere a little longer
Comment
-
Something else unrelated: When I get a server message showing the remaining time in the console or on hud, the time is just a blank space, like '<space> minute remaining'.
-r0t.uk- cOOp - Mapvote - r0t.uk:26001
-r0t.uk- DM - Mapvote - r0t.uk:26000
Comment
-
Maybe it's just a warning
Comment
-
Originally posted by slackhead View PostSomething else unrelated: When I get a server message showing the remaining time in the console or on hud, the time is just a blank space, like '<space> minute remaining'.
Comment
-
Also, try this csprog.dat. I am guessing the VM_drawstring is related to the csqc code and so try this one that I know doesn't create these problems.
HERE
Originally posted by slackhead View PostI've noticed the same thing on other server messages. I turned off utf8 support and that may have fixed it.
Comment
Comment