Code
#include <sourcemod>
new Handle:g_hrul = INVALID_HANDLE;
public Plugin:myinfo =
{
name = "Motd Rules",
author = "nynCuKaH",
};
public OnPluginStart()
{
RegConsoleCmd("rules", Ruless);
g_hrul = CreateConVar("sm_motd_rules", "http://world-source.ru");
}
public Action:Ruless(client,args)
{
decl String:ruls[255];
GetConVarString(g_hrul, ruls, sizeof(ruls));
ShowMOTDPanel(client, "Правила", ruls, MOTDPANEL_TYPE_URL);
return Plugin_Continue;
}
Держи :)Добавлено (12.07.2012, 21:43:42)
---------------------------------------------
там где http://world-source.ru вставляешь свою ссылку на правила :)