27.06.2009, 14:58
Okay does
mean do a function and do this?
EXAMPLE :
Does the && make the player register AND set there job to CITIZEN (9 is citizen)
Or does || make it do both?
Код:
&&
EXAMPLE :
pawn Код:
if (strcmp("/register", cmdtext, true) == 0)
{
RegisterPlayer(playerid) && SetJob(playerid, 9);
return 1;
}
Or does || make it do both?