17.06.2010, 16:01
Код:
public OnGameModeInit() { SetGameModeText("LV_TDM v4.2.7"); SetTeamCount(3); ShowNameTags(1); UsePlayerPedAnims(); DisableInteriorEnterExits(); ShowPlayerMarkers(1); SetWorldTime(0); TextDrawShowForAll(Textdraw0); AllowInteriorWeapons(1); public OnPlayerConnect(playerid) { TextDrawShowForPlayer(playerid, Textdraw0); TextDrawShowForPlayer(playerid, Textdraw1); GameTextForPlayer(playerid," ~n~ ~n~ ~n~~b~Clan War~n~~r~Team Deathmatch",4000,1); GivePlayerMoney(playerid, 5000); new pName[MAX_PLAYER_NAME]; new string[48]; GetPlayerName(playerid, pName, sizeof(pName)); format(string, sizeof(string), "%s has joined the server.", pName); SendClientMessageToAll(COLOR_GREY, string); return 1; } That is what i have.