28.12.2011, 17:13
What is it's memory allocation? For example if I do
Edit: When will the memory get destroyed?
pawn Код:
//At Top
new A;
//At OnGameModeInit CB
A = 2;
//At OnPlayerSpawn CB
print(A); // Is the variable's A value still 2?