12.04.2015, 23:42
I find it much easier putting 'stock' in front of a function to find a particular function though.
Like, I want to edit the function (for example)
But let's say I actually call it 15 times in my script. Pressing CTRL+F and searching for "SetPlayerLevel" may need to me to skip past a good few calls before I get to the actual function, but having..
lets me just search for "k SetPlayerLevel" and I'm at it right away.
If that makes sense xD
Like, I want to edit the function (for example)
pawn Code:
SetPlayerLevel(playerid, level) {
//..code
}
pawn Code:
stock SetPlayerLevel(playerid, level) {
//..code
}
If that makes sense xD