Hi there, first of all thanks for taking a look into my post.
I'm creating a DarkRP server, and obviously I can't use gm_construct as it's map.
so I decided to change the map to rp_downtown_justrp, from there this error starts
to appear in my server console!
Also there was some files when I decompiled the map that I don't knew where to put!
"SOLID_VPHYSICS static prop with no vphysics model!
(models/props_lab/corkboard001.mdl)
SOLID_VPHYSICS static prop with no vphysics model!
(models/props/de_train/handrail_alley-stairs.mdl)
SOLID_VPHYSICS static prop with no vphysics model!
(models/props/de_train/handrail_alley-upperdeck.mdl)
SOLID_VPHYSICS static prop with no vphysics model!
(models/props/de_train/handrail_alley-upperdeck.mdl)
SOLID_VPHYSICS static prop with no vphysics model!
(models/props/de_train/handrail_alley-upperdeck.mdl)"
I know that it doesn't mess up with anything in server, but I'm focusing in a clean console, without any error. I just don't want to see this error in my console...
thank you!
[code]con_filter_enable 1
con_filter_text_out "SOLID_VPHYSICS static prop with no vphysics model"[/code]
Thank you for helping, Billy!
but where do I have to put those lines?
edit: I've put those lines in autoexec.cfg, but it still appears!
[QUOTE=BillyOnWiiU;50119087]con_filter_enable 1
con_filter_text_out "SOLID_VPHYSICS static prop with no vphysics model"[/QUOTE]
This commands do not exists on Linux SRCDS. May be on Windows too. Is there other way to filter console?
- Removed link .. see below for both linux and window versions -
[code]
require("enginespew")
local ignorestuff = {}
-- Blacklist --
ignorestuff["SOLID_VPHYSICS static prop with no vphysics model!"] = true
-- Remember; never put print or msg in this hook. Might cause infinite loop.
hook.Add("EngineSpew", "ESExample", function(spewType, msg, group, level)
if ignorestuff[msg] then
return false
end
end )
[/code]
Might be a two lined string .. if so:
[code]
require("enginespew")
-- Remember; never put print or msg in this hook. Might cause infinite loop.
hook.Add("EngineSpew", "ESExample", function(spewType, msg, group, level)
if string.match(msg,"SOLID_VPHYSICS static prop with no vphysics model[.]+") then
return false
end
end )
[/code]
[B]Hi Nak[/B] thank you!
but where do I've to put gm_spew-master and this code? step by step
sorry about that, I'm new at Gmod (400 hours)
EOPE at metastruct got the linux and windows version: [url]https://github.com/Metastruct/EPOE/tree/master/lua/bin[/url].
Place gmsv_enginespew_linux.dll or gmsv_enginespew_win32.dll in [b]path/to/server/garrysmod/lua/bin/[/b].
Then the script under [b]path/to/server/garrysmod/lua/whatevername.lua[/b].
[B]I still don't get it. sorry[/B] :/
[I]I use windows 7, 64 bits[/I]
My questions: where do I've to put EPOE-master? here C:\GMOD\garrysmod\addons ?
- Which 'bin' folder I've to put the 'gmsv_enginespew_win32.dll'? (see this pic please)
[url]https://i.gyazo.com/d11cceff6a7dd9ec4d1135a78c8c6e65.png[/url]
- I've put the lua here, it is right?
[url]https://i.gyazo.com/cd1ddc8031e2647b2b87780c09939f6a.png[/url]
Your last pic, create a folder named [b]bin[/b] in there and place the .dll there.
[url]https://i.gyazo.com/0b2933749bae59be845cee68b8e56dd9.png[/url]
[url]https://i.gyazo.com/446a15ae197a3c8c8bfc149f92d1e996.png[/url]
[B]That way?[/B] It didn't worked :/
where do I drop EPOE-master?
edit: inside the lua file: [url]https://i.gyazo.com/998509ffb169e56536e6ed4b56e9735e.png[/url]
You obviously have to restart your server and manually run that script. You should be able to put it into the lua/autorun/server folder so it is ran on your sever automatically.
Don't forget to restart the server once you make any changes.
I've put spewfilter in 'C:\GMOD\garrysmod\lua\autorun\server' but it still appears those errors :/
and yes, i'm restarting the server everytime I make any changes
The .lua code is most likely wrong.
oh, so what is wrong with the lua? can you fix it for me please?
[QUOTE=uRandomAlex;50129078]This commands do not exists on Linux SRCDS. May be on Windows too. Is there other way to filter console?[/QUOTE]
They work on Windows. Weird how they are not on Linux.
Sorry, you need to Log In to post a reply to this thread.