10.06.2013, 12:37
try this one
i Tested this in my gamemode works perfect
pawn Код:
dcmd_web(playerid,params[])
{
#pragma unused params
#pragma unused playerid
new string[128];
format(string, sizeof(string), "Los Santos Roleplay/Cops/Robbers");
SendClientMessageToAll(COLOR_WHITE, string);
SendClientMessageToAll(0x87CEEBAA, "This is NOT a deathmatch server. Do not randomly kill players");
SendClientMessageToAll(0x87CEEBAA, "Visit our website to report bugs/suggestions/complaints etc");
SendClientMessageToAll(0x87CEEBAA, "There is a full list of commands/rules and other information on our website" );
SendClientMessageToAll(0x87CEEBAA, "www.LSCNRV3.tk");
GameTextForAll("~w~www.LSCNRV3.tk", 6000, 0);
return 1;
}