18.07.2017, 12:55
I have searched for the difference between defining a function without using stock and with using stock, and i cant manage to get an answer, 1.What is the difference between defining a function like this:
and this:
2.what is the difference between :
and using stock:
pawn Код:
stock Example(playerid)
{
//code
}
pawn Код:
Example(playerid)
{
//code
}
pawn Код:
forward Example(playerid);
public Example(playerid)
{
//code
}
pawn Код:
stock Example(playerid)
{
//code
}