SAMP ranks in chat
#1

Is it possible to make for example
if player score is 10
When he writes a message it would say
Twinkilies: [Rank1] text
Reply
#2

pawn Код:
public OnPlayerText(playerid,text[])
{
    new string[124],name[24];
    if(GetPlayerScore(playerid) >= 500)
    {
        GetPlayerName(playerid,name,24);
        format(string,sizeof(string),"%s: [Rank1] %s",name,text);
        SendClientMessageToAll(-1,string);
    }
    return 1;
}
Reply
#3

Thanks mate
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)