09.11.2013, 11:49
can somebody explain to me how can i use this thing correctly, i want to make all lines in one function. what to put "stock or forward" ?
example:
this 1 is the forward method:
and this 1 is the stock method
what should i use ?
example:
this 1 is the forward method:
pawn Код:
public OnGameModeInit()
{
GameModeTextDraws();
return 1;
}
forward GameModeTextDraws();
public GameModeTextDraws()
{
let's say it's about 300 lines.
return 1;
}
and this 1 is the stock method
pawn Код:
public OnGameModeInit()
{
GameModeTextDraws();
return 1;
}
stock GameModeTextDraws()
{
let's say it's about 300 lines.
return 1;
}