31.03.2018, 17:09
why most people code like this
when they can code like this
PHP код:
CMD:x(playerid, params[])
{
new target, str[x];
//some code
return 1;
}
PHP код:
CMD:x(playerid, str[], target)
{
//some code
return 1;
}