These variables are shared between all players on the server.
new stamina
new nbut
new Act
All should be arrays to allow a variable for each individual player:
PHP Code:
#define MAX_PLAYERS 32
new stamina[ MAX_PLAYERS + 1 ]
new nbut[ MAX_PLAYERS + 1 ]
new Act[ MAX_PLAYERS + 1 ]
//Then use stamina[ id ]
__________________