25.07.2018, 16:29
Quote:
proper convention? since when not using stock modifier become proper convention? what makes it proper? Using it (while writing fs or gm) won\'t affect the performance or shit it\'s just a modifier.So why people are bothered or instructing people to remove that?Neither you or that thread points out that.
|
PHP Code:
// BAD convention
new Float:skgsgs; // i\'ll store health in this yay!
// GOOD convention
new Float:health; // clearly this variable is for health
// BAD convention
stock internalFunction() { // hey this function looks like it belongs to an include
}
// GOOD convention
internalFunction() { // hey this function is definitely part of the script, filterscript
}