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
Fr: 16 Mai 2025
  • Anmelden oder registrieren
  • Suche
Ressourcen
  • Alles
  • Ressourcen
  • 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. Downloads
    3. FiveM - GTA 5
    4. Ressourcen

    [ESX 2] Latest ESX Version for FiveM

    • nox
    • 5. November 2020 um 19:20
    • 579 Downloads
    • 0 Kommentare
    • Herunterladen
    Hallo Gast!
    Leider bist Du nicht eingeloggt...

    Daher kannst Du momentan keine Dateien aus unserem Downloadbereich herunterladen.
    Um den Downloadbereich in vollem Umfang nutzen zu können erstelle bitte ein kostenloses Benutzerkonto.
    • Übersicht
    • Versionen 2

    es_extended is a roleplay framework for FiveM. The to-go framework for creating an economy based roleplay server on FiveM and most popular on the platform, too!

    ESX2 | WIP

    THIS IS WIP, DO NOT USE UNLESS YOU ARE AN EXPERIENCED DEVELOPER


    Need The Correct Version? => https://github.com/ESX-Org/es_extended/tree/v1-final


    How to run ESX2

    Code
    # minimum resources and config to get it working
    
    set mysql_connection_string "mysql://john:smith@localhost/es_extended?charset=utf8mb4"
    
    stop webadmin
    
    ensure mapmanager
    ensure chat
    ensure spawnmanager
    ensure sessionmanager
    ensure hardcap
    ensure rconlog
    ensure baseevents
    
    ensure mysql-async
    ensure cron
    ensure skinchanger
    
    ensure es_extended
    Alles anzeigen


    Changelog

    Code
    - Switched to a module-based single resource for ease of use and performance
    - Performance improvements
    - Split all base functionnalities into their own module
    - Module can either encapsulate its own functionality or declare global stuff
    - Loading modules via method M('themodule') ensure correct loading order of modules
    - Automated database schema generation (RIP SQL files everywhere)
    - Database schema can also be expanded by other modules
    - Custom event system to avoid serialization of event data and cross-resource communication, that make it possible to pass metatables through these events (You can still use TriggerEvent and such to escape that thing)
    - xPlayer fully customizable without rewriting core resources (Hello second job, faction system and such...)
    - Added some modules to optimize common things like input, marker and static npc management
    - Extend base lua functionnality when appropriate via module. example: table.indexOf
    - OOP System based on http://lua-users.org/wiki/InheritanceTutorial and improved
    - Neat menu API
    - Open as many pages as you want in single NUI frame with Frame API
    - EventEmitter class
    - WIP rewrite of well-known datastore / inventory / account stuff
    Alles anzeigen


    Code examples


    Code
    -- Menu
    
    M('ui.menu') -- This module provides global Menu factory method
    
    local menu = Menu:create('test', {  title = 'Test menu',  float = 'top|left',  items = {    {name = 'a', label = 'Fufu c\'est ma bro', type = 'slider'},    {name = 'b', label = 'Fck that shit',     type = 'check'},    {name = 'c', label = 'Fck that shit',     type = 'text'},    {name = 'd', label = 'Lorem ipsum'},    {name = 'e', label = 'Submit',             type = 'button'},  }
    })
    
    menu:on('ready', function()  menu.items[1].label = 'TEST';-- label changed instantly in webview
    end)
    
    menu:on('item.change', function(item, prop, val, index)
      if (item.name == 'a') and (prop == 'value') then
        item.label = 'Dynamic label ' .. tostring(val);
      end
      if (item.name == 'b') and (prop == 'value') then
        local c = table.find(menu.items, function(e) return e.name == 'c' end)
        c.value = 'Dynamic text ' .. tostring(val);
      end
    
    end)
    
    menu:on('item.click', function(item, index)  print('index', index)
    end)
    Alles anzeigen

    68747470733a2f2f63646e2e646973636f72646170702e636f6d2f6174746163686d656e74732f3731313534373432303437393139333038382f3731343832333639383036313732313633302f756e6b6e6f776e2e706e67.png

    Code
    -- DataStore
    
    M('datastore')
    
    on('esx:db:ready', function()
      local ds = DataStore:create('test', true, {sample = 'data'}) -- name, shared, initial data
      ds:on('save', function()    print(ds.name .. ' saved => ' .. json.encode(ds:get()))  end)
      ds:on('ready', function()
        ds:set('foo', 'bar')
        ds:save(function()      print('callbacks also')    end)
      end)
    
    end)
    Alles anzeigen
    Code
    -- Here is how datastore schema is declared, no need to feed some SQL file
    
    M('events')
    
    on('esx:db:init', function(initTable, extendTable)
      initTable('datastores', 'name', {    {name = 'name',  type = 'VARCHAR',  length = 255, default = nil,    extra = 'NOT NULL'},    {name = 'owner', type = 'VARCHAR',  length = 64,  default = 'NULL', extra = nil},    {name = 'data',  type = 'LONGTEXT', length = nil, default = nil,    extra = nil},  })
    
    end)
    • es_extended
    • esx download
    • esx 2
    • esx 2 download
    • esx 2 fivem
    • esx latest version
    • esx fivem
    • fivem esx2
    • fivem esx 2 download
    • es_extended download
    • Version

      • nox
      • 17. Juli 2021 um 00:01
      • 10,87 MB
      • 248 Downloads

      Update to latest Version

    • Version

      • nox
      • 5. November 2020 um 19:20
      • 10,86 MB
      • 331 Downloads

    Datei-Informationen

    Website
    github.com/esx-framework/es_extended/

    Weitere Dateien von nox

    • Exile Mod 1.0.4a "Pineapple" - Latest Version

      nox 10. Juli 2019 um 13:28
    • Latest Exile Mod Serverfiles (23-08-2022)

      nox 10. Juli 2019 um 13:19
    • Exile Fixed exile.bikey

      nox 3. Februar 2020 um 14:15
    • Tanoa Life 5.0.0 mit extDB3 (Stand: 27. Okt 2020)

      nox 28. Februar 2017 um 03:03
    • Altis Life 5.0.0 mit extDB3 (Stand: 27. Okt 2020)

      nox 28. Februar 2017 um 03:06
    Alle Dateien

    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. Verhaltensregeln
    3. Datenschutzerklärung
    4. Impressum
    5. Urheberrechts- oder Lizenzverstoß melden
  • Trimax Design coded & layout by Gino Zantarelli 2023-2025©
    Community-Software: WoltLab Suite™