Hallo,
Ich habe um die 20 Textdraws in meinem Script.
Doch 2 können sich nicht leiden. Einer alleine von denen funktioniert.
Beide zusammen aber nicht. Die werden unter OnPlayerSpawn nie zusammen angezeigt.
txtForum = TextDrawCreate(3.000000,433.000000,"www.-.com");
TextDrawBackgroundColor(txtForum, COLOR_BLACK);
TextDrawFont(txtForum, 3);
TextDrawLetterSize(txtForum, 0.500000, 1.000000);
TextDrawColor(txtForum,COLOR_LIGHTBLUE);
TextDrawSetOutline(txtForum, 0);
TextDrawSetShadow(txtForum, 0);
TextDrawSetOutline(txtForum,2);
TextDrawAlignment(txtForum,0);
txtTimeDisp = TextDrawCreate(551.0, 33.0,"00:00");
TextDrawUseBox(txtTimeDisp, 0);
TextDrawFont(txtTimeDisp, 3);
TextDrawSetShadow(txtTimeDisp,0); // no shadow
TextDrawSetOutline(txtTimeDisp,2); // thickness 1
TextDrawBackgroundColor(txtTimeDisp,COLOR_BLACK);
TextDrawColor(txtTimeDisp,COLOR_LIGHTBLUE);
TextDrawLetterSize(txtTimeDisp,0.5,1.5);