05.04.2017, 22:39
Creio que й isso '-'
PHP код:
stock IA_GameTextForPlayer(playerid,string[],time,style)
{
if(playerid != INVALID_PLAYER_ID)
{
for(new i = 0; i < strlen(string); ++i)
{
for(new j = 0; j < sizeof(arrCharacters); ++j)
{
if(string[i] == arrCharacters[j][0])
{
string[i] = arrCharacters[j][1];
}
}
}
}
GameTextForPlayer(playerid,string,time,style);
return 1;
}