platform {get}

API -

return function()
    local user = getUser('clonzeh');
    if user == nil then
        log('user does not exist!');
        return;
    end
    log('user is a from the platform: ' .. user.platform);
end

Last updated