22.03.2014, 11:52
Give us your textdraw codes.
Also, are you sure that your coordinates is at the right place ?
I'll give you example
https://sampwiki.blast.hk/wroot/images2/...xtdraw_map.png
the X coordinates must be set below 640. the Y coordinates must be set below 480.
Also, are you sure that your coordinates is at the right place ?
I'll give you example
pawn Код:
public OnGameModeInit()
{
This is your textdraw's name > ForumURL = TextDrawCreate(550.000000, 440.000000, "<< COD TDM >>"); //COD TDM is the text of the textdraw
TextDrawBackgroundColor(ForumURL, 255);
TextDrawFont(ForumURL, 2);
TextDrawLetterSize(ForumURL, 0.280000, 1.399999);
TextDrawColor(ForumURL, 3394815);
TextDrawSetOutline(ForumURL, 1);
TextDrawSetProportional(ForumURL, 1);
CODTDM = TextDrawCreate(550.000000, 313.000000, "/stats /cmds /ghelp");
TextDrawBackgroundColor(CODTDM, 255);
TextDrawFont(CODTDM, 2);
TextDrawLetterSize(CODTDM, 0.280000, 1.399999);
TextDrawColor(CODTDM, 3394815);
TextDrawSetOutline(CODTDM, 1);
TextDrawSetProportional(CODTDM, 1);
return 1;
}
public OnPlayerSpawn(playerid)
{
TextDrawShowForPlayer(playerid, ForumURL); < To show the textdraw
TextDrawShowForPlayer(playerid, CODTDM); < same
}
the X coordinates must be set below 640. the Y coordinates must be set below 480.