03.01.2010, 00:14
Try this.
pawn Код:
3711 {
3710 if(PlayerInfo[playerid][pDonateRank] != 0)
3711 {//<=====
3712 new pName[MAX_PLAYER_NAME];
3713 new string[48];
3714 GetPlayerName(playerid, pName, sizeof(pName));
3715 format(string, sizeof(string), "Donator %s Joined the server. (Joined)", pName);
3716 SendClientMessageToAll(0x9ACD32AA, string);
3717 }
3718 else//And there was no need for the else if, just an else will do
3719 {
3720 new pName[MAX_PLAYER_NAME];
3721 new string[48];
3722 GetPlayerName(playerid, pName, sizeof(pName));
3723 format(string, sizeof(string), " %s Joined the server. (Joined)", pName);
3724 SendClientMessageToAll(0x9ACD32AA, string);
3725 }