16.06.2017, 20:25
Код:
stock NameSpace(string[])
{
new len;
len = strlen(string);
for(new i=0;i<len;i++)
{
printf("letter %i is %s", i, string[i]);
if(string[i] == '_') string[i] = ' ';
}
return string;
}
Same problem but now I only get the star(*) ingame and nothing else when I type "/me blabla..."

