This should be a simple version of what you are looking for.
PHP Code:
#include <sourcemod>
#define CHAT_TAG "[STEAM GROUP]"
#define STEAMGROUP_URL "https://steamgrouplink.com"
public void OnPluginStart() {
RegConsoleCmd("sm_steam", Command_SteamGroup);
}
public Action Command_SteamGroup(int client, int args) {
ReplyToCommand(client, "%s Join our steam group at --> %s", CHAT_TAG, STEAMGROUP_URL);
}
Happy Holidays,
Mr. Freeman
__________________
Feel Free to PM me about any questions, I'll do my best to help