Jump to content

Solved


Sex*

Recommended Posts

You're triggering the event without adding it with addEvent first. Apart from that, the client-side script starts after onPlayerJoin has already been triggered in the server, so simply putting triggerClientEvent in onPlayerJoin will not work.

Link to comment

So something like this?

Server:

function showHome () 
    local countryCode = exports["admin"]:getPlayerCountry(source) 
    setElementData(source,"country",countryNames[countryCode], countryCode) 
    triggerClientEvent ( "onPlayerJoinTest", getRootElement(), source, tostring ( countryNames [ countryCode ] ) ) 
end 
addEventHandler("onPlayerJoin",getRootElement(),showHome) 
  

Client: 
addEventHandler("onPlayerJoinTest", true ) 
addEventHandler("onPlayerJoinTest", getRootElement(),  
function() 
AddingS("join", getPlayerName(thePlayer).."#FFFFFF joined #FF4000[#ffffff"..countryNames.."#FF4000]") 
end 
) 

Link to comment
Client: 
addEventHandler("onPlayerJoinTest", true ) 
addEventHandler("onPlayerJoinTest", getRootElement(),  
function() 
AddingS("join", getPlayerName(thePlayer).."#FFFFFF joined #FF4000[#ffffff"..countryNames.."#FF4000]") 
end 
) 

Change to :

Client: 
addEvent("onPlayerJoinTest", true ) -- ############# 
addEventHandler("onPlayerJoinTest", getRootElement(),  
function() 
AddingS("join", getPlayerName(thePlayer).."#FFFFFF joined #FF4000[#ffffff"..countryNames.."#FF4000]") 
end 
) 

Link to comment
Client: 
addEventHandler("onPlayerJoinTest", true ) 
addEventHandler("onPlayerJoinTest", getRootElement(),  
function() 
AddingS("join", getPlayerName(thePlayer).."#FFFFFF joined #FF4000[#ffffff"..countryNames.."#FF4000]") 
end 
) 

Change to :

Client: 
addEvent("onPlayerJoinTest", true ) -- ############# 
addEventHandler("onPlayerJoinTest", getRootElement(),  
function() 
AddingS("join", getPlayerName(thePlayer).."#FFFFFF joined #FF4000[#ffffff"..countryNames.."#FF4000]") 
end 
) 

Doesnt work still...

Link to comment
As I said, the event does not exist right after the player has joined because the script has not started yet. Only when onClientResourceStart event is called, you can be sure that the script is running.

So what should i do? And other parts of the scripts work perfectly so the script is running...

Link to comment

Something like this:

addEventHandler ( "onClientResourceStart", resourceRoot, function () 
local player = getLocalPlayer() 
triggerServerEvent ( "get:country", root ,player ) 
end) 
  
addEvent("onPlayerJoinTest", true ) 
addEventHandler("onPlayerJoinTest", getRootElement(), 
function(player, countryNames) 
AddingS("join", getPlayerName(player).."#FFFFFF joined #FF4000[#ffffff"..countryNames.."#FF4000]") 
end 
) 
  
  
 --server 
  
addEvent ( "get:country", true ) 
addEventHandler("get:country",root, 
function (player) 
    local countryCode = exports["admin"]:getPlayerCountry(player) 
    setElementData(player,"country",countryNames[countryCode], countryCode) 
    triggerClientEvent ( "onPlayerJoinTest", getRootElement(), player, tostring ( countryNames [ countryCode ] ) ) 
end) 

BTW, elementData is synced with the client & server.

edit: wheres the table "countryNames"?

Link to comment
Something like this:
addEventHandler ( "onClientResourceStart", resourceRoot, function () 
local player = getLocalPlayer() 
triggerServerEvent ( "get:country", root ,player ) 
end) 
  
addEvent("onPlayerJoinTest", true ) 
addEventHandler("onPlayerJoinTest", getRootElement(), 
function(player, countryNames) 
AddingS("join", getPlayerName(player).."#FFFFFF joined #FF4000[#ffffff"..countryNames.."#FF4000]") 
end 
) 
  
  
 --server 
  
addEvent ( "get:country", true ) 
addEventHandler("get:country",root, 
function (player) 
    local countryCode = exports["admin"]:getPlayerCountry(player) 
    setElementData(player,"country",countryNames[countryCode], countryCode) 
    triggerClientEvent ( "onPlayerJoinTest", getRootElement(), player, tostring ( countryNames [ countryCode ] ) ) 
end) 

BTW, elementData is synced with the client & server.

