DRW Posted June 4, 2015 Posted June 4, 2015 (edited) addEventHandler ("onPlayerLogin", root, function() local account = getPlayerAccount (source) if not isGuestAccount(account) then local accName = getAccountName (account) if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) then setTimer (function () setElementHealth (source, getElementHealth (source)+10) end, 2000, 0) end end end) it says getElementHealth expected element at argument 1, got nil. What's happening? Edited June 5, 2015 by Guest
Walid Posted June 4, 2015 Posted June 4, 2015 try this it should work addEventHandler ("onPlayerLogin", root, function(prev,cur) if isObjectInACLGroup ("user."..getAccountName(cur), aclGetGroup ( "Admin" ) ) then setTimer (function(player) setElementHealth (player, getElementHealth (player)+10) end, 2000, 0,source) end end)
DRW Posted June 5, 2015 Author Posted June 5, 2015 try this it should work addEventHandler ("onPlayerLogin", root, function(prev,cur) if isObjectInACLGroup ("user."..getAccountName(cur), aclGetGroup ( "Admin" ) ) then setTimer (function(player) setElementHealth (player, getElementHealth (player)+10) end, 2000, 0,source) end end) Thanks!
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