Quote:
Originally Posted by Calgon
The value will remain the same regardless of which scope you change it in, as long as it's a global variable.
pawn Код:
new var;
public OnGameModeInit() { var = 2; }
//var is always 2 unless changed now
|
Last question. Is there a way to know the memory address of a specific variable? Like using pointers or anything.