Ok, so i just need to check if i'm right...
#1

So if i use this:
Код:
new Wanted[MAX_PLAYERS][6];
does that mean that i can use something like this later:
Код:
Wanted[playerid][1] or 
if(Wanted[playerid][2] == 1)
{
      //arrest things here..
}
Reply
#2

You can use 0-5.
pawn Код:
Wanted[playerid][0] = 1;
Wanted[playerid][1] = 0;
Wanted[playerid][2] = 1;
Wanted[playerid][3] = 0;
Wanted[playerid][4] = 1;
Wanted[playerid][5] = 0;

if(Wanted[playerid][2] == 1)
{
    // arest things here..
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)