Loose indentation warnings simply means that you did not indent your code properly.
Here's an example of properly indented code using my techniques:
Code:
public MyFunction(id)
{
// first level of indentation - two spaces or a single tab
new var = random_num(0, 3);
new v4r = random_num(0, 3);
if(var == 1)
{
// second level of indentation since we're going inside an {
client_print(id, print_chat, "The random number was 1");
if(v4r == 1)
{
// third level of indentation - second level
client_print(id, print_chat, "zomg you got a 1 again.. lucky ass");
}
} // now we start unindenting - first level
} // until we get down to the final closing curly bracket
Hopefully that made sense. I'm tired.
__________________