SuFu -.-
PS:Und wen du schon so ungeduldigst antwortest, wird dir erst recht niemand helfen.
SuFu -.-
PS:Und wen du schon so ungeduldigst antwortest, wird dir erst recht niemand helfen.
Lol warum soll ich das kopiert haben???????
Hier hast du deine weburl unter der Geldanzeige
new Text:Textdraw1; //ganz oben
{
Textdraw1 = TextDrawCreate(491.000000,114.000000,"Deine Weburl");
TextDrawAlignment(Textdraw1,0);
TextDrawBackgroundColor(Textdraw1,0x000000ff);
TextDrawSetProportional(Textdraw1,1);
TextDrawFont(Textdraw1,3);
TextDrawLetterSize(Textdraw1,0.399999,1.300000);
TextDrawColor(Textdraw1,0xffffffff);
TextDrawSetOutline(Textdraw1,1);
TextDrawSetShadow(Textdraw1,1);
TextDrawShowForAll(Text:Textdraw1);
return 1;
}
Fals es euch zu klein ist noch ein bisschen an der TextDreawLetterSize rumbasteln.
Nur noch das unter OnPlayerSpawn und schon seit ihr fertig
TextDrawShowForPlayer(playerid, Textdraw1);
MFG W4RFiGhTeR
Hallo,
In diesem Tutorial zeige ich euch wie ihr euch eine Reallife Uhr erstellen könnt!!!
ganz oben:
forward clock();
unter dem public:OnPlayerSpawn fügt ihr das ein!
clock();
So und jetz noch schluss unter dem letzten public fügt ihr dann das ein!:
public clock ()
{
new Text:Clock;
new hour,minute,second;
new string[10];
gettime(hour,minute,second);
format(string, sizeof string, "%s%d:%s%d:%s%d", (hour < 10) ? ("0") : (""), hour, (minute < 10) ? ("0") : (""), minute, (second < 10) ? ("0") : (""), second);
TextDrawHideForAll(Clock);
Clock = TextDrawCreate(542.0, 24.0, string);
TextDrawLetterSize(Clock, 0.6, 1.8);
TextDrawFont(Clock, 3);
TextDrawSetOutline(Clock, 2);
TextDrawShowForAll(Clock);
SetTimer("clock",1000,0);
return 1;
}
NUN HABT IHR EURE EIGENE RL UHR
VIEL SPAß!!!!!!
MFG W4RFiGhTeR