AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting (https://forums.alliedmods.net/forumdisplay.php?f=107)
-   -   [CSGO] Sourcemod Not Getting Steamid (https://forums.alliedmods.net/showthread.php?t=289059)

thomasjosif 10-13-2016 22:10

[CSGO] Sourcemod Not Getting Steamid
 
Hello, everyone my jailbreak server has some issues. After updating csgo whenever a plugin decides to call GetClientAuthId (Or the old GetClientAuthString) we would get an output like STEAM_ID_LAN. Even my simple script here
PHP Code:

#include <sourcemod>


public Plugin myinfo = {
    
name "Steamid's are screwed up?",
    
author "Thomasjosif",
    
description "",
    
version "1.0",
    
url "http://hellsgamers.com"
};

public 
void OnPluginStart() 
{
    
RegAdminCmd("sm_steamid"Cmd_testADMFLAG_ROOT"");
}

public 
Action Cmd_test(int clientint args)
{
    
char steamid[32];
    
GetClientAuthId(clientAuthId_Steam2steamidsizeof(steamid))
    
PrintToChat(client"%s"steamid);
    return 
Plugin_Handled;


Is returning STEAM_ID_LAN.

Any help will be greatly appreciated as lots of our steamid dependant system's are not working (eg, Bans)

-Thomas

codecae 10-13-2016 22:14

Re: [CSGO] Sourcemod Not Getting Steamid
 
I am seeing a similar issue on all of my servers. All steam IDs are coming in as STEAM_ID_PENDING. Seems to have started after the update tonight.

It's really screwing with stuff in my database!

thomasjosif 10-13-2016 22:18

Re: [CSGO] Sourcemod Not Getting Steamid
 
Quote:

Originally Posted by codecae (Post 2461907)
I am seeing a similar issue on all of my servers. All steam IDs are coming in as STEAM_ID_PENDING. Seems to have started after the update tonight.

It's really screwing with stuff in my database!


Yeah we have a couple PENDING entries too.

https://i.gyazo.com/fcb2c90ee90f1d46...c050707c15.png

sneaK 10-13-2016 22:24

Re: [CSGO] Sourcemod Not Getting Steamid
 
Update to the latest version of SM. Something is a little wonky with it right now, so if that doesn't solve the problem there will probably be another update tomorrow.

thomasjosif 10-13-2016 22:25

Re: [CSGO] Sourcemod Not Getting Steamid
 
Quote:

Originally Posted by blackhawk74 (Post 2461912)
Update to the latest version of SM. Something is a little wonky with it right now, so if that doesn't solve the problem there will probably be another update tomorrow.

Already done, did not fix anything. (1.7 Build)

Powerlord 10-13-2016 22:28

Re: [CSGO] Sourcemod Not Getting Steamid
 
Quote:

Originally Posted by thomasjosif (Post 2461913)
Already done, did not fix anything. (1.7 Build)

I don't think 1.7 is being updated any more. 1.8 has been the stable release for some time now.

codecae 10-14-2016 00:08

Re: [CSGO] Sourcemod Not Getting Steamid
 
I updated to 1.8.0.5946 and it seems to have cleared up this issue so far.

thomasjosif 10-14-2016 10:28

Re: [CSGO] Sourcemod Not Getting Steamid
 
Quote:

Originally Posted by codecae (Post 2461926)
I updated to 1.8.0.5946 and it seems to have cleared up this issue so far.

This worked for me as well.

ZASTRELIS 10-14-2016 12:20

Re: [CSGO] Sourcemod Not Getting Steamid
 
Quote:

SourcePawn Engine: 1.9.0.5992, jit-x86 (build 1.9.0.5992)
Works fine, but one problem not fixed. Clientprefs.
When user join to the server his prefs not loaded, only when he play and map has been changed, at new level server will be load his prefs. wf? How fix this or this's a sm bug?

Michael Shoe Maker 10-14-2016 12:47

Re: [CSGO] Sourcemod Not Getting Steamid
 
Quote:

Originally Posted by ZASTRELIS (Post 2462041)
Works fine, but one problem not fixed. Clientprefs.
When user join to the server his prefs not loaded, only when he play and map has been changed, at new level server will be load his prefs. wf? How fix this or this's a sm bug?

Works fine for me.


All times are GMT -4. The time now is 09:34.

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