Beiträge von RaPTiiC

    Wo finde ich denn nun die Tasks die ich bearbeiten soll?


    From inside Visual Studio, click on Tasks > Configure Tasks. You should see a new file named tasks.json has opened up. In the file, copy and paste the following into it:



    /edit

    Ich glaube ich habe es gefunden aber jedes mal kommt Tasks are only available on a workspace folder. LeonMrBonnie

    Maho


    Part Two - Setting up the compiler



    Lets begin setting up the compiler.



    Start off by creating a shortcut for Visual Studio. Simply right click on Visual Studio Code.exe and click on 'Create Shotcut.' Once you've done that, drag the created shortcut into the folder of your project. For example, I have folder solely dedicated to my server. It has everything including the SAMP server package in it. Thats where my .pwn files are, so I'll put the .exe in there.



    Once you done that, run the .exe shortcut you just created from inside your projects folder. Right after you open Visual Studio Code from your projects folder, you should notice that a .vscode folder has been created where the .exe launched from.



    q8n7xEK.png



    The .vscode folder will be created right after you launch the .exe from your projects folder.



    Once you've seen that a folder has been automatically created, head back into Visual Studio Code.



    From inside Visual Studio, click on Tasks > Configure Tasks. You should see a new file named tasks.json has opened up. In the file, copy and paste the following into it:

    Was wollen die von mir haha


    Mein "Projekt Ordner" sieht so aus starte ich Visual Studio Code kommt aber nicht diese .vscode datei in den Ordner

    Hey habe "zwei" Probleme


    Und zwar Ich habe ein veh Befehl mit dem Ich ein Adminfahrzeug erstelle dies klappt auch alles schön und gut jedoch möchte ich beim erstellen des Fahrzeugs das Kennzeichen [RTG]ADMIN bekommen dies ist bisher leider nicht der Fall gewesen habe es mit vehid versucht und mit veh Code zum Verständnis folgt


    Mein RepVeh befehl funktioniert leider teilweise bis gar nicht


    Code
    ocmd:repveh(playerid, params[])
    {
        if(!isAdmin(playerid, 3))return SendClientMessage(playerid,COLOR_DARKRED, NOADMIN_MESSAGE);
        RepairVehicle(playerid);
        SetVehicleHealth(playerid, 1000);
        SendClientMessage(playerid, COLOR_YELLOW, "[ADMININFO]: Du hast das Fahrzeug repariert!");
        return 1;
    }

    Spielerenum:


    Studs

    Mein Fraktionsenum:

    Code
    enum FraktionsEnum{
        f_name[128],
        Float:f_x,
        Float:f_y,
        Float:f_z,
        Float:f_r,
        f_inter,
        f_world,
        f_color
    }



    Mein Stats Command:


    Code
    ocmd:stats(playerid, params[])
    {
        new string[128];
        format(string,sizeof(string),"ID: %i\nName: %s\nLevel: %i\nBargeld: %i$\nBeruf:[PLATZHALTER]\nFraktion: %s",playerid, PlayerInfo[playerid][pName], PlayerInfo[playerid][pLevel], PlayerInfo[playerid][pMoney],fInfo[playerid][f_name]);
        ShowPlayerDialog(playerid, 3, DIALOG_STYLE_MSGBOX, "Statistiken",string, "Bestätigen", "");
        return 1;
    }

    Kaliber

    Kann es sein das du das meinst?



    Habe beide Fahrzeuge aus der Datenbank gelöscht, Habe den MySQL log gecleart, habe den Server gestartet habe den Befehl /createcar [playerid] [vID] eingegeben daraufhin habe ich mich ausgeloggt erneut eingeloggt Fahrzeug stand dort, habe einen gmx gemacht Fahrzeug weg :(



    Kaliber


    Was soll ich den als Verschlüsselung nutzen hab das halt von Jeffry genommen :D und wie würde ich das denn jetzt noch ändern (ist es einfach und fix oder recht schwer)?



    Zitat

    Das Select query ist nun richtig, aber ich sehe kein Insert query. Lösche nochmal die Sachen aus der Tabelle und mache das von Neu.

    Was genau soll ich jetzt in der Tabelle aus der DB löschen (die beiden Fahrzeuge)?