stefutz101 Posted September 8, 2015 Share Posted September 8, 2015 Hi i have a server dayz and when a player create a new account his account is buggy and server reset it . But he must wait some time to server solve his account . How i can solve this ? function checkBuggedAccount() for i,player in ipairs(getElementsByType("player")) do local account = getPlayerAccount(player) if not account then return end if getElementData(player,"logedin") then if getElementModel(player) == 0 then spawnDayZPlayer(player) outputChatBox(getPlayerName(player).."s Account is buggy and has been reset.",getRootElement(),22,255,22,true) end end end end setTimer(checkBuggedAccount,90000,0) Exist a Event called "onPlayerRegister" or something like that ? Thanks in advance! Link to comment
Moderators IIYAMA Posted September 8, 2015 Moderators Share Posted September 8, 2015 Why don't you fix the problem instead of solving it after it went wrong? Link to comment
stefutz101 Posted September 8, 2015 Author Share Posted September 8, 2015 Ok i do it , but i need a Event what repair account when player register . I do it but i added event "onPlayerLogin" . The player aster he made the accout he must reconnect and server fix his account . But i want to repair his account when he register . Thanks in advance! I try this event , didn't work , no errors or warnings : addEventHandler("onPlayerLogin",root,checkBuggedAccount) -- Work addEventHandler("onPlayerDayZRegister",root,checkBuggedAccount) -- Didn't work. Link to comment
Moderators IIYAMA Posted September 8, 2015 Moderators Share Posted September 8, 2015 Aren't you listening? You have to prevent that the account gets bugged, not work around. Link to comment
stefutz101 Posted September 8, 2015 Author Share Posted September 8, 2015 Ok i think error appear because i must add this line spawnDayZPlayer(player) in function playerRegister , in login.lua but account is buggy too . Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now