13.07.2016, 14:32
I'm sure if you know what mean intendation. Look at this code:
This one is pretty simple and there is intendation.
Now this one have NO intendation:
PHP код:
CMD:me(playerid, params[])
{
new msg[200];
if(sscanf(params,"s[200]", msg)) return SendClientMessage(playerid, -1, "/me [Message] - Make an action");
if(strlen(msg) >= 26) SendSplitMessage(playerid, COLOR_PURPLE, msg[0]);
else ProxDetector(30, playerid, msg, COLOR_PURPLE);
return 1;
}
Now this one have NO intendation:
PHP код:
CMD:me(playerid, params[])
{
new msg[200];
if(sscanf(params,"s[200]", msg)) return SendClientMessage(playerid, -1, "/me [Message] - Doing an action");
if(strlen(msg) >= 26) SendSplitMessage(playerid, COLOR_PURPLE, msg[0]);
else ProxDetector(30, playerid, msg, COLOR_PURPLE);
return 1;
}