Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zRxnx committed Oct 1, 2023
1 parent b1dcb00 commit 87c5826
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion fxmanifest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use_experimental_fxv2_oal 'yes'

author 'zRxnx'
description 'Advanced personal menu system'
version '2.1.1'
version '2.1.2'

dependencies {
'es_extended',
Expand Down
16 changes: 8 additions & 8 deletions server/functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@ GetPlayerData = function(player)
local name = GetPlayerName(player)
local numTokens = GetNumPlayerTokens(player)
local guid = GetPlayerGuid(player)
local fivem = GetPlayerIdentifierByType(player, 'fivem'):gsub('fivem:', '') or 'NOT FOUND'
local steam = GetPlayerIdentifierByType(player, 'steam'):gsub('steam:', '') or 'NOT FOUND'
local license = GetPlayerIdentifierByType(player, 'license'):gsub('license:', '') or 'NOT FOUND'
local license2 = GetPlayerIdentifierByType(player, 'license2'):gsub('license2:', '') or 'NOT FOUND'
local discord = GetPlayerIdentifierByType(player, 'discord'):gsub('discord:', '') or 'NOT FOUND'
local xbl = GetPlayerIdentifierByType(player, 'xbl'):gsub('xbl:', '') or 'NOT FOUND'
local liveid = GetPlayerIdentifierByType(player, 'liveid'):gsub('liveid:', '') or 'NOT FOUND'
local ip = GetPlayerIdentifierByType(player, 'ip'):gsub('ip:', '') or 'NOT FOUND'
local fivem = (GetPlayerIdentifierByType(player, 'fivem') or 'NOT FOUND'):gsub('fivem:', '')
local steam = (GetPlayerIdentifierByType(player, 'steam') or 'NOT FOUND'):gsub('steam:', '')
local license = (GetPlayerIdentifierByType(player, 'license') or 'NOT FOUND'):gsub('license:', '')
local license2 = (GetPlayerIdentifierByType(player, 'license2'):gsub('license2:', '') or 'NOT FOUND'):gsub('license2:', '')
local discord = (GetPlayerIdentifierByType(player, 'discord') or 'NOT FOUND'):gsub('discord:', '')
local xbl = (GetPlayerIdentifierByType(player, 'xbl') or 'NOT FOUND'):gsub('xbl:', '')
local liveid = (GetPlayerIdentifierByType(player, 'liveid') or 'NOT FOUND'):gsub('liveid:', '')
local ip = (GetPlayerIdentifierByType(player, 'ip'):gsub('ip:', '') or 'NOT FOUND'):gsub('ip:', '')
local country = 'NOT FOUND'
local vpn = false
local hwids = {}
Expand Down

0 comments on commit 87c5826

Please sign in to comment.