16.10.2017, 17:01
Are you serious? using global variable for checking if player used /sit or /off lol?
has to be per player
and later will need to assign the value with index.
ex
becomes
PHP Code:
new WheelchairShit=0;
PHP Code:
new WheelchairShit[MAX_PLAYERS] = {0, ...};
ex
PHP Code:
WheelchairShit = 1;
PHP Code:
WheelchairShit[playerid] = 1;