View Single Post
ImACow
AlliedModders Donor
Join Date: Feb 2015
Old 05-28-2020 , 06:04   Re: [ANY] SteamWorks
Reply With Quote #758

Since the last CSGO update yesterday ( https://blog.counter-strike.net/inde...2020/05/30199/ )

– Updated Steamworks SDK and Steam libraries to the latest versions released in May 2020.

The SteamWorks_GetPublicIP is returning false and 0,0,0,0
PHP Code:
    int ip[4];
    
bool worked SteamWorks_GetPublicIP(ip)
    
char IPv4[64];
    
Format(IPv4sizeof(IPv4),"%i.%i.%i.%i",ip[0],ip[1],ip[2],ip[3]);
    
ReplyToCommand(client" worked[%b] IPv4[%s]"workedIPv4); 
returns:

PHP Code:
 worked[0IPv4[0.0.0.0
Not sure if its just me.


Also:

PHP Code:
Handle hHTTP_request SteamWorks_CreateHTTPRequest(k_EHTTPMethodGETAPI_URL); 
is returning null,

So I think the gamedata is off?
__________________

Last edited by ImACow; 05-28-2020 at 06:18.
ImACow is offline