Jump to content

help plz


pepsi18

Recommended Posts

ERROR: join/login.lua:5: attempt to concatenate local ´country´

what its the problem :(

  
function login() 
    local country = call(getResourceFromName("admin"), "getPlayerCountry", source) 
    if isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(source)), aclGetGroup("Everyone")) then 
    outputChatBox("* " .. getPlayerName(source) .. "   #a5d9f2^(" .. getAccountName(getPlayerAccount(source)) ..  ") #ffffff Se a conectado .  ["..country.."]" , getRootElement(), 255,255,255, true) 
  end 
end 
addEventHandler("onPlayerLogin", getRootElement(), login) 

Link to comment
function login ( _, account ) 
    local country = ( exports [ "admin" ]:getPlayerCountry ( source ) or "Unknown" ) 
    if isObjectInACLGroup ( "user.".. getAccountName ( account ), aclGetGroup ( "Everyone" ) ) then 
        outputChatBox( "* ".. getPlayerName ( source ) .."   #a5d9f2^(".. getAccountName ( account ) ..") #ffffff Se a conectado .  [".. tostring ( country ) .."]" , getRootElement(), 255,255,255, true ) 
    end 
end 
addEventHandler ( "onPlayerLogin", getRootElement(), login ) 

Link to comment

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...