I get a lot of loose indentation errors and i want to remove them couse after a compile it is really hard to see how it went i just want 0 warnings and 0 errors.
For example this gives an warning loose indentation:
Code:
public leet_control_laptop(id,key)
{
switch(key)
{
case 0:
{
pdbackdoorA(id)
leet_control_laptop_show(id)
}
case 1:
{
pdjaildoorA(id)
leet_control_laptop_show(id)
}
case 2:
{
jaildoor1A(id)
leet_control_laptop_show(id)
}
case 3:
{
jaildoor2A(id)
leet_control_laptop_show(id)
}
case 4:
{
jaildoor3A(id)
leet_control_laptop_show(id)
}
}
return PLUGIN_HANDLED
}
The compiler says it is in the rule where "return PLUGIN_HANDLED" is.
__________________