Vice City: Multiplayer

VC:MP Discussion => Support => Topic started by: Coolkid on Mar 05, 2016, 07:16 PM

Title: geoip
Post by: Coolkid on Mar 05, 2016, 07:16 PM
my geoip only give 2 letter country code how to get full name

function onPlayerJoin(player) {
    local country = geoip_country_name_by_addr(player.IP);
    if (country != null) // the plugin returned a meaningful result
        Message("* " + player.Name + " is connecting from " + country + ". [" + geoip_country_code_by_addr(player.IP) + "]");
}
Title: Re: geoip
Post by: MacTavish on Mar 05, 2016, 07:35 PM
Have you really closed your eyes when you downloaded the plugin

Quote from: Crys on Sep 14, 2015, 08:22 AMDocumentation
You can find the plugin's documentation here (https://bitbucket.org/crys/0.4-geoip).
Every functions and constants provided by the plugin is explained there.