2021-05-15, 03:26 PM
(This post was last modified: 2021-05-15, 03:27 PM by AbyssMorgan.)
Example of 217 warning
Code:
stock my_function(arg1,arg2){
new something = random(25);
something = arg1 * arg2; //warning loose indentation due to missing tab
return something;
}
stock my_function(arg1,arg2)
{
new something = random(25);
something = arg1 * arg2; //warning loose indentation due to missing tab
return something;
}