Hey, wie die Überschrift schon sagt, verschwindet mein TextDraw nach einer Zeit.
Codes:
format(str,32,"Lohn: %d$",dini_Int(Spielerdatei,"Jobgeld"));
LohnTD = TextDrawCreate(531 ,427 , str);
TextDrawFont(LohnTD , 2);
TextDrawLetterSize(LohnTD , 0.2, 1.4000000000000001);
TextDrawColor(LohnTD , 0x00c8faFF);
TextDrawSetOutline(LohnTD , false);
TextDrawSetProportional(LohnTD , true);
TextDrawSetShadow(LohnTD , 1);
TextDrawShowForPlayer(playerid,LohnTD);
SetTimer("lohntimertd",1000*10,1);
public lohntimertd(playerid)
{
new str[32],Spielerdatei[64];
format(Spielerdatei,64,"/Accounts/%s.ini",SpielerName(playerid));
TextDrawHideForAll(LohnTD);
format(str,32,"Lohn: %d$",dini_Int(Spielerdatei,"Jobgeld"));
LohnTD = TextDrawCreate(531 ,427 , str);
TextDrawFont(LohnTD , 2);
TextDrawLetterSize(LohnTD , 0.2, 1.4000000000000001);
TextDrawColor(LohnTD , 0x00c8faFF);
TextDrawSetOutline(LohnTD , false);
TextDrawSetProportional(LohnTD , true);
TextDrawSetShadow(LohnTD , 1);
TextDrawShowForPlayer(playerid,LohnTD);
//SetTimer("lohntimertd",1000*30,1);
return 1;
}
Was ist falsch?