08.03.2010, 22:36
Код:
#include <a_samp>
main()
{
print("\n----------------------------------");
print(" Test Gamemode by Chris Wilson ");
print("----------------------------------\n");
}
public OnGameModeInit()
{
LimitGlobalChatRadius(20.0);
SetNameTagDrawDistance(10.0);
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/help", cmdtext, true) == 0)
{
SendClientMessage(playerid ,#008000 ,"Welcome To my test script!");
SendClientMessage(playerid ,#008000 ,"The Lastest Commands are:");
SendClientMessage(playerid ,#008000 ,"Look in /Commands for the newist Commands.");
SendClientMessage(playerid ,#008000 ,"Other help menus:");
SendClientMessage(playerid ,#008000 ,"Blah Blah.");
SendClientMessage(playerid ,#008000 ,"Enjoy !!");
return 1;
}
return 0;
}

