Hello!
I'm having a huge error which when it happens, it totally spams the console. Error: [url]http://pastebin.com/9iYH1BF1[/url]
I've been trying to find what exactly is causing it for a week or so now but no results. Anyone have any idea what causes this?
you are dumb, stop making false rating faggot kid
[highlight](User was banned for this post ("Flaming & homophobic language" - Hezzy))[/highlight]
[QUOTE=BucikPRO;51704143]you are dumb, stop making false rating faggot kid[/QUOTE]
You just made it worse for yourself bud.
Has anyone got any ideas what could be causing this issue?
[QUOTE=ZombiezPvP;51705531]Has anyone got any ideas what could be causing this issue?[/QUOTE]
A shitty addon.
[QUOTE=txike;51705587]A shitty addon.[/QUOTE]
Alright, Thank you. [I](I will try and remove some at a time, see if that stops the errors from being spammed.)[/I]
[QUOTE=ZombiezPvP;51705597]Alright, Thank you. [I](I will try and remove some at a time, see if that stops the errors from being spammed.)[/I][/QUOTE]
Just look through serversided files that have "m_flMaxspeed" in them.
[QUOTE=txike;51705678]Just look through serversided files that have "m_flMaxspeed" in them.[/QUOTE]
Will Do, Thank you very much.
[QUOTE=ZombiezPvP;51705705]Will Do, Thank you very much.[/QUOTE]
did you find the addon causing the error? it could be useful to people in the future
[QUOTE=StickmanJohn;51706102]did you find the addon causing the error? it could be useful to people in the future[/QUOTE]
Not yet.
[editline]22nd January 2017[/editline]
[QUOTE=txike;51705678]Just look through serversided files that have "m_flMaxspeed" in them.[/QUOTE]
I used Notepad++ to find "m_flMaxspeed" anywhere within the server files. It found the following directions:
[QUOTE] deathrun_server\cstrike\bin\server.dll (2 hits)
Line 22787: 0Ã,°“"@"°“"@"°“"@"°“"@"°“"@"°“"@"°“"@"0Ã,0ºFp’°¼`–func_rotating
Line 30015:
deathrun_server\garrysmod\bin\client.dll (1 hit)
Line 33560: °ªà@<€ à@<à@<à@<à@<à@<à@<à@<à@<p0ªà@<
deathrun_server\garrysmod\bin\server.dll (3 hits)
Line 42973: -Ð
Line 44484:
Line 48357: [/QUOTE]
No addons detected, just one file within the CSS content and within the bin folder. Could it be one of them?
In which case search for addons calling SetMaxSpeed
[QUOTE=James xX;51706866]In which case search for addons calling SetMaxSpeed[/QUOTE]
"Search 'SetMaxSpeed' (0 hits in 0 files)" ;/
I'll try to search for "m_flMaxspeed". No Results either. I will try and search them both within "garrysmod" directory.
[editline]22nd January 2017[/editline]
I found something within the game mode files!
garrysmod\gamemodes\terrortown\gamemode\player_ext.lua (2 hits)
Line 212: self:SetMaxSpeed(120 * mul)
Line 216: self:SetMaxSpeed(220 * mul)
(I'm using Nitrous Networks and it had installed the "terrortown" file automatically.) It could be out of date, however, I'm not using terrortown am I? I mean, I use the "deathrun" file within the "gamemodes" file. I'm guessing they both interact with each other?
What is the "mul" variable
The fuction is
function plymeta:SetSpeed(slowed)
local mul = hook.Call("TTTPlayerSpeed", GAMEMODE, self, slowed) or 1
if slowed then
self:SetWalkSpeed(120 * mul)
self:SetRunSpeed(120 * mul)
self:SetMaxSpeed(120 * mul)
else
self:SetWalkSpeed(220 * mul)
self:SetRunSpeed(220 * mul)
self:SetMaxSpeed(220 * mul)
end
end
[editline]22nd January 2017[/editline]
Isn't that for TTT though? I'm using the deathrun gamemode. I could try and deleting the "terrortown" folder right?
[editline]22nd January 2017[/editline]
[B]Update! I have searched for "MaxSpeed" within the "garrysmod" folder. The paste bin shows the results. (I won't paste it here because there is a lot)[/B]
[url]http://pastebin.com/4jJEHGWZ[/url]
The one that catches my eye on that paste bin is:
garrysmod\gamemodes\base\gamemode\player_shd.lua (4 hits)
Line 72: local fMaxSpeed = ply:GetMaxSpeed()
Line 72: local fMaxSpeed = ply:GetMaxSpeed()
Line 76: if ( fMaxSpeed <= 100 ) then
Line 78: elseif ( fMaxSpeed <= 300 ) then
because it says "fMaxSpeed". (I'm possibly wrong) ;/ I would really appreciate if anyone knew if its one of them that causes the spam.
You can safely ignore other gamemodes unless they are linked through derivation.
[QUOTE]garrysmod\gamemodes\deathrun\gamemode\shared.lua (3 hits)
Line 95: if(wishspeed > movedata:GetMaxSpeed()) then
Line 96: wishvel = wishvel * (movedata:GetMaxSpeed()/wishspeed)
Line 97: wishspeed = movedata:GetMaxSpeed()[/QUOTE]
this line caught my eye, as it seems to me to be part of a bunnyhop mechanism. If so, that might cause the issues you are seeing.
[QUOTE=James xX;51708674]You can safely ignore other gamemodes unless they are linked through derivation.
this line caught my eye, as it seems to me to be part of a bunnyhop mechanism. If so, that might cause the issues you are seeing.[/QUOTE]
This is the whole function that included that. [url]http://pastebin.com/ZyuubiKS[/url]
Sorry, you need to Log In to post a reply to this thread.