pepsi18 Posted April 5, 2014 Posted April 5, 2014 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)
Castillo Posted April 5, 2014 Posted April 5, 2014 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 ) San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
Tomas Posted April 5, 2014 Posted April 5, 2014 The admin panel does not define all countries, for example if you enter from Uruguay announces that mistake. Currently developing for International Gaming Community - Join us!
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