#1

any one can tell how can i make afk system for vip only that vip can use pls tell
Reply
#2

pls pls pls pls help me
Reply
#3

Quote:
Originally Posted by Xport6050
Посмотреть сообщение
any one can tell how can i make afk system for vip only that vip can use pls tell
Sure.

pawn Код:
new afk[MAX_PLAYERS]; //Top



CMD:afk(playerid, params[])
{
 if(YourVIPVariablehere > 0)
 {
    if(afk[playerid] == 0)
    {
        SendClientMessage(playerid, -1, "AFK");
        afk[playerid] = 1;
    }
     else
    {
        SendClientMessage(playerid, -1, "You are now back");
        afk[playerid] = 0;
     }
 }
 else return 0;
 return 1;
}
Of course, you're gonna have to change some of the variables yourself.
P.S: Don't double post within 2 minutes
Reply
#4

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

pawn Код:
new afk[MAX_PLAYERS]; //Top



CMD:afk(playerid, params[])
{
 if(YourVIPVariablehere > 0)
 {
    if(afk[playerid] == 0)
    {
        SendClientMessage(playerid, -1, "AFK");
        afk[playerid] = 1;
    }
     else
    {
        SendClientMessage(playerid, -1, "You are now back");
        afk[playerid] = 0;
     }
 }
 else return 0;
 return 1;
}
Of course, you're gonna have to change some of the variables yourself.
P.S: Don't double post within 2 minutes
but back cmd also need na for vip
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)