Guten Abend Breadfish
Hab 2 Fragen, die erste ist:
Kann mir jmd sagen wie ich bei meinen Beispiel:
SetObjectMaterialText(Werbung1, "Herzlich Willkommen auf Planet Reallife!", 0, 130, "Pricedown", 32, 0, -32768, -16777216, 1);
Den Text Versetzt machen kann? Also ich möchte "Herzlich Willkommen"dann
eine Zeile darunter und etwas weiter daneben "auf Planet reallife" Habs
mit \n Versucht aber des wird mit Angezeigt ;D
Oder ist es Überhaupt möglich?
Und die 2 Ist.Ich habe Tacho Textdraws Eingefügt sobald Ich ins Auto steige wird jedoch etwas von Login Menü mit Angezeigt.Ich habe keine Ahnung wo das Herkommt.
//Textdraws-LoginInterface
new Text:Logo0;
new Text:Rand1;
new Text:Rand2;
new Text:Enjoy3;
new Text:Linie4;
new Text:PR5;
new Text:Willkommen; //<-- wird Angezeigt sobald man ins Autosteigt und geht wd Weg sobald man Aussteigt
new Text:Box;
new Text:Register;
new Text:Login;
new Text:Change;
new Text:Regeln;
new Text:Credits;
new Text:Komma;
//Textdraws-Tacho <--- Die sind neu
new Text:Tank[MAX_PLAYERS];
new Text:Leer[MAX_PLAYERS];
new Text:Fahrzeug[MAX_PLAYERS];
new Text:Zustand[MAX_PLAYERS];
new Text:Tankmenge[MAX_PLAYERS];
new Text:Geschwind[MAX_PLAYERS];
new Text:Brand[MAX_PLAYERS];
new Text:SMotor[MAX_PLAYERS];
new Text:SLicht[MAX_PLAYERS];
new Text:SSchloss[MAX_PLAYERS];
new Text:Alarm[MAX_PLAYERS];
new Text:Kmh[MAX_PLAYERS];
public OnPlayerStateChange(playerid, newstate, oldstate)
{
if(newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_PASSENGER)
{
for(new i; i < MAX_PLAYERS; i ++)
{
TextDrawShowForPlayer(playerid, Tank);
TextDrawShowForPlayer(playerid, Leer);
TextDrawShowForPlayer(playerid, Fahrzeug);
TextDrawShowForPlayer(playerid, Zustand);
TextDrawShowForPlayer(playerid, Tankmenge);
TextDrawShowForPlayer(playerid, Geschwind);
TextDrawShowForPlayer(playerid, Brand);
TextDrawShowForPlayer(playerid, SMotor);
TextDrawShowForPlayer(playerid, SLicht);
TextDrawShowForPlayer(playerid, SSchloss);
TextDrawShowForPlayer(playerid, Alarm);
TextDrawShowForPlayer(playerid, Kmh);
}
}
else if(oldstate == PLAYER_STATE_DRIVER || oldstate == PLAYER_STATE_PASSENGER)
{
for(new i; i < MAX_PLAYERS; i ++)
{
TextDrawHideForPlayer(playerid, Tank);
TextDrawHideForPlayer(playerid, Leer);
TextDrawHideForPlayer(playerid, Fahrzeug);
TextDrawHideForPlayer(playerid, Zustand);
TextDrawHideForPlayer(playerid, Tankmenge);
TextDrawHideForPlayer(playerid, Geschwind);
TextDrawHideForPlayer(playerid, Brand);
TextDrawHideForPlayer(playerid, SMotor);
TextDrawHideForPlayer(playerid, SLicht);
TextDrawHideForPlayer(playerid, SSchloss);
TextDrawHideForPlayer(playerid, Alarm);
TextDrawHideForPlayer(playerid, Kmh);
}
}
return 1;
}
// sry das so schlecht Eingerückt ist im Forum. Wenn ihr noch weitere publics sehen wollt sagt bescheid