Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhanced xPlayer Metadata Management Function #1118

Merged
merged 2 commits into from
Jul 17, 2023
Merged

Enhanced xPlayer Metadata Management Function #1118

merged 2 commits into from
Jul 17, 2023

Commits on Jul 10, 2023

  1. Merge pull request #1113 from esx-framework/dev

    🚑 Major fix 1.10.1
    jbdevic authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    2c5b5c9 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2023

  1. Enhanced xPlayer Metadata Management Function

    Support for Clearing Specific Value:
    You can now use the "clearMeta" function to remove a specific value associated with an index. By providing the "index" and the "subValue" (as a string), the function will remove that specific value from the metadata table.
    
    Support for Clearing Multiple Values:
    The function has been expanded to allow the removal of multiple values simultaneously. By passing a table of "subValues" to the function, you can specify several values to clear from the metadata table associated with a particular index.
    
    Handling Entire Index Value:
    If no "subValues" are provided, the function will clear the entire value associated with the given "index." This allows you to wipe out all the data related to that particular index.
    
    -- Clear the "level" value within the "player1" index
    self.clearMeta("player1", "level")
    
    -- Clear the "score" and "level" values within the "player1" index
    self.clearMeta("player1", {"score", "level"})
    
    -- Clear the entire value associated with "player1" index
    self.clearMeta("player1")
    FilipeCuco committed Jul 15, 2023
    Configuration menu
    Copy the full SHA
    6364152 View commit details
    Browse the repository at this point in the history