13.06.2016, 16:21
Hello, I need to put words such "й, а ...." inside a textdraw, but I found that is impossible, is it possible or impossible ?
Thanks!
Thanks!
Change the ecoding (to one that displays characters like that in-game) and recompile your gamemode.
|
new MSGinfo[128];
format(MSGinfo,sizeof MSGinfo,ConvertToGameText("Si vous йchouez а cette mission"));
SetPlayerMessageInformation(playerid, COLOR_WHITE, MSGinfo);
public SetPlayerMessageInformation(playerid, time, text[])
{
TextDrawSetString(TextdrawTexteINFO, text);
TextDrawShowForPlayer(playerid, TextdrawTexteINFO);
return 1;
}
TextdrawTexteINFO = TextDrawCreate(337.600158, 344.213439, "");
TextDrawLetterSize(TextdrawTexteINFO, 0.236399, 1.152000);
TextDrawTextSize(TextdrawTexteINFO, 0.0000,300);
TextDrawAlignment(TextdrawTexteINFO, 2);
TextDrawColor(TextdrawTexteINFO, -1);
TextDrawUseBox(TextdrawTexteINFO, true);
TextDrawBoxColor(DrawAcceuile2, 102);
TextDrawSetShadow(TextdrawTexteINFO, 0);
TextDrawSetOutline(TextdrawTexteINFO, 1);
TextDrawBackgroundColor(TextdrawTexteINFO, 51);
TextDrawFont(TextdrawTexteINFO, 1);
TextDrawSetProportional(TextdrawTexteINFO, 1);
new MSGinfo[128]; format(MSGinfo,sizeof MSGinfo, "Si vous йchouez а cette mission"); SetPlayerMessageInformation(playerid, COLOR_WHITE, MSGinfo); public SetPlayerMessageInformation(playerid, time, text[]) { TextDrawSetString(TextdrawTexteINFO, ConvertToGameText(text)); TextDrawShowForPlayer(playerid, TextdrawTexteINFO); return 1; } TextdrawTexteINFO = TextDrawCreate(337.600158, 344.213439, ""); TextDrawLetterSize(TextdrawTexteINFO, 0.236399, 1.152000); TextDrawTextSize(TextdrawTexteINFO, 0.0000,300); TextDrawAlignment(TextdrawTexteINFO, 2); TextDrawColor(TextdrawTexteINFO, -1); TextDrawUseBox(TextdrawTexteINFO, true); TextDrawBoxColor(DrawAcceuile2, 102); TextDrawSetShadow(TextdrawTexteINFO, 0); TextDrawSetOutline(TextdrawTexteINFO, 1); TextDrawBackgroundColor(TextdrawTexteINFO, 51); TextDrawFont(TextdrawTexteINFO, 1); TextDrawSetProportional(TextdrawTexteINFO, 1);
Tested: - The function is not working
I didn't understand what do you want say brother Here's the code, can someone help me please ? PHP Code:
|