Quote:
Originally Posted by crazylf2
const a = 64
new cfgdir[a]
it should work
|
no...
like kmal2t said, loose indentation is only a warning and won't affect plugin performance. simple solution is to use an auto indenter. what it means though is that the number of spaces/tabs is not the correct amount from the previous line.
a simple guide to go by to never run into this is, for anytime code can be surrounded by brackets ({}) add another tab.
Code:
if(blah)
blah2()
else{
for(new i=0; i<4; i++)
blah3(i)
}