edit: wheres the table "countryNames"?

Wait....what do i add to the client and what do i add to the server then?

And the table exist.

Link to comment

Try this:

Server:

addEventHandler("onPlayerJoin",root,function() 
    local countryCode = exports.admin:getPlayerCountry(source) 
    if not countryNames then outputChatBox("YOU LIED ABOUT THEE TABLE EXISTING!!!") end 
    setElementData(source,"country",countryNames[countryCode]) 
    triggerClientEvent ("onClientJoined",root, source, tostring ( countryNames [ countryCode ] ) ) 
end) 

Client:

addEvent("onClientJoined", true ) 
addEventHandler("onClientJoined",root,function(player,countryNames) --forgot to define the player and the country codes 
    AddingS("join", getPlayerName(player).."#FFFFFF joined #FF4000[#ffffff"..countryNames.."#FF4000]") 
end) 

If that doesn't work, then please post the full script

Link to comment

Its said: YOU LIED TO ME ABOUT THE TABLE EXICTING so some table problem:D:D

The Table:

function country () 
 addEventHandler('onPlayerJoin', getRootElement(), joinHandler) 
 countryNames = { 
        ['AD'] = 'Andorra', 
        ['AE'] = 'United Arab Emirates', 
        ['AF'] = 'Afghanistan', 
        ['AG'] = 'Antigua and Barbuda', 
        ['AI'] = 'Anguilla', 
        ['AL'] = 'Albania', 
        ['AM'] = 'Armenia', 
        ['AO'] = 'Angola', 
        ['AP'] = 'ARIPO', 
        ['AR'] = 'Argentina', 
        ['AT'] = 'Austria', 
        ['AU'] = 'Australia', 
        ['AW'] = 'Aruba', 
        ['AZ'] = 'Azerbaijan', 
        ['BA'] = 'Bosnia and Herzegovina', 
        ['BB'] = 'Barbados', 
        ['BD'] = 'Bangladesh', 
        ['BE'] = 'Belgium', 
        ['BF'] = 'Burkina Faso', 
        ['BG'] = 'Bulgaria', 
        ['BH'] = 'Bahrain', 
        ['BI'] = 'Burundi', 
        ['BJ'] = 'Benin', 
        ['BM'] = 'Bermuda', 
        ['BN'] = 'Brunei Darussalam', 
        ['BO'] = 'Bolivia', 
        ['BQ'] = 'Bonaire', 
        ['BR'] = 'Brazil', 
        ['BS'] = 'Bahamas', 
        ['BT'] = 'Bhutan', 
        ['BV'] = 'Bouvet Island', 
        ['BW'] = 'Botswana', 
        ['BY'] = 'Belarus', 
        ['BZ'] = 'Belize', 
        ['CA'] = 'Canada', 
        ['CD'] = 'Congo', 
        ['CF'] = 'Central African Republic', 
        ['CG'] = 'Congo', 
        ['CH'] = 'Switzerland', 
        ['CI'] = 'Cote d?Ivoire', 
        ['CK'] = 'Cook Islands', 
        ['CL'] = 'Chile', 
        ['CM'] = 'Cameroon', 
        ['CN'] = 'China', 
        ['CO'] = 'Colombia', 
        ['CR'] = 'Costa Rica', 
        ['CU'] = 'Cuba', 
        ['CV'] = 'Cape Verde', 
        ['CW'] = 'Curacao', 
        ['CY'] = 'Cyprus', 
        ['CZ'] = 'Czech Republic', 
        ['DE'] = 'Germany', 
        ['DJ'] = 'Djibouti', 
        ['DK'] = 'Denmark', 
        ['DM'] = 'Dominica', 
        ['DO'] = 'Dominican Republic', 
        ['DZ'] = 'Algeria', 
        ['EC'] = 'Ecuador', 
        ['EE'] = 'Estonia', 
        ['EG'] = 'Egypt', 
        ['EH'] = 'Western Sahara', 
        ['ER'] = 'Eritrea', 
        ['ES'] = 'Spain', 
        ['ET'] = 'Ethiopia', 
        ['FI'] = 'Finland', 
        ['FJ'] = 'Fiji', 
        ['FK'] = 'Malvinas', 
        ['FO'] = 'Faroe Islands', 
        ['FR'] = 'France', 
        ['GA'] = 'Gabon', 
        ['GB'] = 'United Kingdom', 
        ['GD'] = 'Grenada', 
        ['GE'] = 'Georgia', 
        ['GG'] = 'Guernsey', 
        ['GH'] = 'Ghana', 
        ['GI'] = 'Gibraltar', 
        ['GL'] = 'Greenland', 
        ['GM'] = 'Gambia', 
        ['GN'] = 'Guinea', 
        ['GQ'] = 'Equatorial Guinea', 
        ['GR'] = 'Greece', 
        ['GT'] = 'Guatemala', 
        ['GW'] = 'Guinea-Bissau', 
        ['GY'] = 'Guyana', 
        ['HN'] = 'Honduras', 
        ['HR'] = 'Croatia', 
        ['HT'] = 'Haiti', 
        ['HU'] = 'Hungary', 
        ['ID'] = 'Indonesia', 
        ['IE'] = 'Ireland', 
        ['IL'] = 'Israel', 
        ['IM'] = 'Isle of Man', 
        ['IN'] = 'India', 
        ['IQ'] = 'Iraq', 
        ['IR'] = 'Iran', 
        ['IS'] = 'Iceland', 
        ['IT'] = 'Italy', 
        ['JE'] = 'Jersey', 
        ['JM'] = 'Jamaica', 
        ['JO'] = 'Jordan', 
        ['JP'] = 'Japan', 
        ['KE'] = 'Kenya', 
        ['KG'] = 'Kyrgyzstan', 
        ['KH'] = 'Cambodia', 
        ['KI'] = 'Kiribati', 
        ['KM'] = 'Comoros', 
        ['KN'] = 'Saint Kitts and Nevis', 
        ['KP'] = 'Korea', 
        ['KR'] = 'Korea', 
        ['KW'] = 'Kuwait', 
        ['KY'] = 'Cayman Islands', 
        ['KZ'] = 'Kazakhstan', 
        ['LA'] = 'Lao People?s Republic', 
        ['LB'] = 'Lebanon', 
        ['LC'] = 'Saint Lucia', 
        ['LI'] = 'Liechtenstein', 
        ['LK'] = 'Sri Lanka', 
        ['LR'] = 'Liberia', 
        ['LS'] = 'Lesotho', 
        ['LT'] = 'Lithuania', 
        ['LU'] = 'Luxembourg', 
        ['LV'] = 'Latvia', 
        ['LY'] = 'Libyan Arab Jamahiriya', 
        ['MA'] = 'Morocco', 
        ['MC'] = 'Monaco', 
        ['MD'] = 'Moldova', 
        ['ME'] = 'Montenegro', 
        ['MG'] = 'Madagascar', 
        ['MK'] = 'Macedonia', 
        ['ML'] = 'Mali', 
        ['MM'] = 'Myanmar', 
        ['MN'] = 'Mongolia', 
        ['MO'] = 'Macao', 
        ['MP'] = 'Northern Mariana Islands', 
        ['MR'] = 'Mauritania', 
        ['MS'] = 'Montserrat', 
        ['MT'] = 'Malta', 
        ['MU'] = 'Mauritius', 
        ['MV'] = 'Maldives', 
        ['MW'] = 'Malawi', 
        ['MX'] = 'Mexico', 
        ['MY'] = 'Malaysia', 
        ['MZ'] = 'Mozambique', 
        ['NA'] = 'Namibia', 
        ['NE'] = 'Niger', 
        ['NG'] = 'Nigeria', 
        ['NI'] = 'Nicaragua', 
        ['NL'] = 'Netherlands', 
        ['NO'] = 'Norway', 
        ['NP'] = 'Nepal', 
        ['NR'] = 'Nauru', 
        ['NZ'] = 'New Zealand', 
        ['OM'] = 'Oman', 
        ['PA'] = 'Panama', 
        ['PE'] = 'Peru', 
        ['PG'] = 'Papua New Guinea', 
        ['PH'] = 'Philippines', 
        ['PK'] = 'Pakistan', 
        ['PL'] = 'Poland', 
        ['PT'] = 'Portugal', 
        ['PW'] = 'Palau', 
        ['PY'] = 'Paraguay', 
        ['QA'] = 'Qatar', 
        ['RO'] = 'Romania', 
        ['RS'] = 'Serbia', 
        ['RU'] = 'Russian Federation', 
        ['RW'] = 'Rwanda', 
        ['SA'] = 'Saudi Arabia', 
        ['SB'] = 'Solomon Islands', 
        ['SC'] = 'Seychelles', 
        ['SD'] = 'Sudan', 
        ['SE'] = 'Sweden', 
        ['SG'] = 'Singapore', 
        ['SH'] = 'Saint Helena', 
        ['SI'] = 'Slovenia', 
        ['SK'] = 'Slovakia', 
        ['SL'] = 'Sierra Leone', 
        ['SM'] = 'San Marino', 
        ['SN'] = 'Senegal', 
        ['SO'] = 'Somalia', 
        ['SR'] = 'Suriname', 
        ['ST'] = 'Sao Tome and Principe', 
        ['SV'] = 'Salvador', 
        ['SX'] = 'Sint Maarten (Dutch part)', 
        ['SY'] = 'Syrian Arab Republic', 
        ['SZ'] = 'Swaziland', 
        ['TC'] = 'Turks and Caicos Islands', 
        ['TD'] = 'Chad', 
        ['TG'] = 'Togo', 
        ['TH'] = 'Thailand', 
        ['TJ'] = 'Tajikistan', 
        ['TL'] = 'Timor?Leste', 
        ['TM'] = 'Turkmenistan', 
        ['TN'] = 'Tunisia', 
        ['TO'] = 'Tonga', 
        ['TR'] = 'Turkey', 
        ['TT'] = 'Trinidad and Tobago', 
        ['TV'] = 'Tuvalu', 
        ['TW'] = 'Taiwan', 
        ['TZ'] = 'Tanzania', 
        ['UA'] = 'Ukraine', 
        ['UG'] = 'Uganda', 
        ['US'] = 'United States of America', 
        ['UY'] = 'Uruguay', 
        ['UZ'] = 'Uzbekistan', 
        ['VA'] = 'Holy See', 
        ['VC'] = 'Saint Vincent', 
        ['VE'] = 'Venezuela', 
        ['VG'] = 'Virgin Islands', 
        ['VN'] = 'Viet Nam', 
        ['VU'] = 'Vanuatu', 
        ['WS'] = 'Samoa', 
        ['YE'] = 'Yemen', 
        ['ZA'] = 'South Africa', 
        ['ZZ'] = 'n/a', 
        ['ZM'] = 'Zambia', 
        
    } 
