├── Application.php ├── LICENSE.md ├── README.md ├── data ├── acpmenu.json ├── acprestrictions.json ├── acpsearch.json ├── application.json ├── build.xml ├── emails.xml ├── extensions.json ├── furl.json ├── hooks.json ├── index.html ├── javascript.xml ├── lang.xml ├── modules.json ├── schema.json ├── settings.json ├── tasks.json ├── theme.xml ├── themesettings.json ├── versions.json └── widgets.json ├── dev ├── css │ ├── front │ │ └── widget.css │ └── index.html ├── email │ └── index.html ├── html │ ├── front │ │ ├── pages │ │ │ └── aXenServerListPage.phtml │ │ ├── servers │ │ │ ├── debugTotal.phtml │ │ │ ├── footer.phtml │ │ │ ├── item.phtml │ │ │ ├── more.phtml │ │ │ └── title.phtml │ │ └── widgets │ │ │ └── aXenServerListWidget.phtml │ └── index.html ├── index.html ├── js │ ├── front │ │ └── controllers │ │ │ └── axenserverlist │ │ │ └── aXenServerList.js │ └── index.html ├── jslang.php ├── lang.php └── resources │ ├── global │ └── icons │ │ └── unknown.png │ └── index.html ├── extensions └── core │ ├── FileStorage │ └── mods.php │ └── FrontNavigation │ └── Servers.php ├── hooks ├── index.html └── loadJSandCSS.php ├── interface └── index.html ├── modules ├── admin │ ├── index.html │ └── servers │ │ ├── mods.php │ │ ├── servers.php │ │ └── settings.php ├── front │ └── servers │ │ └── servers.php └── index.html ├── setup ├── index.html ├── upg_10000 │ ├── data.json │ ├── hooks.json │ ├── index.html │ ├── javascript.json │ ├── lang.json │ ├── modules.json │ ├── queries.json │ ├── settings.json │ ├── tasks.json │ ├── theme.json │ └── widgets.json ├── upg_10001 │ ├── data.json │ ├── javascript.json │ ├── lang.json │ ├── settings.json │ └── theme.json ├── upg_10002 │ ├── data.json │ ├── javascript.json │ ├── lang.json │ ├── settings.json │ ├── theme.json │ └── widgets.json ├── upg_10003 │ ├── data.json │ ├── javascript.json │ └── theme.json ├── upg_10004 │ ├── data.json │ ├── javascript.json │ ├── lang.json │ └── theme.json ├── upg_10005 │ ├── data.json │ ├── javascript.json │ ├── lang.json │ └── theme.json ├── upg_10006 │ ├── data.json │ ├── javascript.json │ └── theme.json ├── upg_10007 │ ├── data.json │ ├── javascript.json │ └── theme.json ├── upg_10008 │ ├── data.json │ ├── javascript.json │ ├── lang.json │ ├── modules.json │ ├── settings.json │ └── theme.json ├── upg_10009 │ ├── data.json │ ├── javascript.json │ ├── queries.json │ └── theme.json ├── upg_10010 │ ├── data.json │ ├── javascript.json │ ├── lang.json │ └── theme.json ├── upg_10011 │ ├── data.json │ ├── javascript.json │ ├── queries.json │ └── theme.json ├── upg_10012 │ ├── data.json │ ├── javascript.json │ ├── lang.json │ ├── modules.json │ ├── settings.json │ └── theme.json ├── upg_10013 │ ├── data.json │ ├── javascript.json │ ├── queries.json │ └── theme.json ├── upg_10014 │ ├── data.json │ ├── javascript.json │ ├── lang.json │ └── theme.json ├── upg_10015 │ └── data.json ├── upg_10016 │ ├── data.json │ ├── lang.json │ ├── queries.json │ ├── settings.json │ ├── theme.json │ └── upgrade.php ├── upg_10017 │ ├── data.json │ ├── javascript.json │ └── queries.json ├── upg_10018 │ └── data.json ├── upg_10019 │ └── data.json ├── upg_10020 │ └── data.json ├── upg_10021 │ └── data.json ├── upg_10022 │ └── data.json └── upg_10023 │ └── data.json ├── sources ├── GameQ │ ├── Autoloader.php │ ├── Buffer.php │ ├── Filters │ │ ├── Base.php │ │ ├── Normalize.php │ │ ├── Secondstohuman.php │ │ ├── Stripcolors.php │ │ └── Test.php │ ├── GameQ.php │ ├── Protocol.php │ ├── Protocols │ │ ├── Aa3.php │ │ ├── Aapg.php │ │ ├── Arkse.php │ │ ├── Arma.php │ │ ├── Arma3.php │ │ ├── Armedassault2oa.php │ │ ├── Armedassault3.php │ │ ├── Ase.php │ │ ├── Atlas.php │ │ ├── Avorion.php │ │ ├── Barotrauma.php │ │ ├── Batt1944.php │ │ ├── Bf1942.php │ │ ├── Bf2.php │ │ ├── Bf3.php │ │ ├── Bf4.php │ │ ├── Bfbc2.php │ │ ├── Bfh.php │ │ ├── Blackmesa.php │ │ ├── Brink.php │ │ ├── Citadel.php │ │ ├── Cod.php │ │ ├── Cod2.php │ │ ├── Cod4.php │ │ ├── Codmw2.php │ │ ├── Codmw3.php │ │ ├── Coduo.php │ │ ├── Codwaw.php │ │ ├── Conanexiles.php │ │ ├── Contagion.php │ │ ├── Crysis.php │ │ ├── Crysis2.php │ │ ├── Crysiswars.php │ │ ├── Cs15.php │ │ ├── Cs16.php │ │ ├── Cs2d.php │ │ ├── Cscz.php │ │ ├── Csgo.php │ │ ├── Css.php │ │ ├── Dal.php │ │ ├── Dayz.php │ │ ├── Dayzmod.php │ │ ├── Dod.php │ │ ├── Dods.php │ │ ├── Doom3.php │ │ ├── Dow.php │ │ ├── Eco.php │ │ ├── Egs.php │ │ ├── Et.php │ │ ├── Etqw.php │ │ ├── Ffe.php │ │ ├── Ffow.php │ │ ├── Fof.php │ │ ├── Gamespy.php │ │ ├── Gamespy2.php │ │ ├── Gamespy3.php │ │ ├── Gamespy4.php │ │ ├── Gmod.php │ │ ├── Grav.php │ │ ├── Gta5m.php │ │ ├── Gtan.php │ │ ├── Gtar.php │ │ ├── Had2.php │ │ ├── Halo.php │ │ ├── Hl1.php │ │ ├── Hl2dm.php │ │ ├── Hll.php │ │ ├── Http.php │ │ ├── Hurtworld.php │ │ ├── Insurgency.php │ │ ├── Insurgencysand.php │ │ ├── Jediacademy.php │ │ ├── Jedioutcast.php │ │ ├── Justcause2.php │ │ ├── Justcause3.php │ │ ├── Killingfloor.php │ │ ├── Killingfloor2.php │ │ ├── Kingpin.php │ │ ├── L4d.php │ │ ├── L4d2.php │ │ ├── Lhmp.php │ │ ├── M2mp.php │ │ ├── Minecraft.php │ │ ├── Minecraftpe.php │ │ ├── Miscreated.php │ │ ├── Modiverse.php │ │ ├── Mohaa.php │ │ ├── Mordhau.php │ │ ├── Mta.php │ │ ├── Mumble.php │ │ ├── Nmrih.php │ │ ├── Ns2.php │ │ ├── Of.php │ │ ├── Openttd.php │ │ ├── Pixark.php │ │ ├── Postscriptum.php │ │ ├── Projectrealitybf2.php │ │ ├── Protocols.php │ │ ├── Quake2.php │ │ ├── Quake3.php │ │ ├── Quake4.php │ │ ├── Quakelive.php │ │ ├── Redorchestra2.php │ │ ├── Redorchestraostfront.php │ │ ├── Rf2.php │ │ ├── Risingstorm2.php │ │ ├── Rust.php │ │ ├── Samp.php │ │ ├── Sco.php │ │ ├── Serioussam.php │ │ ├── Sevendaystodie.php │ │ ├── Ship.php │ │ ├── Sof2.php │ │ ├── Soldat.php │ │ ├── Source.php │ │ ├── Spaceengineers.php │ │ ├── Squad.php │ │ ├── Starmade.php │ │ ├── Stormworks.php │ │ ├── Swat4.php │ │ ├── Teamspeak2.php │ │ ├── Teamspeak3.php │ │ ├── Teeworlds.php │ │ ├── Terraria.php │ │ ├── Tf2.php │ │ ├── Theforrest.php │ │ ├── Tibia.php │ │ ├── Tshock.php │ │ ├── Unreal2.php │ │ ├── Unturned.php │ │ ├── Urbanterror.php │ │ ├── Ut.php │ │ ├── Ut2004.php │ │ ├── Ut3.php │ │ ├── Valheim.php │ │ ├── Ventrilo.php │ │ ├── Vrising.php │ │ ├── Warsow.php │ │ ├── Won.php │ │ ├── Wurm.php │ │ └── Zomboid.php │ ├── Query │ │ ├── Core.php │ │ └── Native.php │ ├── Result.php │ └── Server.php ├── Mods │ └── Mods.php ├── Servers │ ├── Servers.php │ └── Update │ │ ├── Queries.php │ │ └── Update.php └── index.html ├── tasks ├── aXenServersQueryServers.php └── index.html └── widgets └── aXenServerListWidget.php /Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/Application.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/README.md -------------------------------------------------------------------------------- /data/acpmenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/acpmenu.json -------------------------------------------------------------------------------- /data/acprestrictions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/acprestrictions.json -------------------------------------------------------------------------------- /data/acpsearch.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/application.json -------------------------------------------------------------------------------- /data/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/build.xml -------------------------------------------------------------------------------- /data/emails.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /data/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/extensions.json -------------------------------------------------------------------------------- /data/furl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/furl.json -------------------------------------------------------------------------------- /data/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/hooks.json -------------------------------------------------------------------------------- /data/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/javascript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/javascript.xml -------------------------------------------------------------------------------- /data/lang.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/lang.xml -------------------------------------------------------------------------------- /data/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/modules.json -------------------------------------------------------------------------------- /data/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/schema.json -------------------------------------------------------------------------------- /data/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/settings.json -------------------------------------------------------------------------------- /data/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/tasks.json -------------------------------------------------------------------------------- /data/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/theme.xml -------------------------------------------------------------------------------- /data/themesettings.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /data/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/versions.json -------------------------------------------------------------------------------- /data/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/data/widgets.json -------------------------------------------------------------------------------- /dev/css/front/widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/dev/css/front/widget.css -------------------------------------------------------------------------------- /dev/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/email/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/html/front/pages/aXenServerListPage.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/dev/html/front/pages/aXenServerListPage.phtml -------------------------------------------------------------------------------- /dev/html/front/servers/debugTotal.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/dev/html/front/servers/debugTotal.phtml -------------------------------------------------------------------------------- /dev/html/front/servers/footer.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/dev/html/front/servers/footer.phtml -------------------------------------------------------------------------------- /dev/html/front/servers/item.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/dev/html/front/servers/item.phtml -------------------------------------------------------------------------------- /dev/html/front/servers/more.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/dev/html/front/servers/more.phtml -------------------------------------------------------------------------------- /dev/html/front/servers/title.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/dev/html/front/servers/title.phtml -------------------------------------------------------------------------------- /dev/html/front/widgets/aXenServerListWidget.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/dev/html/front/widgets/aXenServerListWidget.phtml -------------------------------------------------------------------------------- /dev/html/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/js/front/controllers/axenserverlist/aXenServerList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/ips-app-advanced-serverlist/HEAD/dev/js/front/controllers/axenserverlist/aXenServerList.js -------------------------------------------------------------------------------- /dev/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/jslang.php: -------------------------------------------------------------------------------- 1 |