1. Dashboard
  2. Forum
    1. Unerledigte Themen
  3. Downloads
  4. Galerie
    1. Alben
  5. Toolbox
    1. Passwort Generator
    2. Portchecker
  6. Mitglieder
    1. Mitgliedersuche
    2. Benutzer online
    3. Trophäen
    4. Team
Mo: 19 Mai 2025
  • Anmelden oder registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Forum
  • Dateien
  • Seiten
  • Bilder
  • Erweiterte Suche

Schön, dass du den Weg zu NodeZone.net gefunden hast! Aktuell bist du nicht angemeldet und kannst deshalb nur eingeschränkt auf unsere Community zugreifen. Um alle Funktionen freizuschalten, spannende Inhalte zu entdecken und dich aktiv einzubringen, registriere dich jetzt kostenlos oder melde dich mit deinem Account an.

Anmelden oder registrieren
    1. Nodezone.net Community
    2. Mitglieder
    3. alycee1993

    Beiträge von alycee1993

    • [Tutorial] Craftingsystem zum Herstellen von Items, Waffen usw.

      • alycee1993
      • 25. November 2017 um 13:03
      Code
      <img src="https://native-network.net/attachment/10664-151162383423774872791-jpg/?thumbnail=1" class="woltlabAttachment" data-attachment-id="10664" id="wcfImgAttachment1">8{
                  "Brewery",
                  "Brewery",
                  {"CraftBeer","",{"hops",3,"Sugar",3,"yeast",1,"waterBottle",2},"","",1},
                  {"applecider","",{"apple",6,"Sugar",3,"waterBottle",4},"","",1},
                  {"peachcider","",{"peach",4,"Sugar",3,"waterBottle",4},"","",1},
                  {"peachschnapps","",{"peach",3,"Sugar",2,"waterBottle",3},"","",1},
                  {"appleschnapps","",{"apple",4,"Sugar",2,"waterBottle",3},"","",1},
                  {"strawberrywine","",{"strawberry",10,"Sugar",3,"yeast",1,"waterBottle",5},"","",1},
                  {"vodka","",{"potato",5,"Sugar",3,"yeast",1,"waterBottle",5},"","",1}
              },
      
      then this 
      
      
      
      {
                  "craftingBrewery", //Variablenname
                  "craftingBreweryMarker", //Name of the spawn marker on the map (must be present in the mission.sqm)
                  {"Brewery"} //Variables of available categories
              }, //comma
      Alles anzeigen

      Bilder

      • 151162383423774872791.jpg
        • 3,06 MB
        • 2.988 × 5.312
        • 258
    • [Tutorial] Craftingsystem zum Herstellen von Items, Waffen usw.

      • alycee1993
      • 25. November 2017 um 13:01

      class peachcider {

      variable = "peachcider";

      displayName = "STR_Item_Peach_Cider";

      weight = 1;

      buyPrice = 65;

      sellPrice = 50;

      illegal = false;

      edible = -1;

      icon = "icons\ico_peachcider.paa";

      };

      class applecider {

      variable = "appplecider";

      displayName = "STR_Item_Apple_Cider";

      weight = 1;

      buyPrice = 65;

      sellPrice = 50;

      illegal = false;

      edible = -1;

      icon = "icons\ico_peachcider.paa";

      };

      class strawberrywine {

      variable = "strawberrywine1";

      displayName = "STR_Item_Strawberry_Wine";

      weight = 1;

      buyPrice = 65;

      sellPrice = 50;

      illegal = false;

      edible = -1;

      icon = "icons\ico_strawberrywine.paa";

      };

      class peachschnapps {

      variable = "peachschnapps";

      displayName = "STR_Item_Peach_Schnapps";

      weight = 1;

      buyPrice = 65;

      sellPrice = 50;

      illegal = false;

      edible = -1;

      icon = "icons\ico_peachschnapps.paa";

      };

      class appleschnapps {

      variable = "appleschnapps";

      displayName = "STR_Item_Apple_Schnapps";

      weight = 1;

      buyPrice = 65;

      sellPrice = 50;

      illegal = false;

      edible = -1;

      icon = "icons\ico_appleschnapps.paa";

      };

      class CraftBeer {

      variable = "CraftBeer";

      displayName = "STR_Item_Craft_Beer";

      weight = 1;

      buyPrice = 65;

      sellPrice = 50;

      illegal = false;

      edible = -1;

      icon = "icons\ico_Beer.paa";

      };

    • [Tutorial] Craftingsystem zum Herstellen von Items, Waffen usw.

      • alycee1993
      • 21. November 2017 um 22:18

      yeah every thing works fine if i take the str_item out the name in the vitems config it show up fine but u can see it when you press i

      also they are all in the stringables file and all fine

    • [Tutorial] Craftingsystem zum Herstellen von Items, Waffen usw.

      • alycee1993
      • 21. November 2017 um 09:17

      I will when am home but it even dose it with the examples any of the vitems to craft shows up str_item but the required items are fine

    • [Tutorial] Craftingsystem zum Herstellen von Items, Waffen usw.

      • alycee1993
      • 19. November 2017 um 23:48

      "Brewery",

      "Brewery",

      {"CraftBeer","",{"hops",3,"Sugar",3,"yeast",1,"waterBottle",2},"","",1},

      {"applecider","",{"apple",6,"Sugar",3,"waterBottle",4},"","",1},

      {"peachcider","",{"peach",4,"Sugar",3,"waterBottle",4},"","",1},

      {"peachschnapps","",{"peach",3,"Sugar",2,"waterBottle",3},"","",1},

      {"appleschnapps","",{"apple",4,"Sugar",2,"waterBottle",3},"","",1},

      {"strawberrywine","",{"strawberry",10,"Sugar",3,"yeast",1,"waterBottle",5},"","",1},

      {"vodka","",{"potato",5,"Sugar",3,"yeast",1,"waterBottle",5},"","",1}


      this is what mine looks like

    • [Tutorial] Craftingsystem zum Herstellen von Items, Waffen usw.

      • alycee1993
      • 19. November 2017 um 21:23

      what

    • [Tutorial] Craftingsystem zum Herstellen von Items, Waffen usw.

      • alycee1993
      • 19. November 2017 um 13:32

      its not in the init file only in the config.cpp

    • [Tutorial] Craftingsystem zum Herstellen von Items, Waffen usw.

      • alycee1993
      • 18. November 2017 um 22:12

      That is the Variable that is init only dose it with items

      and also in the stringables

    • [Tutorial] Craftingsystem zum Herstellen von Items, Waffen usw.

      • alycee1993
      • 18. November 2017 um 14:46

      How do make it that the str_item isn't in the name of items to be created and how do you fix this craft<null>

      using V5.0

      nodezone.net/attachment/10601/ ?

    Registrieren oder Einloggen

    Du bist noch kein Mitglied von Native-Servers.com? Registriere dich kostenlos und werde Teil einer großartigen Community!

    Benutzerkonto erstellen

    Wichtige Links & Informationen

    Server & Hosting-Ressourcen

      Server Administration & Hosting Basics

      Windows Server Support & Guides

      Linux Server Configuration & Help

      Setting up TeamSpeak 3 & VoIP Servers

      Domains & Web Hosting for Beginners & Professionals

      Cloud Hosting, Docker & Kubernetes Tutorials

    Gameserver & Modding-Ressourcen

      ArmA 3 Tutorials & Script Collection

      Renting & Operating Gameservers

      DayZ Server Management & Help

      FiveM (GTA V) Server & Script Development

      Rust Server Modding & Administration

      Setting up & Optimizing ARK Survival Servers

    NodeZone.net – Deine Community für Gameserver, Server-Hosting & Modding

      NodeZone.net ist dein Forum für Gameserver-Hosting, Rootserver, vServer, Webhosting und Modding. Seit 2015 bietet unsere Community eine zentrale Anlaufstelle für Server-Admins, Gamer und Technikbegeisterte, die sich über Server-Management, Hosting-Lösungen und Spielemodding austauschen möchten.


      Ob Anleitungen für eigene Gameserver, Hilfe bei Root- und vServer-Konfigurationen oder Tipps zu Modding & Scripting – bei uns findest du fundiertes Wissen und praxisnahe Tutorials. Mit einer stetig wachsenden Community findest du hier Antworten auf deine Fragen, Projektpartner und Gleichgesinnte für deine Gaming- und Serverprojekte. Schließe dich NodeZone.net an und werde Teil einer aktiven Community rund um Server-Hosting, Gameserver-Management und Modding-Ressourcen.

    Wer jetzt nicht teilt ist selber Schuld:
    1. Nutzungsbestimmungen
    2. Datenschutzerklärung
    3. Impressum
    4. Urheberrechts- oder Lizenzverstoß melden
  • Trimax Design coded & layout by Gino Zantarelli 2023-2025©
    Community-Software: WoltLab Suite™