posted on 2008-05-11 16:25:39 by
krang
Our server has written a script in sourcemod that does this very thing, allows a url to open without any MOTD or panel clientside. I'll paste a snippet of what calls the method, ShowVGUIPanel() and forces it to be hidden:
new Handle:Kv = CreateKeyValues("data");
KvSetString(Kv, "title", "YOU SHOULDNT SEE THIS");
KvSetString(Kv, "type", "2"); //2 for URL
KvSetString(Kv, "msg", buffer);
ShowVGUIPanel(i, "info", Kv, false); //last false sets visible false
CloseHandle(Kv);
Consider this a clarification of what method will allow this and a second request for this feature. Thanks!