18.05.2011, 12:39
it's not problem in that...i paste wrong code, fix:
pawn Код:
TextSet(Text:FNC, const b[], const e[])
{
foreach(Player, i)
{
if(PLAYER_JEZIK[i] == 1) // balkan
{
TextDrawSetString(Text:FNC, b);
return true;
}
else if(PLAYER_JEZIK[i] == 2) // english
{
TextDrawSetString(Text:FNC, e);
return true;
}
}
return true;
}