Üdv, gondoltam közzé teszek 1 kisebb kódot ami a szerver nevét változtatja 2 percenként!
Készitõ: Kah (Én).
Készitési idõ : 5 perc
/*Készítõ: Kah*/
public OnFilterScriptInit()
{
SetTimer(\"changehostname\",120*1000,true);
return 1;
}
forward changehostname();
public changehostname()
{
new rand = random(5);
switch(rand)
{
case 0: SendRconCommand(\"hostname [HUN]Szervered neve\");
case 1: SendRconCommand(\"hostname [HUN]\");// stb..
case 2: SendRconCommand(\"hostname [HUN]\");
case 3: SendRconCommand(\"hostname [HUN]\");
case 4: SendRconCommand(\"hostname [HUN]\");
}
return 1;
}