Ich habe ein Textdraw mit einem TImer erstellt.
Welches alle Paar Minuten sich ändert .
Aber das Textdraw wird mit nicht angezeigt.
Ich hoffe Jemand kann mir helfen.
Hier der Cod dazu
new Text:USERCP;//Textdraw
OngameModInit
USERCP = TextDrawCreate(4.000000,435.000000,"Control Panel:www.NsR-CP.Tk");
TextDrawFont(USERCP,2);
TextDrawColor(USERCP,0xFFFFFFAA);
TextDrawLetterSize(USERCP,10,428);
TextDrawSetOutline(USERCP,1);
TextDrawSetShadow(USERCP,1);
TextDrawSetProportional(USERCP,1);
TextDrawBackgroundColor(USERCP,0x01FCFFC8);
OnplayerConnect
TextDrawShowForPlayer(playerid,USERCP);
forward TextdrawTimer();//Fürs Textdraw ;D
SetTimer("TextdrawTimer",60000,1);
public TextdrawTimer()
{
TextDrawSetString(USERCP,"Forum:www.NsR-RL.Tk");
return 1;
}