10.10.2013, 11:04
I'm going to give you the simplest example.
pawn Код:
#include < a_samp >
new
sth // declared as global variable
;
main( ) { }
public OnGameModeInit( )
{
new
sth // declared as local variable
;
// code
return 1;
}