Raised This Month: $51 Target: $400
 12% 

New CSGO update broke my server


Post New Thread Reply   
 
Thread Tools Display Modes
Rodya
Senior Member
Join Date: Mar 2017
Location: Russia
Old 08-19-2017 , 10:51   Re: New CSGO update broke my server
Reply With Quote #301

sm exts?
__________________

Rodya is offline
deville
AlliedModders Donor
Join Date: Oct 2016
Old 08-19-2017 , 10:54   Re: New CSGO update broke my server
Reply With Quote #302

On the latest stable build: 6024. My jumpstats plugin stopped working, as well as rankme and some others.

Here's parts of whats getting printed.

Quote:
L 08/19/2017 - 16:533: [SM] [0] SetEntProp
L 08/19/2017 - 16:533: [SM] [1] Line 205, E:\Github\Franug-GiveNamedItem\scripting\franug_givenameditem. sp::OnWeaponEquip
L 08/19/2017 - 16:533: [SM] [3] GivePlayerItem
L 08/19/2017 - 16:533: [SM] [4] Line 1964, H:\workdir\hidenseek-csgo\addons\sourcemod\scripting\hidenseek.sp: :GiveGrenades
L 08/19/2017 - 16:533: [SM] [5] Line 1327, H:\workdir\hidenseek-csgo\addons\sourcemod\scripting\hidenseek.sp: :OnPlayerSpawnDelay
.. running linux

Last edited by deville; 08-19-2017 at 11:09.
deville is offline
TheEdgeClan.Eu
Member
Join Date: Jun 2016
Old 08-19-2017 , 11:15   Re: New CSGO update broke my server
Reply With Quote #303

sm_slay crashes the server. any idea?
__________________
TheEdgeClan.Eu is offline
yogev
Member
Join Date: Mar 2017
Old 08-19-2017 , 11:33   Re: New CSGO update broke my server
Reply With Quote #304

custom knife from the shop crashing the game for all the players
yogev is offline
asherkin
SourceMod Developer
Join Date: Aug 2009
Location: OnGameFrame()
Old 08-19-2017 , 11:36   Re: New CSGO update broke my server
Reply With Quote #305

Quote:
Originally Posted by TheEdgeClan.Eu View Post
sm_slay crashes the server. any idea?
You haven't updated - and you probably disabled the gamedata updater.
__________________
asherkin is offline
Michauux
Member
Join Date: Nov 2015
Old 08-19-2017 , 11:39   Re: New CSGO update broke my server
Reply With Quote #306

Not working SM Stable 6024 and SM Dev 6139...
Michauux is offline
Kailo
Senior Member
Join Date: Sep 2014
Location: Moscow, Russia
Old 08-19-2017 , 13:21   Re: New CSGO update broke my server
Reply With Quote #307

Many hours of searching... only that i found
Thay added new function.
const char *UnkFunc(CEconItemDefinition*)
Which return alias of weapon that definition is given.
In linux
PHP Code:
int __cdecl sub_A7DB10(int a1)
{
  
int v1// ebx@2
  
char *v2// eax@2

  
if ( a1 )
  {
    
v1 = *(_DWORD *)(a1 448);
    
v2 strchr(*(const char **)(a1 448), 95);
    if ( 
v2 )
      
v1 = (int)(v2 1);
  }
  else
  {
    
v1 0;
  }
  return 
v1;

Calling only once in BuyState::OnUpdate(CCSBot *)
But in Windows dll this function is inline into BuyState::OnUpdate.

Update: Now found that they updated item_purchase event.
From modevents.res:
Code:
"item_purchase"
{

	"userid"	"short"
	"team"		"short"
	"loadout"	"short"
	"weapon"	"string"
}
P.S. Need to update wiki and check others events =)

