Jump to content

error to concatenate


-misterX-

Recommended Posts

Posted

two things... 1) the console reports bad argument on setElementData 2) it says error to concatenate on the second warnText

function addACLGroupObject ( thePlayer, cmd, invitedPlayer) 
    if not invitedPlayer then 
        -- print out message to chatbox 
        return warnText("Error syntax: /invite ") 
    end 
local inviterGroup = getElementData(thePlayer, "group") 
local invitedOne = getPlayerFromName(invitedPlayer) 
setElementData(invitedOne, "invitedTo", inviterGroup) 
warnText("you invited"..invitedPlayer, thePlayer) 
warnText("you has been invited to: " ..inviterGroup.. "by: " ..getPlayerName(thePlayer), thePlayer) 
end 
addCommandHandler ( "invite", addACLGroupObject ) 

Posted

Check if 'invitedOne' is a valid player element before set element data, also, the error on warnText could be that 'inviterGroup' is returning 'nil'.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...