Beiträge von LoG | Codename

    Ochja stimmt, sryyyy :D :D
    Ibi gib mal dein ICQ-Nummer ich erklär dir des schnell oder nee warte is eig. ganz einfach mach des unter dies Zeile hier:


    AddStaticVehicleEx(571,2295.3887,-2334.9448,12.8307,227.9102,-1,-1,60000); // kart

    Hast du GF oder nicht ? ^^ Wenn nicht mach dass so


    public OnGameModeInit()
    {
    {
    CreateObject(1495, 1582.644043, -1638.033203, 12.364889, 0.0000, 0.0000, 0.0000);
    CreateObject(975, 1588.679932, -1638.422485, 14.062656, 0.0000, 0.0000, 0.0000);
    }
    return 1;
    }

    Was dass ????????


    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern
    AddStaticVehicle(520,4054.4050,-2271.1963,230.4367,245.7409,0,0); //SpammumBugzuverhindern


    Und ich sehe aber viel was noch in Englisch ist sehr viel ^^

    Ich habs: :thumbup: :thumbup:


    public UpdateSpeed()
    {
    new Float:x,Float:y,Float:z;
    new Float:distance,value,string[256];
    new Float:health;
    for(new i=0; i<SLOTS; i++)
    {
    if(IsPlayerConnected(i) && IsPlayerInAnyVehicle(i))
    {
    TextDrawDestroy(Speedo[i]);
    }
    }


    for(new i=0; i<SLOTS; i++)
    {
    if(IsPlayerConnected(i) && IsPlayerInAnyVehicle(i))
    {
    GetPlayerPos(i, x, y, z);
    GetVehicleHealth(GetPlayerVehicleID(i), health);
    distance = floatsqroot(floatpower(floatabs(floatsub(x,SavePlayerPos[i][LastX])),2)+floatpower(floatabs(floatsub(y,SavePlayerPos[i][LastY])),2)+floatpower(floatabs(floatsub(z,SavePlayerPos[i][LastZ])),2));
    value = floatround(distance * 5000);
    if(UpdateSeconds > 1)
    {
    value = floatround(value / UpdateSeconds);
    }
    format(string,sizeof(string),"~g~Vehicle : ~w~%s ~n~~b~MPH : ~w~%d / ~b~KM/H : ~w~%d~n~~r~Vehicle Health:~w~ %.2f",CarName[GetVehicleModel(GetPlayerVehicleID(i))-400],floatround(value/1600),floatround(value/1000),health);
    Speedo[i] = TextDrawCreate(320.00, 380.00, string);
    TextDrawSetOutline(Speedo[i], 0);
    TextDrawFont(Speedo[i], 3);
    TextDrawSetProportional(Speedo[i], 2);
    TextDrawAlignment(Speedo[i], 2);
    TextDrawShowForPlayer (i, Speedo[i]);
    }
    SavePlayerPos[i][LastX] = x;
    SavePlayerPos[i][LastY] = y;
    SavePlayerPos[i][LastZ] = z;
    }
    }

    Was ist falsch dass er mir kein K/MH anzeigt ?:


    public UpdateSpeed()
    {
    new Float:x,Float:y,Float:z;
    new Float:distance,value,string[256];
    new Float:health;
    for(new i=0; i<SLOTS; i++)
    {
    if(IsPlayerConnected(i) && IsPlayerInAnyVehicle(i))
    {
    TextDrawDestroy(Speedo[i]);
    }
    }


    for(new i=0; i<SLOTS; i++)
    {
    if(IsPlayerConnected(i) && IsPlayerInAnyVehicle(i))
    {
    GetPlayerPos(i, x, y, z);
    GetVehicleHealth(GetPlayerVehicleID(i), health);
    distance = floatsqroot(floatpower(floatabs(floatsub(x,SavePlayerPos[i][LastX])),2)+floatpower(floatabs(floatsub(y,SavePlayerPos[i][LastY])),2)+floatpower(floatabs(floatsub(z,SavePlayerPos[i][LastZ])),2));
    value = floatround(distance * 5000);
    if(UpdateSeconds > 1)
    {
    value = floatround(value / UpdateSeconds);
    }
    format(string,sizeof(string),"~g~Vehicle : ~w~%s ~n~~b~MPH : ~w~%d / ~b~KM/H : ~w~ %.1f ~n~~r~Vehicle Health:~w~ %.2f",CarName[GetVehicleModel(GetPlayerVehicleID(i))-400],floatround(value/1600),floatround(value/1000),z,health);
    Speedo[i] = TextDrawCreate(320.00, 380.00, string);
    TextDrawSetOutline(Speedo[i], 0);
    TextDrawFont(Speedo[i], 3);
    TextDrawSetProportional(Speedo[i], 2);
    TextDrawAlignment(Speedo[i], 2);
    TextDrawShowForPlayer (i, Speedo[i]);
    }
    SavePlayerPos[i][LastX] = x;
    SavePlayerPos[i][LastY] = y;
    SavePlayerPos[i][LastZ] = z;
    }
    }

    Hmm mach dir doch selbst eins, mit geilen Header und geilen Hintergrund, ich hab auch WBB3 und hab schwarzen hintergrund und nen geilen Header, neja so geil auch wieder nicht :D :D