Not Receiving Any Message
#2

pawn Код:
SendClientMessage(playerid, COLOR_WHITE, string);
    format(string, sizeof(string), "You have changed the name of this faction to %s.", FactionInfo[id][fName]);
You are basically sending an empty string, you need to flip these.

pawn Код:
format(string, sizeof(string), "You have changed the name of this faction to %s.", FactionInfo[id][fName]);
    SendClientMessage(playerid, COLOR_WHITE, string);
Reply


Messages In This Thread
Not Receiving Any Message - by Chrillzen - 28.02.2014, 09:20
Re: Not Receiving Any Message - by FalconWingsX - 28.02.2014, 09:23
Re: Not Receiving Any Message - by Chrillzen - 28.02.2014, 09:36

Forum Jump:


Users browsing this thread: 1 Guest(s)