Üdv.
Egy kis segítséget szeretnék kérni :
log fájl :
[2015-08-16 17:09:48] WARNING: account-system/s_account_system.lua:294: Bad argument @ \'triggerClientEvent\' [Expected element at argument 3, got none]
[2015-08-16 17:09:48] WARNING: global/money_globals.lua:146: Bad argument @ \'getElementData\' [Expected element at argument 1, got nil]
[2015-08-16 17:09:48] WARNING: global/money_globals.lua:150: Bad argument @ \'getElementType\' [Expected element at argument 1, got nil]
és a hozzá tartozó fájl :
function getMoney(thePlayer, nocheck)
if not nocheck then
checkMoneyHacks(thePlayer)
end
return getElementData(thePlayer, \"money\") or 0
end
function checkMoneyHacks(thePlayer)
if not getMoney(thePlayer, true) or getElementType(thePlayer) ~= \"player\" then return end
local safemoney = getMoney(thePlayer, true)
local hackmoney = getPlayerMoney(thePlayer)
if (safemoney < hackmoney) then
setPlayerMoney(thePlayer, safemoney)
sendMessageToAdmins(\"Moneyhack gyanú: \"..getPlayerName(thePlayer))
return true
else
return false
end
end
ha jól értem az a baj, hogy nincs definiálva a thePlayer.... csak nem értem miért ne lenne.
Minden nemű segítséget megköszönök.