end 
  

Link to comment

try this:

function country () 
 addEventHandler('onPlayerJoin', getRootElement(), joinHandler) 
 countryNames = { 
        ['AD'] = 'Andorra', 
        ['AE'] = 'United Arab Emirates', 
        ['AF'] = 'Afghanistan', 
        ['AG'] = 'Antigua and Barbuda', 
        ['AI'] = 'Anguilla', 
        ['AL'] = 'Albania', 
        ['AM'] = 'Armenia', 
        ['AO'] = 'Angola', 
        ['AP'] = 'ARIPO', 
        ['AR'] = 'Argentina', 
        ['AT'] = 'Austria', 
        ['AU'] = 'Australia', 
        ['AW'] = 'Aruba', 
        ['AZ'] = 'Azerbaijan', 
        ['BA'] = 'Bosnia and Herzegovina', 
        ['BB'] = 'Barbados', 
        ['BD'] = 'Bangladesh', 
        ['BE'] = 'Belgium', 
        ['BF'] = 'Burkina Faso', 
        ['BG'] = 'Bulgaria', 
        ['BH'] = 'Bahrain', 
        ['BI'] = 'Burundi', 
        ['BJ'] = 'Benin', 
        ['BM'] = 'Bermuda', 
        ['BN'] = 'Brunei Darussalam', 
        ['BO'] = 'Bolivia', 
        ['BQ'] = 'Bonaire', 
        ['BR'] = 'Brazil', 
        ['BS'] = 'Bahamas', 
        ['BT'] = 'Bhutan', 
        ['BV'] = 'Bouvet Island', 
        ['BW'] = 'Botswana', 
        ['BY'] = 'Belarus', 
        ['BZ'] = 'Belize', 
        ['CA'] = 'Canada', 
        ['CD'] = 'Congo', 
        ['CF'] = 'Central African Republic', 
        ['CG'] = 'Congo', 
        ['CH'] = 'Switzerland', 
        ['CI'] = 'Cote d?Ivoire', 
        ['CK'] = 'Cook Islands', 
        ['CL'] = 'Chile', 
        ['CM'] = 'Cameroon', 
        ['CN'] = 'China', 
        ['CO'] = 'Colombia', 
        ['CR'] = 'Costa Rica', 
        ['CU'] = 'Cuba', 
        ['CV'] = 'Cape Verde', 
        ['CW'] = 'Curacao', 
        ['CY'] = 'Cyprus', 
        ['CZ'] = 'Czech Republic', 
        ['DE'] = 'Germany', 
        ['DJ'] = 'Djibouti', 
        ['DK'] = 'Denmark', 
        ['DM'] = 'Dominica', 
        ['DO'] = 'Dominican Republic', 
        ['DZ'] = 'Algeria', 
        ['EC'] = 'Ecuador', 
        ['EE'] = 'Estonia', 
        ['EG'] = 'Egypt', 
        ['EH'] = 'Western Sahara', 
        ['ER'] = 'Eritrea', 
        ['ES'] = 'Spain', 
        ['ET'] = 'Ethiopia', 
        ['FI'] = 'Finland', 
        ['FJ'] = 'Fiji', 
        ['FK'] = 'Malvinas', 
        ['FO'] = 'Faroe Islands', 
        ['FR'] = 'France', 
        ['GA'] = 'Gabon', 
        ['GB'] = 'United Kingdom', 
        ['GD'] = 'Grenada', 
        ['GE'] = 'Georgia', 
        ['GG'] = 'Guernsey', 
        ['GH'] = 'Ghana', 
        ['GI'] = 'Gibraltar', 
        ['GL'] = 'Greenland', 
        ['GM'] = 'Gambia', 
        ['GN'] = 'Guinea', 
        ['GQ'] = 'Equatorial Guinea', 
        ['GR'] = 'Greece', 
        ['GT'] = 'Guatemala', 
        ['GW'] = 'Guinea-Bissau', 
        ['GY'] = 'Guyana', 
        ['HN'] = 'Honduras', 
        ['HR'] = 'Croatia', 
        ['HT'] = 'Haiti', 
        ['HU'] = 'Hungary', 
        ['ID'] = 'Indonesia', 
        ['IE'] = 'Ireland', 
        ['IL'] = 'Israel', 
        ['IM'] = 'Isle of Man', 
        ['IN'] = 'India', 
        ['IQ'] = 'Iraq', 
        ['IR'] = 'Iran', 
        ['IS'] = 'Iceland', 
        ['IT'] = 'Italy', 
        ['JE'] = 'Jersey', 
        ['JM'] = 'Jamaica', 
        ['JO'] = 'Jordan', 
        ['JP'] = 'Japan', 
        ['KE'] = 'Kenya', 
        ['KG'] = 'Kyrgyzstan', 
        ['KH'] = 'Cambodia', 
        ['KI'] = 'Kiribati', 
        ['KM'] = 'Comoros', 
        ['KN'] = 'Saint Kitts and Nevis', 
        ['KP'] = 'Korea', 
        ['KR'] = 'Korea', 
        ['KW'] = 'Kuwait', 
        ['KY'] = 'Cayman Islands', 
        ['KZ'] = 'Kazakhstan', 
        ['LA'] = 'Lao People?s Republic', 
        ['LB'] = 'Lebanon', 
        ['LC'] = 'Saint Lucia', 
        ['LI'] = 'Liechtenstein', 
        ['LK'] = 'Sri Lanka', 
        ['LR'] = 'Liberia', 
        ['LS'] = 'Lesotho', 
        ['LT'] = 'Lithuania', 
        ['LU'] = 'Luxembourg', 
        ['LV'] = 'Latvia', 
        ['LY'] = 'Libyan Arab Jamahiriya', 
        ['MA'] = 'Morocco', 
        ['MC'] = 'Monaco', 
        ['MD'] = 'Moldova', 
        ['ME'] = 'Montenegro', 
        ['MG'] = 'Madagascar', 
        ['MK'] = 'Macedonia', 
        ['ML'] = 'Mali', 
        ['MM'] = 'Myanmar', 
        ['MN'] = 'Mongolia', 
        ['MO'] = 'Macao', 
        ['MP'] = 'Northern Mariana Islands', 
        ['MR'] = 'Mauritania', 
        ['MS'] = 'Montserrat', 
        ['MT'] = 'Malta', 
        ['MU'] = 'Mauritius', 
        ['MV'] = 'Maldives', 
        ['MW'] = 'Malawi', 
        ['MX'] = 'Mexico', 
        ['MY'] = 'Malaysia', 
        ['MZ'] = 'Mozambique', 
        ['NA'] = 'Namibia', 
        ['NE'] = 'Niger', 
        ['NG'] = 'Nigeria', 
        ['NI'] = 'Nicaragua', 
        ['NL'] = 'Netherlands', 
        ['NO'] = 'Norway', 
        ['NP'] = 'Nepal', 
        ['NR'] = 'Nauru', 
        ['NZ'] = 'New Zealand', 
        ['OM'] = 'Oman', 
        ['PA'] = 'Panama', 
        ['PE'] = 'Peru', 
        ['PG'] = 'Papua New Guinea', 
        ['PH'] = 'Philippines', 
        ['PK'] = 'Pakistan', 
        ['PL'] = 'Poland', 
        ['PT'] = 'Portugal', 
        ['PW'] = 'Palau', 
        ['PY'] = 'Paraguay', 
        ['QA'] = 'Qatar', 
        ['RO'] = 'Romania', 
        ['RS'] = 'Serbia', 
        ['RU'] = 'Russian Federation', 
        ['RW'] = 'Rwanda', 
        ['SA'] = 'Saudi Arabia', 
        ['SB'] = 'Solomon Islands', 
        ['SC'] = 'Seychelles', 
        ['SD'] = 'Sudan', 
        ['SE'] = 'Sweden', 
        ['SG'] = 'Singapore', 
        ['SH'] = 'Saint Helena', 
        ['SI'] = 'Slovenia', 
        ['SK'] = 'Slovakia', 
        ['SL'] = 'Sierra Leone', 
        ['SM'] = 'San Marino', 
        ['SN'] = 'Senegal', 
        ['SO'] = 'Somalia', 
        ['SR'] = 'Suriname', 
        ['ST'] = 'Sao Tome and Principe', 
        ['SV'] = 'Salvador', 
        ['SX'] = 'Sint Maarten (Dutch part)', 
        ['SY'] = 'Syrian Arab Republic', 
        ['SZ'] = 'Swaziland', 
        ['TC'] = 'Turks and Caicos Islands', 
        ['TD'] = 'Chad', 
        ['TG'] = 'Togo', 
        ['TH'] = 'Thailand', 
        ['TJ'] = 'Tajikistan', 
        ['TL'] = 'Timor?Leste', 
        ['TM'] = 'Turkmenistan', 
        ['TN'] = 'Tunisia', 
        ['TO'] = 'Tonga', 
        ['TR'] = 'Turkey', 
        ['TT'] = 'Trinidad and Tobago', 
        ['TV'] = 'Tuvalu', 
        ['TW'] = 'Taiwan', 
        ['TZ'] = 'Tanzania', 
        ['UA'] = 'Ukraine', 
        ['UG'] = 'Uganda', 
        ['US'] = 'United States of America', 
        ['UY'] = 'Uruguay', 
        ['UZ'] = 'Uzbekistan', 
        ['VA'] = 'Holy See', 
        ['VC'] = 'Saint Vincent', 
        ['VE'] = 'Venezuela', 
        ['VG'] = 'Virgin Islands', 
        ['VN'] = 'Viet Nam', 
        ['VU'] = 'Vanuatu', 
        ['WS'] = 'Samoa', 
        ['YE'] = 'Yemen', 
        ['ZA'] = 'South Africa', 
        ['ZZ'] = 'n/a', 
        ['ZM'] = 'Zambia' -- ',' is only if you're adding more 
    } 
