22.05.2016, 11:23
Which should I use for small things 
+ Global Var:
+ Player Var:

+ Global Var:
Код:
new fcontrol[MAX_PLAYERS];
stock fblabla(playerid){
if(ftest == 0){
fcontrol[playerid] = 1;
}else{
fcontrol[playerid] = 0;
}
Код:
stock sblabla(playerid){
if(stest == 1){
SetPVarInt(playerid, "scontrol", 1);
}else{
SetPVarInt(playerid, "scontrol", 0);
}


