#include #define MOD_TAG "\x01\x0B\x0E★ \x07[PGC24 -> Web Commands]\x06 " public Plugin:myinfo = { name = "PGC24 -> Web Commands", description = "Autorski plugin PGC24.PL", author = "Mesharsky", version = "1.0", url = "http://www.PGC24.PL" }; public void OnPluginStart() { RegConsoleCmd("sm_regulamin", CMD_Regulamin); RegConsoleCmd("sm_rekrutacja", CMD_Rekrutacja); RegConsoleCmd("sm_forum", CMD_Forum); } public Action CMD_Regulamin(int client, int args) { PrintToChat(client, "%sPoczekaj chwile, niech strona się załaduje !", MOD_TAG); ShowMOTDPanel(client, "Regulamin", "https://pgc24.pl/api.php?url=Regulamin Serwera Only Awp - Informacje/Ogłoszenia - PGC24.PL | Sieć serwerów Counter-Strike", MOTDPANEL_TYPE_URL); return Plugin_Handled; } public Action CMD_Rekrutacja(int client, int args) { PrintToChat(client, "%sPoczekaj chwile, niech strona się załaduje !", MOD_TAG); ShowMOTDPanel(client, "Zabawy", "https://pgc24.pl/api.php?url=https://pgc24.pl/forum/index.php?/topic/235-wz%C3%B3r-i-wymagania-na-j/", MOTDPANEL_TYPE_URL); return Plugin_Handled; } } public Action CMD_Forum(int client, int args) { PrintToChat(client, "%sPoczekaj chwile, niech strona się załaduje !", MOD_TAG); ShowMOTDPanel(client, "Zabawy", "https://pgc24.pl/api.php?url=https://pgc24.pl/forum", MOTDPANEL_TYPE_URL); return Plugin_Handled; }