View Single Post
psychonic

BAFFLED
Join Date: May 2008
Old 08-03-2018 , 22:15   Re: No MOTD in Panorama
Reply With Quote #178

Quote:
Originally Posted by Fastmancz View Post
Probably I found it.

https://partner.steamgames.com/doc/a...erlayToWebPage
https://github.com/alliedmodders/hl2...friends.h#L275

I think the SteamWorks (https://forums.alliedmods.net/showthread.php?t=229556) currently doesn't support ISteamFriends Interface. Can you please add it (if this is the right function)? Thanks.

For example:
PHP Code:
#include <sourcemod>
#include <steamworks>

public void OnPluginStart()
{
    
RegConsoleCmd("sm_motd"motd);
}

public 
Action motd(clientargs)
{
    
SteamWorks_ActivateGameOverlayToWebPage("https://google.com");

Quote:
Originally Posted by Fastmancz View Post
So last chance for recover the MOTD. We can try use SteamWorks (https://partner.steamgames.com/doc/a...eamHTMLSurface); (https://partner.steamgames.com/doc/features/overlay) but I don't know, if it's possible run some website directly into the Steam GUI web browser.

Maybe it can't be solved, I don't know.
Everything you've mentioned are clientside interfaces. None of it exists on servers, let alone networking of it from servers to clients. There is nothing to add to SourceMod or the SteamWorks extension because it does not exist to add.

Last edited by psychonic; 08-03-2018 at 22:15.
psychonic is offline