22.10.2013, 21:46
Today, I learnt that
This Current Code, can be used in opposite ways (I don't know how it is called, but I'll call it, Opposite Function :P)
This Current Code, can be used in opposite ways (I don't know how it is called, but I'll call it, Opposite Function :P)
pawn Код:
new
PlayerTeam [ MAX_PLAYERS char ]
;
//Normal Function
if(PlayerTeam{playerid} == 1)
{
Rest Of The Code In Here
}
//Opposite Function
if(1 == PlayerTeam{playerid})
{
Rest Of The Code In Here
}