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

Conversation

FilipeCuco
Copy link
Contributor

@FilipeCuco FilipeCuco commented Jul 15, 2023

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 entire value associated with "player1" index
self.clearMeta("player1")

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"})

jbdevic and others added 2 commits July 10, 2023 23:41
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")
@Thekuca Thekuca changed the base branch from main to dev July 16, 2023 11:46
Copy link
Member

@Thekuca Thekuca left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice PR. Thanks!

@Gellipapa
Copy link
Member

@FilipeCuco Hi! Thank you for PR. I merged.

@Gellipapa Gellipapa merged commit c99ab5d into esx-framework:dev Jul 17, 2023
1 of 2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

4 participants