[FilterScript] Avisos Morte | GTA V Estilo By OTACON
#7

Quote:
Originally Posted by Mandrack_FreeZe
View Post
Cara nгo sabia que dava pra por acento nas TextDraws. Parece muito ъtil isso. Poderia me mostrar um tutorial de como fazer o mesmo?

@Topic
Achei simples e legal. Sу que ainda acho que o "Se fodeu" й mais legal ahsuhausa.
Aqui estб algumas opзхes para conversгo dos caracteres.

http://forum.sa-mp.com/showpost.php?...postcount=1582
http://forum.sa-mp.com/showpost.php?...69&postcount=4

Eu utilizo estб funзгo.. Nгo encontrei os crйditos mбs й bastante funcional e utilizo em meu servidor.

pawn Code:
ConvertToGameText(string[]){
    new szFixed[1024],
                iPos,
                iLen;
    for (iLen = strlen(string); iPos < iLen; iPos ++)
    switch (string[iPos])
    {
        case 'а':   szFixed[iPos] = 151;
        case 'б':   szFixed[iPos] = 152;
        case 'в':   szFixed[iPos] = 153;
        case 'д':   szFixed[iPos] = 154;
        case 'А':   szFixed[iPos] = 128;
        case 'Б':   szFixed[iPos] = 129;
        case 'В':   szFixed[iPos] = 130;
        case 'Д':   szFixed[iPos] = 131;
        case 'и':   szFixed[iPos] = 157;
        case 'й':   szFixed[iPos] = 158;
        case 'к':   szFixed[iPos] = 159;
        case 'л':   szFixed[iPos] = 160;
        case 'И':   szFixed[iPos] = 134;
        case 'Й':   szFixed[iPos] = 135;
        case 'К':   szFixed[iPos] = 136;
        case 'Л':   szFixed[iPos] = 137;
        case 'м':   szFixed[iPos] = 161;
        case 'н':   szFixed[iPos] = 162;
        case 'о':   szFixed[iPos] = 163;
        case 'п':   szFixed[iPos] = 164;
        case 'М':   szFixed[iPos] = 138;
        case 'Н':   szFixed[iPos] = 139;
        case 'О':   szFixed[iPos] = 140;
        case 'П':   szFixed[iPos] = 141;
        case 'т':   szFixed[iPos] = 165;
        case 'у':   szFixed[iPos] = 166;
        case 'ф':   szFixed[iPos] = 167;
        case 'ц':   szFixed[iPos] = 168;
        case 'Т':   szFixed[iPos] = 142;
        case 'У':   szFixed[iPos] = 143;
        case 'Ф':   szFixed[iPos] = 144;
        case 'Ц':   szFixed[iPos] = 145;
        case 'щ':   szFixed[iPos] = 169;
        case 'ъ':   szFixed[iPos] = 170;
        case 'ы':   szFixed[iPos] = 171;
        case 'ь':   szFixed[iPos] = 172;
        case 'Щ':   szFixed[iPos] = 146;
        case 'Ъ':   szFixed[iPos] = 147;
        case 'Ы':   szFixed[iPos] = 148;
        case 'Ь':   szFixed[iPos] = 149;
        case 'с':   szFixed[iPos] = 174;
        case 'С':   szFixed[iPos] = 173;
        case 'Ў':   szFixed[iPos] = 64;
        case 'ї':   szFixed[iPos] = 175;
        case '`':   szFixed[iPos] = 177;
        case '&':   szFixed[iPos] = 38;
        default:    szFixed[iPos] = string[iPos];
    }
    return szFixed;
}
Exemplo de uso da funзгo acima:

pawn Code:
new Text:welcomeText;
 
public OnGameModeInit()
{
    welcomeText = TextDrawCreate(240.0,580.0,ConvertToGameText("Olб, rapaz. Que vocк seja bem vindo!"));
    return 1;
}
 
public OnPlayerConnect(playerid)
{
    TextDrawShowForPlayer(playerid,welcomeText);
}
Reply


Messages In This Thread
Avisos Morte | GTA V Estilo By OTACON - by OTACON - 23.10.2014, 02:49
Re: Avisos Morte | GTA V Estilo By OTACON - by Bruno13 - 23.10.2014, 03:55
Re: Avisos Morte | GTA V Estilo By OTACON - by PT - 23.10.2014, 08:16
Re: Avisos Morte | GTA V Estilo By OTACON - by ReyMysterio - 23.10.2014, 13:49
Re: Avisos Morte | GTA V Estilo By OTACON - by connork - 23.10.2014, 13:54
Re: Avisos Morte | GTA V Estilo By OTACON - by Mandrack_FreeZe - 23.10.2014, 14:55
Re: Avisos Morte | GTA V Estilo By OTACON - by Mr.Hardy - 27.10.2014, 22:38
Re: Avisos Morte | GTA V Estilo By OTACON - by Mandrack_FreeZe - 27.10.2014, 23:08
Re: Avisos Morte | GTA V Estilo By OTACON - by zqkRazer - 28.10.2014, 00:51
Re: Avisos Morte | GTA V Estilo By OTACON - by Mandrack_FreeZe - 28.10.2014, 01:09

Forum Jump:


Users browsing this thread: 5 Guest(s)