Package com.github.koraktor.steamcondenser.steam.servers

Examples of com.github.koraktor.steamcondenser.steam.servers.SourceServer


    }
    private String[] mapList;
   
    public SourceHelper(String address, String password) {
        try {
            this.server = new SourceServer(address);
            this.authenticated = this.server.rconAuth(password);
        } catch (TimeoutException ex) {
            Logger.getLogger(SourceHelper.class.getName()).log(Level.SEVERE, null, ex);
        } catch (SteamCondenserException ex) {
            Logger.getLogger(SourceHelper.class.getName()).log(Level.SEVERE, null, ex);
View Full Code Here

TOP

Related Classes of com.github.koraktor.steamcondenser.steam.servers.SourceServer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.