Update:
buy command handler use function for getting loadout from alias
weaponinfo_s *Func(const char *)
(in linux may be "weaponinfo_s *CSSPlayer::Func(const char *)")
0xA27B00 in linux, signature: "\x55\x31\xC0\x89\xE5\x57\x56\x53\x83\xEC\x1C \x8B\x15\x2A\x2A\x2A\x2A\x8B\x7D\x0C\x85\xD2"
0x104075D0 in windows, signature: "\x55\x8B\xEC\x56\x33\xF6\x57\x39\x35\x2A\x2A \x2A\x2A\x74\x2A"
PHP Code:
struct weaponinfo_s
{
    
int unk_0;
    
int loadout;
    
char *alias;


Last edited by Kailo; 08-19-2017 at 15:59.
Kailo is offline
kryddersonn
Junior Member
Join Date: May 2017
Old 08-19-2017 , 15:46   Re: New CSGO update broke my server
Reply With Quote #308

I have no idea what is going on, after I changed some .txt files("the fix"), my database.cfg wont work, and im using SB++ for Admins. Now I get the "No Access" when I type !admin, Do I need to wait for an update of SM 1.8 to have it fixed. Happened after this bs patch :-))

the fix I used was posted here in the comments section, so it made my server work, but now my Databases.cfg and also TOG's clantags has some trouble.

Last edited by kryddersonn; 08-19-2017 at 15:49.
kryddersonn is offline
chiowa
New Member
Join Date: Aug 2017
Old 08-19-2017 , 15:55   Re: New CSGO update broke my server
Reply With Quote #309

I can't connect to my db.

L 08/19/2017 - 13:54:11: [SM] Exception reported: Invalid Handle 0 (error: 4)
L 08/19/2017 - 13:54:11: [SM] Blaming: timer.smx
L 08/19/2017 - 13:54:11: [SM] Call stack trace:
L 08/19/2017 - 13:54:11: [SM] [0] GetArrayString
L 08/19/2017 - 13:54:11: [SM] [1] Line 1092, timer.sp::Native_GetNameFromPlayerID
L 08/19/2017 - 13:54:11: [SM] [3] GetNameFromPlayerID
L 08/19/2017 - 13:54:11: [SM] [4] Line 602, replay.sp::GhostCheck

Also getting this: L 08/19/2017 - 13:53:04: [CRASH] WARNING: GetSpew not found in gamedata, console output will not be included in crash reports.

I am on build 6024. No server crash, but bhop server is not functional to save and load times and zones. Would appreciate any help.
chiowa is offline
kryddersonn
Junior Member
Join Date: May 2017
Old 08-19-2017 , 17:47   Re: New CSGO update broke my server
Reply With Quote #310

I get

L 08/19/2017 - 00:00:28: [SM] Call stack trace:
L 08/19/2017 - 00:00:28: [SM] [0] CS_SetClientClanTag
L 08/19/2017 - 00:00:28: [SM] [1] Line 815, Z:\togsclantags.sp::CheckTags
L 08/19/2017 - 00:00:28: [SM] [2] Line 633, Z:\togsclantags.sp::Event_Recheck
L 08/19/2017 - 00:00:28: [SM] [4] CS_SwitchTeam
L 08/19/2017 - 00:00:28: [SM] [5] Line 24, ././scripting/retakes/generic.sp::SwitchPlayerTeam
L 08/19/2017 - 00:00:28: [SM] [6] Line 804, ././scripting/retakes.sp::UpdateTeams
L 08/19/2017 - 00:00:28: [SM] [7] Line 576, ././scripting/retakes.sp::Event_RoundPreStart
-----------------------------------------------------------------------------------------------------------------------------
L 08/19/2017 - 23:27:48: [SM] Detected parse error(s) in file "C:\TCAFiles\Users\anderso\3924\csgo\addons\s ourcemod\configs\databases.cfg"
L 08/19/2017 - 23:27:48: [SM] Line 58: Section beginning without a matching ending


Im using SM 1.8

Last edited by kryddersonn; 08-19-2017 at 18:28.
kryddersonn is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 14:52.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode