#1

Hello SAMP Members,
I have a mask system, Though I want to make my server hardcore RP, and curious how to make all players masked. Would love if I could get a hand with this, Much appreciated.
Reply
#2

Loop.

pawn Код:
CMD:maskforall(playerid, params[])
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        PlayerInfo[i][Mask] = 1; // Change with your mask variable.
    }
    return 1;
}
Reply
#3

Quote:
Originally Posted by HY
Посмотреть сообщение
Loop.

pawn Код:
CMD:maskforall(playerid, params[])
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        PlayerInfo[i][Mask] = 1; // Change with your mask variable.
    }
    return 1;
}
Your a bloody champion, Thanks so much man!

REP +
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)