... Már 19 témához írtam oda, és linkeltem, hogy hogyan kell a PPC-t magyarosítani..
Igazából ha mindent próbáltál, miben segítsünk?
Próbáld meg ezzel:
[pawn]
new chlist[][0]={
\"¨\",\"‘\",\"ö\",\"Ö\",
\"¬\",\"\",\"ü\",\"Ü\",
\"¦\",\"¬\",\"ó\",\"Ó\",
\"§\",\"\",\"õ\",\"Õ\",
\"ª\",\"“\",\"ú\",\"Ú\",
\"¾\",\"‡\",\"é\",\"É\",
\"˜\",\"\",\"á\",\"Á\",
\"«\",\"·\",\"û\",\"Û\",
\"¢\",\"‹\",\"í\",\"Í\"
};
stock FixGameString(const string[])
{
new index,
dest[256];
strmid(dest, string, 0, strlen(string), sizeof dest);
for(index = 0; index < strlen(dest); index++)
{
for(new idx = 0; idx < sizeof(chlist); idx++)
{
if(dest[index] == chlist[idx][0])
{
dest[index] = chlist[idx-2][0];
}
}
}
return dest;
}[/pawn]
Amúgy, ami a te problémád, szerintem az hogy a fixchars-hoz tartozik egy PLUGIN IS!! amit be kell írni a szerver cfg-be...