end 

Link to comment

try this:

local countryNames 
function country () 
 countryNames = { 
        ['AD'] = 'Andorra', 
        ['AE'] = 'United Arab Emirates', 
        ['AF'] = 'Afghanistan', 
        ['AG'] = 'Antigua and Barbuda', 
        ['AI'] = 'Anguilla', 
        ['AL'] = 'Albania', 
        ['AM'] = 'Armenia', 
        ['AO'] = 'Angola', 
        ['AP'] = 'ARIPO', 
        ['AR'] = 'Argentina', 
        ['AT'] = 'Austria', 
        ['AU'] = 'Australia', 
        ['AW'] = 'Aruba', 
        ['AZ'] = 'Azerbaijan', 
        ['BA'] = 'Bosnia and Herzegovina', 
        ['BB'] = 'Barbados', 
        ['BD'] = 'Bangladesh', 
        ['BE'] = 'Belgium', 
        ['BF'] = 'Burkina Faso', 
        ['BG'] = 'Bulgaria', 
        ['BH'] = 'Bahrain', 
        ['BI'] = 'Burundi', 
        ['BJ'] = 'Benin', 
        ['BM'] = 'Bermuda', 
        ['BN'] = 'Brunei Darussalam', 
        ['BO'] = 'Bolivia', 
        ['BQ'] = 'Bonaire', 
        ['BR'] = 'Brazil', 
        ['BS'] = 'Bahamas', 
        ['BT'] = 'Bhutan', 
        ['BV'] = 'Bouvet Island', 
        ['BW'] = 'Botswana', 
        ['BY'] = 'Belarus', 
        ['BZ'] = 'Belize', 
        ['CA'] = 'Canada', 
        ['CD'] = 'Congo', 
        ['CF'] = 'Central African Republic', 
        ['CG'] = 'Congo', 
        ['CH'] = 'Switzerland', 
        ['CI'] = 'Cote d?Ivoire', 
        ['CK'] = 'Cook Islands', 
        ['CL'] = 'Chile', 
        ['CM'] = 'Cameroon', 
        ['CN'] = 'China', 
        ['CO'] = 'Colombia', 
        ['CR'] = 'Costa Rica', 
        ['CU'] = 'Cuba', 
        ['CV'] = 'Cape Verde', 
        ['CW'] = 'Curacao', 
        ['CY'] = 'Cyprus', 
        ['CZ'] = 'Czech Republic', 
        ['DE'] = 'Germany', 
        ['DJ'] = 'Djibouti', 
        ['DK'] = 'Denmark', 
        ['DM'] = 'Dominica', 
        ['DO'] = 'Dominican Republic', 
        ['DZ'] = 'Algeria', 
        ['EC'] = 'Ecuador', 
        ['EE'] = 'Estonia', 
        ['EG'] = 'Egypt', 
        ['EH'] = 'Western Sahara', 
        ['ER'] = 'Eritrea', 
        ['ES'] = 'Spain', 
        ['ET'] = 'Ethiopia', 
        ['FI'] = 'Finland', 
        ['FJ'] = 'Fiji', 
        ['FK'] = 'Malvinas', 
        ['FO'] = 'Faroe Islands', 
        ['FR'] = 'France', 
        ['GA'] = 'Gabon', 
        ['GB'] = 'United Kingdom', 
        ['GD'] = 'Grenada', 
        ['GE'] = 'Georgia', 
        ['GG'] = 'Guernsey', 
        ['GH'] = 'Ghana', 
        ['GI'] = 'Gibraltar', 
        ['GL'] = 'Greenland', 
        ['GM'] = 'Gambia', 
        ['GN'] = 'Guinea', 
        ['GQ'] = 'Equatorial Guinea', 
        ['GR'] = 'Greece', 
        ['GT'] = 'Guatemala', 
        ['GW'] = 'Guinea-Bissau', 
        ['GY'] = 'Guyana', 
        ['HN'] = 'Honduras', 
        ['HR'] = 'Croatia', 
        ['HT'] = 'Haiti', 
        ['HU'] = 'Hungary', 
        ['ID'] = 'Indonesia', 
        ['IE'] = 'Ireland', 
        ['IL'] = 'Israel', 
        ['IM'] = 'Isle of Man', 
        ['IN'] = 'India', 
        ['IQ'] = 'Iraq', 
        ['IR'] = 'Iran', 
        ['IS'] = 'Iceland', 
        ['IT'] = 'Italy', 
        ['JE'] = 'Jersey', 
        ['JM'] = 'Jamaica', 
        ['JO'] = 'Jordan', 
        ['JP'] = 'Japan', 
        ['KE'] = 'Kenya', 
        ['KG'] = 'Kyrgyzstan', 
        ['KH'] = 'Cambodia', 
        ['KI'] = 'Kiribati', 
        ['KM'] = 'Comoros', 
        ['KN'] = 'Saint Kitts and Nevis', 
        ['KP'] = 'Korea', 
        ['KR'] = 'Korea', 
        ['KW'] = 'Kuwait', 
        ['KY'] = 'Cayman Islands', 
        ['KZ'] = 'Kazakhstan', 
        ['LA'] = 'Lao People?s Republic', 
        ['LB'] = 'Lebanon', 
        ['LC'] = 'Saint Lucia', 
        ['LI'] = 'Liechtenstein', 
        ['LK'] = 'Sri Lanka', 
        ['LR'] = 'Liberia', 
        ['LS'] = 'Lesotho', 
        ['LT'] = 'Lithuania', 
        ['LU'] = 'Luxembourg', 
        ['LV'] = 'Latvia', 
        ['LY'] = 'Libyan Arab Jamahiriya', 
        ['MA'] = 'Morocco', 
        ['MC'] = 'Monaco', 
        ['MD'] = 'Moldova', 
        ['ME'] = 'Montenegro', 
        ['MG'] = 'Madagascar', 
        ['MK'] = 'Macedonia', 
        ['ML'] = 'Mali', 
        ['MM'] = 'Myanmar', 
        ['MN'] = 'Mongolia', 
        ['MO'] = 'Macao', 
        ['MP'] = 'Northern Mariana Islands', 
        ['MR'] = 'Mauritania', 
        ['MS'] = 'Montserrat', 
        ['MT'] = 'Malta', 
        ['MU'] = 'Mauritius', 
        ['MV'] = 'Maldives', 
        ['MW'] = 'Malawi', 
        ['MX'] = 'Mexico', 
        ['MY'] = 'Malaysia', 
        ['MZ'] = 'Mozambique', 
        ['NA'] = 'Namibia', 
        ['NE'] = 'Niger', 
        ['NG'] = 'Nigeria', 
        ['NI'] = 'Nicaragua', 
        ['NL'] = 'Netherlands', 
        ['NO'] = 'Norway', 
        ['NP'] = 'Nepal', 
        ['NR'] = 'Nauru', 
        ['NZ'] = 'New Zealand', 
        ['OM'] = 'Oman', 
        ['PA'] = 'Panama', 
        ['PE'] = 'Peru', 
        ['PG'] = 'Papua New Guinea', 
        ['PH'] = 'Philippines', 
        ['PK'] = 'Pakistan', 
        ['PL'] = 'Poland', 
        ['PT'] = 'Portugal', 
        ['PW'] = 'Palau', 
        ['PY'] = 'Paraguay', 
        ['QA'] = 'Qatar', 
        ['RO'] = 'Romania', 
        ['RS'] = 'Serbia', 
        ['RU'] = 'Russian Federation', 
        ['RW'] = 'Rwanda', 
        ['SA'] = 'Saudi Arabia', 
        ['SB'] = 'Solomon Islands', 
        ['SC'] = 'Seychelles', 
        ['SD'] = 'Sudan', 
        ['SE'] = 'Sweden', 
        ['SG'] = 'Singapore', 
        ['SH'] = 'Saint Helena', 
        ['SI'] = 'Slovenia', 
        ['SK'] = 'Slovakia', 
        ['SL'] = 'Sierra Leone', 
        ['SM'] = 'San Marino', 
        ['SN'] = 'Senegal', 
        ['SO'] = 'Somalia', 
        ['SR'] = 'Suriname', 
        ['ST'] = 'Sao Tome and Principe', 
        ['SV'] = 'Salvador', 
        ['SX'] = 'Sint Maarten (Dutch part)', 
        ['SY'] = 'Syrian Arab Republic', 
        ['SZ'] = 'Swaziland', 
        ['TC'] = 'Turks and Caicos Islands', 
        ['TD'] = 'Chad', 
        ['TG'] = 'Togo', 
        ['TH'] = 'Thailand', 
        ['TJ'] = 'Tajikistan', 
        ['TL'] = 'Timor?Leste', 
        ['TM'] = 'Turkmenistan', 
        ['TN'] = 'Tunisia', 
        ['TO'] = 'Tonga', 
        ['TR'] = 'Turkey', 
        ['TT'] = 'Trinidad and Tobago', 
        ['TV'] = 'Tuvalu', 
        ['TW'] = 'Taiwan', 
        ['TZ'] = 'Tanzania', 
        ['UA'] = 'Ukraine', 
        ['UG'] = 'Uganda', 
        ['US'] = 'United States of America', 
        ['UY'] = 'Uruguay', 
        ['UZ'] = 'Uzbekistan', 
        ['VA'] = 'Holy See', 
        ['VC'] = 'Saint Vincent', 
        ['VE'] = 'Venezuela', 
        ['VG'] = 'Virgin Islands', 
        ['VN'] = 'Viet Nam', 
        ['VU'] = 'Vanuatu', 
        ['WS'] = 'Samoa', 
        ['YE'] = 'Yemen', 
        ['ZA'] = 'South Africa', 
        ['ZZ'] = 'n/a', 
        ['ZM'] = 'Zambia' -- ',' is only if you're adding more 
    } 
    addEventHandler('onPlayerJoin', getRootElement(), joinHandler) 
end 

And if that doesn't work, then PM me your whole script, or post it here(You choice).

Link to comment

Your way didnt work...but i tested clientside with login handler and found out that clientside works 100% so i removed the fucking table and remade that join part on server side and now it works...no countries...but who cares...

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