Die Grafikkarte wo ich hab, habe ich schon GTA IV, MW3, BO 2 und Mafia II getestet und es läuft einwandfrei auf Höchster Einstellung.
MfG
Die Grafikkarte wo ich hab, habe ich schon GTA IV, MW3, BO 2 und Mafia II getestet und es läuft einwandfrei auf Höchster Einstellung.
MfG
http://www.ebay.de/itm/2048-MB…ash=item415ec61fa0&_uhb=1
Habe die und kann alle Spiele auf Höchster Einstellung zocken (sei es MW3, BO2 etc.... schon getestet)
MfG
Will es mir Online bestellen nur Eltern wollen net Perso Kopie machen...
MfG
Hey,
gibt es CoD BO 1 als PEGI Version ?
Wäre nice
MfG
Zeilen?
new preis = ZuTanken * BENZINPREIS;
Geht immer noch nicht.
MfG
Hey,
wer hat lust CoD MW3 auf der PS3 (Only Sniper) zu zocken?
PSN: BlackStyle60
MfG
Geht immer noch nicht ein Screen:
Habe aber bei KM/H auch mit Format geht auch.
MfG
oder das lied ist auch hammer:
sry vergessen hinzuschreiben war schon drine
Versuch unter OnGameModeInit:
LimitGlobalChatRadius(0);
public OnPlayerText(playerid, text[])
{
new text[128];
format(text,sizeof(text),"%s sagt: %s",SpielerName(playerid),text);
return 1;
}
Hey,
wollte euch mal fragen wie ihr das lied findet:
MfG
Ganz oben:new Text:ZUSTAND;
new Text:TextZUSTAND[MAX_PLAYERS];
OnGameModeInit:
ZUSTAND = TextDrawCreate(500.000000, 381.000000, "Zustand: ");
TextDrawBackgroundColor(ZUSTAND, 255);
TextDrawFont(ZUSTAND, 1);
TextDrawLetterSize(ZUSTAND, 0.300000, 0.799999);
TextDrawColor(ZUSTAND, -1);
TextDrawSetOutline(ZUSTAND, 0);
TextDrawSetProportional(ZUSTAND, 1);
TextDrawSetShadow(ZUSTAND, 1);
TextDrawUseBox(ZUSTAND, 1);
TextDrawBoxColor(ZUSTAND, 225);
TextDrawTextSize(ZUSTAND, 605.000000, 0.000000);
for(new playerid = 0; playerid < MAX_PLAYERS; playerid++)
{ TextZUSTAND[playerid] = TextDrawCreate(500.000000, 392.000000, " ");
TextDrawBackgroundColor(TextZUSTAND[playerid], 255);
TextDrawFont(TextZUSTAND[playerid], 1);
TextDrawLetterSize(TextZUSTAND[playerid], 0.300000, 0.799999);
TextDrawColor(TextZUSTAND[playerid], -1);
TextDrawSetOutline(TextZUSTAND[playerid], 0);
TextDrawSetProportional(TextZUSTAND[playerid], 1);
TextDrawSetShadow(TextZUSTAND[playerid], 1);
TextDrawUseBox(TextZUSTAND[playerid], 1);
TextDrawBoxColor(TextZUSTAND[playerid], 225);
TextDrawTextSize(TextZUSTAND[playerid], 605.000000, 0.000000);
}
Wenn er im Auto ist:
if(newstate == PLAYER_STATE_DRIVER)
{
TextDrawShowForPlayer(playerid,ZUSTAND);
TextDrawShowForPlayer(playerid,TextZUSTAND[playerid]);
}
if(oldstate == PLAYER_STATE_DRIVER)
{
TextDrawHideForPlayer(playerid,ZUSTAND);
TextDrawHideForPlayer(playerid,TextZUSTAND[playerid]);
}
Public:
forward Zustand();
public Zustand()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerInAnyVehicle(i) && GetPlayerState(i) == 2)
{
new veh, Float:health;
GetPlayerVehicleID(i);
GetVehicleHealth(veh,health);
new Tachostring[256];
format(Tachostring, sizeof(Tachostring), "Zustand: %.2f",health);
TextDrawSetString(TextZUSTAND[i], Tachostring);
}
}
return 1;
}
MfG
Habs bis jetzt so (Ungetestet)
public Batterie()
{
for(new i = 0;i<MAX_VEHICLES;i++)
{
if(IsPlayerInAnyVehicle(i))
{
new sbatterie[128];
new batterie[MAX_VEHICLES];
format(sbatterie,sizeof(sbatterie),"Batterie/Minuten: %d",batterie);
TextDrawSetString(TextBATTERIE[i],sbatterie);
}
}
return 1;
}