19.04.2015, 18:40
Uhoh? Since I haven't the time to test it, If I have an shitty indentation like I use in the exemple does it will fix it correctly?
PHP Code:
// example :
public blablabla(playerid)
{
if(blablabla[playerid] >= 1)
{
blablabla[playerid] = 0;
return 1;
}
return 1;
}
PHP Code:
// fixed :
public blablabla(playerid)
{
if(blablabla[playerid] >= 1)
{
blablabla[playerid] = 0;
return 1;
}
return 1;
}