├── game ├── tree.php ├── evostats.php ├── battle_log.txt ├── paypal_error.csv ├── language │ └── en │ │ ├── news.mo │ │ ├── index2.php │ │ ├── admin │ │ ├── index.php │ │ ├── addmoon.mo │ │ ├── fleets.lang │ │ ├── fleets.mo │ │ ├── md5enc.lang │ │ ├── md5enc.mo │ │ ├── add_fleet.mo │ │ ├── addmoon.lang │ │ ├── adminpanel.mo │ │ ├── newsletter.mo │ │ ├── settings.lang │ │ ├── add_fleet.lang │ │ ├── adminpanel.lang │ │ ├── messagelist.lang │ │ ├── messagelist.mo │ │ ├── multi.mo │ │ ├── changepass.mo │ │ ├── Queries.mo │ │ ├── news.mo │ │ ├── news.lang │ │ ├── notes.lang │ │ └── notes.mo │ │ ├── install │ │ └── index.php │ │ ├── chat.mo │ │ ├── reg.mo │ │ ├── stat.mo │ │ ├── buddy.mo │ │ ├── galaxy.mo │ │ ├── index.mo │ │ ├── login.mo │ │ ├── logout.mo │ │ ├── search.mo │ │ ├── activate.mo │ │ ├── cookies.mo │ │ ├── techdata.mo │ │ ├── lang_info.cfg │ │ ├── changepassword.mo │ │ ├── tradingscrapmetal.mo │ │ ├── server.mo │ │ ├── player.mo │ │ ├── profil.mo │ │ ├── lostpassword.mo │ │ ├── logout2.mo │ │ ├── topkb.mo │ │ ├── logout.php │ │ ├── rightmenu.mo │ │ ├── resources.mo │ │ ├── contact.mo │ │ ├── records.mo │ │ ├── viewreport.mo │ │ ├── banned.mo │ │ └── converter.mo ├── paypal_error.log ├── templates │ ├── Redesigned │ │ ├── index.html │ │ ├── agreement.tpl │ │ ├── alliance │ │ │ ├── make.tpl │ │ │ ├── apps.tpl │ │ │ └── applied_notin.tpl │ │ ├── basic_page.tpl │ │ ├── galaxy_row_action.tpl │ │ ├── redesigned │ │ │ ├── errorbox.tpl │ │ │ ├── countdown.tpl │ │ │ ├── right_menu.tpl │ │ │ ├── adminmenu.tpl │ │ │ ├── station.tpl │ │ │ ├── validate.tpl │ │ │ └── admin.tpl │ │ ├── right_menu.tpl │ │ ├── imperium_row2.tpl │ │ ├── imperium_row.tpl │ │ ├── tradingscrapmetal_n.tpl │ │ ├── trees │ │ │ └── noinfo.tpl │ │ ├── techtree_head.tpl │ │ ├── techtree_body.tpl │ │ ├── topkb.tpl │ │ ├── usuw_body.tpl │ │ ├── alliance_admin_laws_feet.tpl │ │ ├── contact_body_rows.tpl │ │ ├── galaxy_row_luna.tpl │ │ ├── topkb_rows.tpl │ │ ├── messages_pm_form_bb.tpl │ │ ├── simple_footer.tpl │ │ ├── search_ally_row.tpl │ │ ├── records_section_rows.tpl │ │ ├── buildings_res_row.tpl │ │ ├── records_section_header.tpl │ │ ├── buildings_builds_row.tpl │ │ ├── overall_footer.tpl │ │ ├── topkbanzeige.tpl │ │ ├── officier_body.tpl │ │ ├── supp_t_send.tpl │ │ ├── alliance_searchresult_row.tpl │ │ ├── changelog_table.tpl │ │ ├── message_body.tpl │ │ ├── adds.tpl │ │ ├── alliance_admin_request_row.tpl │ │ ├── alliance_searchresult_table.tpl │ │ ├── supp_t_send_error.tpl │ │ ├── options_admadd.tpl │ │ ├── statjoueur.tpl │ │ ├── records_body.tpl │ │ ├── gate_fleet_rows.tpl │ │ ├── topkbanzeige_rows.tpl │ │ ├── admin │ │ │ ├── supp_t_close.tpl │ │ │ ├── supp_t_send.tpl │ │ │ ├── supp_answ_send.tpl │ │ │ ├── supp_t_send_error.tpl │ │ │ ├── errors_body.tpl │ │ │ ├── edit_ovr.tpl │ │ │ ├── supp.tpl │ │ │ └── overview_rows.tpl │ │ ├── search_ally_table.tpl │ │ ├── officier_rows.tpl │ │ ├── stat_playertable_header.tpl │ │ ├── buildings_research.tpl │ │ ├── alliance_admin_transfer.tpl │ │ ├── buildings_builds_script.tpl │ │ ├── buildings_res_script.tpl │ │ ├── search │ │ │ └── results.tpl │ │ ├── stat_playertable.tpl │ │ ├── alliance_defaultmenu.tpl │ │ ├── stat_alliancetable.tpl │ │ ├── alliance_admin_members_row_edit.tpl │ │ ├── fleet │ │ │ ├── missionselectoff.tpl │ │ │ ├── combatround.tpl │ │ │ ├── 0.tpl │ │ │ ├── missionselecton.tpl │ │ │ ├── ship.tpl │ │ │ ├── combatattacker.tpl │ │ │ └── movement.tpl │ │ ├── phalanx_body.tpl │ │ ├── stat_alliancetable_header.tpl │ │ ├── overview_fleet_event.tpl │ │ ├── search_user_table.tpl │ │ ├── premium.tpl │ │ ├── alliance_searchform.tpl │ │ ├── alliance_admin_transfer_row.tpl │ │ ├── alliance_apply_waitform.tpl │ │ ├── notes_body_entry.tpl │ │ ├── alliance_admin_laws_row.tpl │ │ ├── info_buildings_general.tpl │ │ ├── info_officiers_general.tpl │ │ ├── teleport.tpl │ │ ├── buildings │ │ │ ├── shipyard.tpl │ │ │ ├── defense.tpl │ │ │ ├── research.tpl │ │ │ ├── off_icon.tpl │ │ │ ├── resources.tpl │ │ │ ├── station.tpl │ │ │ └── off_matter.tpl │ │ ├── buildings_research_row.tpl │ │ ├── profil.tpl │ │ ├── alliance_admin_rename.tpl │ │ ├── buildings_fleet.tpl │ │ ├── multi.tpl │ │ ├── buildings_defense.tpl │ │ ├── info_buildings_destroy.tpl │ │ ├── topmenu.tpl │ │ ├── alliance_memberslist_row.tpl │ │ ├── galaxy_row.tpl │ │ ├── alliance_ainfo.tpl │ │ ├── buildings_caserne.tpl │ │ ├── alliance_admin_members_row.tpl │ │ ├── alliance_admin_rename2.tpl │ │ ├── resources_row.tpl │ │ ├── alliance_admin_rename1.tpl │ │ ├── alliance_admin_members_function.tpl │ │ ├── alliance_makeform.tpl │ │ ├── galaxy_row_user.tpl │ │ ├── techtree_row.tpl │ │ ├── alliance_admin_laws_head.tpl │ │ ├── usr_banned.tpl │ │ ├── lostpassword.tpl │ │ ├── search_user_row.tpl │ │ ├── info_buildings_table.tpl │ │ ├── serv_infos.tpl │ │ ├── options_body_vmode.tpl │ │ ├── alliance_make.tpl │ │ ├── techtree.tpl │ │ ├── alliance_admin_request_table.tpl │ │ ├── overview_deleteplanet.tpl │ │ ├── viewreport.tpl │ │ ├── notes_body.tpl │ │ ├── galaxy_row_ally.tpl │ │ ├── info_buildings_defense.tpl │ │ ├── galaxy_row_planet.tpl │ │ ├── alliance_applyform.tpl │ │ ├── overview_renameplanet.tpl │ │ ├── search_body.tpl │ │ ├── alliance_circular_form.tpl │ │ ├── alliance_circular.tpl │ │ ├── alliance_memberslist_table.tpl │ │ ├── techtree_details.tpl │ │ ├── alliance_admin_request_form.tpl │ │ ├── info_buildings_caserne.tpl │ │ ├── messages_pm_form.tpl │ │ ├── add_declare.tpl │ │ ├── supp_answ_send.tpl │ │ ├── buildings_research_script.tpl │ │ ├── galaxy │ │ │ ├── galaxyrow.tpl │ │ │ └── playername.tpl │ │ ├── galaxy_row_debris.tpl │ │ ├── alliance_frontpage.tpl │ │ ├── notes_form.tpl │ │ ├── board │ │ │ └── main.tpl │ │ ├── gate_fleet_table.tpl │ │ ├── info_buildings_fleet.tpl │ │ ├── alliance_admin_members_table.tpl │ │ ├── changelog_body.tpl │ │ ├── emails │ │ │ └── newcode.tpl │ │ └── network │ │ │ ├── notes.tpl │ │ │ └── tabs.tpl │ └── index.php ├── includes │ ├── functions │ │ ├── GroupMessage.php │ │ ├── IsVacationMode.php │ │ ├── MissionCaseStay.php │ │ ├── SendNewPassword.php │ │ ├── BuildFleetEventTable.php │ │ ├── GetMaxConstructibleElements.php │ │ ├── UpdatePlanetBatimentQueueList.php │ │ ├── GetPhalanxRange.php │ │ ├── GetMissileRange.php │ │ ├── CheckInputStrings.php │ │ ├── BuildingSaveUserRecord.php │ │ ├── StatFunctions.php │ │ ├── BinaryDecode.php │ │ ├── GetElementRessources.php │ │ ├── BuildingSavePlanetRecord.php │ │ ├── IsTechnologieAccessible.php │ │ ├── ChekUser.php │ │ ├── SortUserPlanets.php │ │ ├── CheckPlanetUsedFields.php │ │ ├── GalaxyCheckFunctions.php │ │ ├── CheckLabSettingsInQueue.php │ │ ├── SetSelectedPlanet.php │ │ ├── IsOfficierAccessible.php │ │ └── PlanetType.php │ ├── getships.php │ ├── raketenangriff.php │ ├── error_log │ ├── db.php │ ├── userconstants.php │ ├── relations.php │ └── formulas.php ├── robots.txt ├── board.php ├── img │ ├── b.gif │ ├── m.gif │ ├── bg.png │ ├── chatbg.jpg │ ├── less.gif │ ├── plus.gif │ ├── search.gif │ ├── trans.gif │ ├── caution.gif │ ├── loading.gif │ ├── main_log.png │ ├── closelabel.gif │ ├── main_menu.png │ └── techtree │ │ ├── tree_bot.png │ │ ├── tree_cont.png │ │ ├── tree_miss.png │ │ └── tree_branch.png ├── multi.php ├── top.png ├── ECOTree.js ├── bottom.png ├── favicon.ico ├── middle.png ├── phalanx.php ├── check │ ├── err.gif │ ├── no.gif │ └── ok.gif ├── mipattack.php ├── paysystemkeys.php ├── scripts │ ├── res.js │ ├── gsc.1.js │ ├── ECOTree.js │ ├── cntneu.js │ ├── tw-sack.js │ ├── tip_balloon │ │ ├── b.gif │ │ ├── l.gif │ │ ├── lb.gif │ │ ├── lt.gif │ │ ├── r.gif │ │ ├── rb.gif │ │ ├── rt.gif │ │ ├── t.gif │ │ ├── stemb.gif │ │ ├── stemt.gif │ │ └── background.gif │ ├── win.js │ ├── cntchar.js │ ├── 7_nieaktywni.user.js │ ├── cntfs.js │ ├── cntneu2.js │ ├── cntfe.js │ ├── cst.js │ ├── ocnt.js │ ├── madnessred.js │ ├── cnt.js │ ├── time.js │ └── display.js ├── topkbuser.php ├── config.php ├── scrapdealer.php ├── lang │ ├── en │ │ ├── cookies.mo │ │ ├── payment.mo │ │ ├── notes.mo │ │ ├── research.mo │ │ ├── empire.mo │ │ ├── login.mo │ │ ├── stat.mo │ │ ├── ban.mo │ │ └── search.mo │ └── config.mo ├── raketenangriff.php ├── admin │ ├── old │ │ ├── mass_message.php │ │ ├── messall.php.old │ │ ├── variables.php │ │ ├── deletuser.php │ │ ├── ShowFlyingFleets.php │ │ ├── changelog.php │ │ ├── QueryExecute.php │ │ ├── md5enc.php │ │ ├── unbanned.php │ │ └── leftmenu.php │ └── addmoon.php ├── test.php ├── allpics.php ├── test.html ├── topkb.php ├── multis.php ├── lostpassword.php ├── researchers.php ├── fleetrecall.php ├── config1.php ├── modules │ ├── game.php │ └── calculations.php ├── forum.php ├── logout.php ├── topmenu.php ├── write.php ├── css │ ├── ECOTree.css │ ├── ibox.css │ ├── redesign-0-9-9_toolbox.css │ └── about.css ├── iframe.php ├── chat1.php ├── resources.php ├── changelog.php ├── viewreport.php ├── allplanets.php ├── battlesim.php ├── credit.php ├── bonus.php ├── items │ └── 214.ship ├── chat.php ├── tos.html └── reg.html ├── install ├── sql.log ├── stage1.png ├── stage2.png ├── stage3.png ├── stage4.png ├── installationguide.pdf └── here.php ├── status ├── .gitignore ├── sqlupdates ├── index.html ├── 2012_07_02_00_users.sql ├── 2012_07_02_01_users.sql ├── 2012_09_15_00_config.sql └── 2012_09_25_00_config.sql ├── favicon.ico ├── images ├── bot.gif ├── mid.gif ├── tlo.jpg ├── tlo.png ├── top.gif ├── logo.jpg ├── background2.jpg └── xnovaproject.png ├── ibox.2.2 ├── images │ ├── bg.png │ └── indicator.gif └── license ├── version.php ├── index.php ├── ctest.php └── ibox.css /game/tree.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/evostats.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install/sql.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /status: -------------------------------------------------------------------------------- 1 | NOTINSTALLED -------------------------------------------------------------------------------- /game/battle_log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/paypal_error.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/language/en/news.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/paypal_error.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | skins/* 2 | .idea 3 | -------------------------------------------------------------------------------- /game/templates/Redesigned/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/includes/functions/GroupMessage.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templates/Redesigned/agreement.tpl: -------------------------------------------------------------------------------- 1 | N/A -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance/make.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sqlupdates/index.html: -------------------------------------------------------------------------------- 1 | Forbidden Access! 2 | -------------------------------------------------------------------------------- /game/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /game/templates/Redesigned/basic_page.tpl: -------------------------------------------------------------------------------- 1 | {this_page} -------------------------------------------------------------------------------- /game/templates/Redesigned/galaxy_row_action.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /game/templates/Redesigned/redesigned/errorbox.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/includes/getships.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /game/templates/Redesigned/right_menu.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /game/templates/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/favicon.ico -------------------------------------------------------------------------------- /game/language/en/index2.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templates/Redesigned/redesigned/countdown.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templates/Redesigned/redesigned/right_menu.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /game/board.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/board.php -------------------------------------------------------------------------------- /game/img/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/b.gif -------------------------------------------------------------------------------- /game/img/m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/m.gif -------------------------------------------------------------------------------- /game/language/en/admin/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/language/en/install/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/multi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/multi.php -------------------------------------------------------------------------------- /game/templates/Redesigned/imperium_row2.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {text} 4 | -------------------------------------------------------------------------------- /game/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/top.png -------------------------------------------------------------------------------- /images/bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/images/bot.gif -------------------------------------------------------------------------------- /images/mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/images/mid.gif -------------------------------------------------------------------------------- /images/tlo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/images/tlo.jpg -------------------------------------------------------------------------------- /images/tlo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/images/tlo.png -------------------------------------------------------------------------------- /images/top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/images/top.gif -------------------------------------------------------------------------------- /game/ECOTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/ECOTree.js -------------------------------------------------------------------------------- /game/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/bottom.png -------------------------------------------------------------------------------- /game/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/favicon.ico -------------------------------------------------------------------------------- /game/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/bg.png -------------------------------------------------------------------------------- /game/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/middle.png -------------------------------------------------------------------------------- /game/phalanx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/phalanx.php -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/images/logo.jpg -------------------------------------------------------------------------------- /game/check/err.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/check/err.gif -------------------------------------------------------------------------------- /game/check/no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/check/no.gif -------------------------------------------------------------------------------- /game/check/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/check/ok.gif -------------------------------------------------------------------------------- /game/img/chatbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/chatbg.jpg -------------------------------------------------------------------------------- /game/img/less.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/less.gif -------------------------------------------------------------------------------- /game/img/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/plus.gif -------------------------------------------------------------------------------- /game/img/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/search.gif -------------------------------------------------------------------------------- /game/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/trans.gif -------------------------------------------------------------------------------- /game/mipattack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/mipattack.php -------------------------------------------------------------------------------- /game/paysystemkeys.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/scripts/res.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/res.js -------------------------------------------------------------------------------- /game/templates/Redesigned/imperium_row.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {text} 4 | -------------------------------------------------------------------------------- /game/topkbuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/topkbuser.php -------------------------------------------------------------------------------- /install/stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/install/stage1.png -------------------------------------------------------------------------------- /install/stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/install/stage2.png -------------------------------------------------------------------------------- /install/stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/install/stage3.png -------------------------------------------------------------------------------- /install/stage4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/install/stage4.png -------------------------------------------------------------------------------- /game/config.php: -------------------------------------------------------------------------------- 1 | \n"; 3 | require(ROOT_PATH.'config1.php'); 4 | ?> 5 | -------------------------------------------------------------------------------- /game/img/caution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/caution.gif -------------------------------------------------------------------------------- /game/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/loading.gif -------------------------------------------------------------------------------- /game/img/main_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/main_log.png -------------------------------------------------------------------------------- /game/scrapdealer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scrapdealer.php -------------------------------------------------------------------------------- /game/scripts/gsc.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/gsc.1.js -------------------------------------------------------------------------------- /game/templates/Redesigned/tradingscrapmetal_n.tpl: -------------------------------------------------------------------------------- 1 | 2 | 0 -------------------------------------------------------------------------------- /game/templates/Redesigned/trees/noinfo.tpl: -------------------------------------------------------------------------------- 1 |
No requirements available
-------------------------------------------------------------------------------- /game/img/closelabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/closelabel.gif -------------------------------------------------------------------------------- /game/img/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/main_menu.png -------------------------------------------------------------------------------- /game/lang/en/cookies.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/lang/en/cookies.mo -------------------------------------------------------------------------------- /game/language/en/chat.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/chat.mo -------------------------------------------------------------------------------- /game/language/en/reg.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/reg.mo -------------------------------------------------------------------------------- /game/language/en/stat.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/stat.mo -------------------------------------------------------------------------------- /game/raketenangriff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/raketenangriff.php -------------------------------------------------------------------------------- /game/scripts/ECOTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/ECOTree.js -------------------------------------------------------------------------------- /game/scripts/cntneu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/cntneu.js -------------------------------------------------------------------------------- /game/scripts/tw-sack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tw-sack.js -------------------------------------------------------------------------------- /ibox.2.2/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/ibox.2.2/images/bg.png -------------------------------------------------------------------------------- /images/background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/images/background2.jpg -------------------------------------------------------------------------------- /images/xnovaproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/images/xnovaproject.png -------------------------------------------------------------------------------- /game/language/en/buddy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/buddy.mo -------------------------------------------------------------------------------- /game/language/en/galaxy.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/galaxy.mo -------------------------------------------------------------------------------- /game/language/en/index.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/index.mo -------------------------------------------------------------------------------- /game/language/en/login.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/login.mo -------------------------------------------------------------------------------- /game/language/en/logout.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/logout.mo -------------------------------------------------------------------------------- /game/language/en/search.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/search.mo -------------------------------------------------------------------------------- /game/language/en/activate.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/activate.mo -------------------------------------------------------------------------------- /game/language/en/cookies.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/cookies.mo -------------------------------------------------------------------------------- /game/language/en/techdata.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/techdata.mo -------------------------------------------------------------------------------- /game/templates/Redesigned/techtree_head.tpl: -------------------------------------------------------------------------------- 1 | 2 | {tt_name} 3 | {Requirements} 4 | -------------------------------------------------------------------------------- /ibox.2.2/images/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/ibox.2.2/images/indicator.gif -------------------------------------------------------------------------------- /install/installationguide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/install/installationguide.pdf -------------------------------------------------------------------------------- /game/admin/old/mass_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/admin/old/mass_message.php -------------------------------------------------------------------------------- /game/admin/old/messall.php.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/admin/old/messall.php.old -------------------------------------------------------------------------------- /game/img/techtree/tree_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/techtree/tree_bot.png -------------------------------------------------------------------------------- /game/img/techtree/tree_cont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/techtree/tree_cont.png -------------------------------------------------------------------------------- /game/img/techtree/tree_miss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/techtree/tree_miss.png -------------------------------------------------------------------------------- /game/language/en/lang_info.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/lang_info.cfg -------------------------------------------------------------------------------- /game/scripts/tip_balloon/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/b.gif -------------------------------------------------------------------------------- /game/scripts/tip_balloon/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/l.gif -------------------------------------------------------------------------------- /game/scripts/tip_balloon/lb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/lb.gif -------------------------------------------------------------------------------- /game/scripts/tip_balloon/lt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/lt.gif -------------------------------------------------------------------------------- /game/scripts/tip_balloon/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/r.gif -------------------------------------------------------------------------------- /game/scripts/tip_balloon/rb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/rb.gif -------------------------------------------------------------------------------- /game/scripts/tip_balloon/rt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/rt.gif -------------------------------------------------------------------------------- /game/scripts/tip_balloon/t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/t.gif -------------------------------------------------------------------------------- /game/templates/Redesigned/techtree_body.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | {techtree_list} 5 |
6 |
-------------------------------------------------------------------------------- /sqlupdates/2012_07_02_00_users.sql: -------------------------------------------------------------------------------- 1 | //run this file, please, only with XNova Updater 2 | UPDATE {{table}} SET matter=matter+100 3 | users -------------------------------------------------------------------------------- /sqlupdates/2012_07_02_01_users.sql: -------------------------------------------------------------------------------- 1 | //run this file, please, only with XNova Updater 2 | UPDATE {{table}} SET matter=matter-100 3 | users -------------------------------------------------------------------------------- /game/img/techtree/tree_branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/img/techtree/tree_branch.png -------------------------------------------------------------------------------- /game/includes/raketenangriff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/includes/raketenangriff.php -------------------------------------------------------------------------------- /game/language/en/admin/addmoon.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/addmoon.mo -------------------------------------------------------------------------------- /game/language/en/admin/fleets.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/fleets.lang -------------------------------------------------------------------------------- /game/language/en/admin/fleets.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/fleets.mo -------------------------------------------------------------------------------- /game/language/en/admin/md5enc.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/md5enc.lang -------------------------------------------------------------------------------- /game/language/en/admin/md5enc.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/md5enc.mo -------------------------------------------------------------------------------- /game/language/en/changepassword.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/changepassword.mo -------------------------------------------------------------------------------- /game/scripts/tip_balloon/stemb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/stemb.gif -------------------------------------------------------------------------------- /game/scripts/tip_balloon/stemt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/stemt.gif -------------------------------------------------------------------------------- /game/lang/en/payment.mo: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /game/language/en/admin/add_fleet.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/add_fleet.mo -------------------------------------------------------------------------------- /game/language/en/admin/addmoon.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/addmoon.lang -------------------------------------------------------------------------------- /game/language/en/admin/adminpanel.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/adminpanel.mo -------------------------------------------------------------------------------- /game/language/en/admin/newsletter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/newsletter.mo -------------------------------------------------------------------------------- /game/language/en/admin/settings.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/settings.lang -------------------------------------------------------------------------------- /game/templates/Redesigned/topkb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/templates/Redesigned/topkb.tpl -------------------------------------------------------------------------------- /game/language/en/admin/add_fleet.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/add_fleet.lang -------------------------------------------------------------------------------- /game/language/en/admin/adminpanel.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/adminpanel.lang -------------------------------------------------------------------------------- /game/language/en/admin/messagelist.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/messagelist.lang -------------------------------------------------------------------------------- /game/language/en/admin/messagelist.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/admin/messagelist.mo -------------------------------------------------------------------------------- /game/language/en/tradingscrapmetal.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/language/en/tradingscrapmetal.mo -------------------------------------------------------------------------------- /game/scripts/tip_balloon/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/scripts/tip_balloon/background.gif -------------------------------------------------------------------------------- /game/templates/Redesigned/usuw_body.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/templates/Redesigned/usuw_body.tpl -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_laws_feet.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /game/templates/Redesigned/contact_body_rows.tpl: -------------------------------------------------------------------------------- 1 | 2 | {ctc_data_name} 3 | {ctc_data_auth} 4 | {ctc_data_mail} 5 | -------------------------------------------------------------------------------- /sqlupdates/2012_09_15_00_config.sql: -------------------------------------------------------------------------------- 1 | //run this file, please, only with XNova Updater 2 | INSERT INTO {{table}} VALUES ('email_verification','1') 3 | config -------------------------------------------------------------------------------- /sqlupdates/2012_09_25_00_config.sql: -------------------------------------------------------------------------------- 1 | //run this file, please, only with XNova Updater 2 | INSERT INTO {{table}} VALUES ('disable_registration','0') 3 | config -------------------------------------------------------------------------------- /game/includes/functions/IsVacationMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/includes/functions/IsVacationMode.php -------------------------------------------------------------------------------- /game/includes/functions/MissionCaseStay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/includes/functions/MissionCaseStay.php -------------------------------------------------------------------------------- /game/includes/functions/SendNewPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/includes/functions/SendNewPassword.php -------------------------------------------------------------------------------- /game/templates/Redesigned/galaxy_row_luna.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/templates/Redesigned/galaxy_row_luna.tpl -------------------------------------------------------------------------------- /game/templates/Redesigned/topkb_rows.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {top_rank} 4 | {top_fighters} 5 | {top_time} 6 | 7 | -------------------------------------------------------------------------------- /game/test.php: -------------------------------------------------------------------------------- 1 |
'; 5 | } 6 | 7 | ?> -------------------------------------------------------------------------------- /game/includes/functions/BuildFleetEventTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/includes/functions/BuildFleetEventTable.php -------------------------------------------------------------------------------- /game/templates/Redesigned/messages_pm_form_bb.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/templates/Redesigned/messages_pm_form_bb.tpl -------------------------------------------------------------------------------- /game/allpics.php: -------------------------------------------------------------------------------- 1 |
"; 5 | } 6 | 7 | 8 | ?> 9 | -------------------------------------------------------------------------------- /game/templates/Redesigned/simple_footer.tpl: -------------------------------------------------------------------------------- 1 | 2 |
 
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /game/includes/functions/GetMaxConstructibleElements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/includes/functions/GetMaxConstructibleElements.php -------------------------------------------------------------------------------- /game/includes/functions/UpdatePlanetBatimentQueueList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freejerry/XNova-Redesigned-Re-Project/master/game/includes/functions/UpdatePlanetBatimentQueueList.php -------------------------------------------------------------------------------- /game/templates/Redesigned/search_ally_row.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {ally_tag} 4 | {ally_name} 5 | {ally_members} 6 | {ally_points} 7 | 8 | -------------------------------------------------------------------------------- /game/templates/Redesigned/records_section_rows.tpl: -------------------------------------------------------------------------------- 1 | 2 | {element} 3 | {winner} 4 | {count} 5 | -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings_res_row.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /game/templates/Redesigned/records_section_header.tpl: -------------------------------------------------------------------------------- 1 | 2 | {section} 3 | {player} 4 | {level} 5 | -------------------------------------------------------------------------------- /game/lang/en/notes.mo: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings_builds_row.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /game/templates/Redesigned/overall_footer.tpl: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | -------------------------------------------------------------------------------- /game/templates/Redesigned/topkbanzeige.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | 5 | 8 | 9 |
6 | {top_list} 7 |
10 |
11 | 12 | -------------------------------------------------------------------------------- /game/templates/Redesigned/officier_body.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 | 7 | {disp_off_tbl} 8 |
{off_points} {alv_points}
9 |
-------------------------------------------------------------------------------- /game/templates/Redesigned/supp_t_send.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 |
{message_t}
{sendit_t}
7 |
-------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_searchresult_row.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |
{ally_tag}
4 |
{ally_name}
5 |
{ally_members}
6 | 7 | -------------------------------------------------------------------------------- /game/templates/Redesigned/changelog_table.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {version_number} 4 | {description}

5 | 6 | -------------------------------------------------------------------------------- /game/templates/Redesigned/message_body.tpl: -------------------------------------------------------------------------------- 1 |

2 | 3 | 4 | 5 | 6 | 7 | 8 |
{title}
{mes}
-------------------------------------------------------------------------------- /game/templates/Redesigned/adds.tpl: -------------------------------------------------------------------------------- 1 |

2 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_request_row.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 |
{username}
4 |
{time}
5 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_searchresult_table.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 6 | 7 | {result} 8 | 9 | 10 |
{searched_alliance_availables} 5 |
11 | -------------------------------------------------------------------------------- /game/templates/Redesigned/supp_t_send_error.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 |
{sendit_error}
{sendit_error_msg}
7 |
-------------------------------------------------------------------------------- /game/scripts/win.js: -------------------------------------------------------------------------------- 1 | function fenster(target_url,win_name) 2 | { 3 | var new_win = window.open(target_url,win_name,'resizable=yes,scrollbars=yes,menubar=no,toolbar=no,width=640,height=480,top=0,left=0'); 4 | new_win.focus(); 5 | } 6 | -------------------------------------------------------------------------------- /game/templates/Redesigned/options_admadd.tpl: -------------------------------------------------------------------------------- 1 | 2 | {opt_adm_title} 3 | 4 | {opt_adm_planet_prot} 5 | 6 | -------------------------------------------------------------------------------- /game/templates/Redesigned/statjoueur.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | Statistique Personnel 7 | {raid} 8 | 9 | 10 | 11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /game/templates/Redesigned/records_body.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | {building} 6 | {buildspe} 7 | {research} 8 | {fleet} 9 | {defenses} 10 | {caserne} 11 | 12 |
13 |
14 | -------------------------------------------------------------------------------- /game/templates/Redesigned/gate_fleet_rows.tpl: -------------------------------------------------------------------------------- 1 | 2 | {fleet_name} ({fleet_max} {gate_ship_dispo}) 3 | 4 | -------------------------------------------------------------------------------- /game/includes/error_log: -------------------------------------------------------------------------------- 1 | [13-Aug-2009 20:43:19] PHP Warning: fopen(../includes/battle_engines/vars.py) [function.fopen]: failed to open stream: Permission denied in /home/evo/public_html/xnovauk/game/includes/vars.py.php on line 76 2 | -------------------------------------------------------------------------------- /game/lang/config.mo: -------------------------------------------------------------------------------- 1 | DEFAULT_LANG, 6 | 7 | 'us' => 'en', 8 | ); 9 | ?> -------------------------------------------------------------------------------- /game/templates/Redesigned/topkbanzeige_rows.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 | {top_angreifer}{top_defender} 4 | 5 | 6 | {useratter}{top_vs}{userdeffer} 7 | 8 |
 
9 | {top_raport}
10 | 11 | -------------------------------------------------------------------------------- /game/language/en/server.mo: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /game/templates/Redesigned/admin/supp_t_close.tpl: -------------------------------------------------------------------------------- 1 |

2 |

{supp_admin_system}

3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
{message_t}
{close_t}
11 | -------------------------------------------------------------------------------- /game/templates/Redesigned/admin/supp_t_send.tpl: -------------------------------------------------------------------------------- 1 |

2 |

{supp_admin_system}

3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
{message_t}
{sendit_t}
11 | -------------------------------------------------------------------------------- /game/templates/Redesigned/search_ally_table.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | {result_list} 10 |
{Tag}{Name}{Members}{Points}
11 | -------------------------------------------------------------------------------- /game/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Homepage 9 | 10 | 11 | -------------------------------------------------------------------------------- /game/templates/Redesigned/admin/supp_answ_send.tpl: -------------------------------------------------------------------------------- 1 |

2 |

{supp_admin_system}

3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
{message_a}
{sendit_a}
11 | -------------------------------------------------------------------------------- /game/templates/Redesigned/officier_rows.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {off_tx_lvl} {off_lvl}{off_desc} 4 | {off_link} 5 | -------------------------------------------------------------------------------- /game/templates/Redesigned/stat_playertable_header.tpl: -------------------------------------------------------------------------------- 1 | 2 | {Position} 3 | {Difference} 4 | {Player} 5 |   6 | {Alliance} 7 | {Points} 8 | -------------------------------------------------------------------------------- /game/language/en/admin/multi.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templates/Redesigned/admin/supp_t_send_error.tpl: -------------------------------------------------------------------------------- 1 |

2 |

{supp_admin_system}

3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
{sendit_error}
{sendit_error_msg}
11 | -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings_research.tpl: -------------------------------------------------------------------------------- 1 |
2 | {noresearch} 3 |
4 | 5 | 6 | 13 | 14 |
7 | 8 | 9 | {technolist} 10 | 11 |
12 |
15 |
-------------------------------------------------------------------------------- /game/lang/en/research.mo: -------------------------------------------------------------------------------- 1 | 9 | $lang['Improve'] = 'Improve'; 10 | $lang['InResearch'] = 'Lab in use'; 11 | $lang['NotAccessible'] = 'Not Accessible'; 12 | ?> 13 | -------------------------------------------------------------------------------- /game/templates/Redesigned/admin/errors_body.tpl: -------------------------------------------------------------------------------- 1 |
2 | {group_errors} 3 |
4 | 5 | 6 | 9 | 10 |
11 | {errors_list} 12 |
7 | {adm_er_list} [{adm_er_clear}] 8 |
13 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_transfer.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {list} 6 | 7 | 8 | 9 |
{transfer_ally}
{Return_to_overview}
-------------------------------------------------------------------------------- /game/templates/Redesigned/buildings_builds_script.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings_res_script.tpl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /game/templates/Redesigned/search/results.tpl: -------------------------------------------------------------------------------- 1 | 2 | {data_titles} 3 | 4 | {data} 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |

13 | 14 | -------------------------------------------------------------------------------- /game/templates/Redesigned/stat_playertable.tpl: -------------------------------------------------------------------------------- 1 | 2 | {player_rank} 3 | {player_rankplus} 4 | {player_name} 5 | {player_mes} 6 | {player_alliance} 7 | {player_points} 8 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_defaultmenu.tpl: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
{alliance}
{make_alliance_owner}{search_alliance}
11 |
12 | -------------------------------------------------------------------------------- /game/templates/Redesigned/stat_alliancetable.tpl: -------------------------------------------------------------------------------- 1 | 2 | {ally_rank} 3 | {ally_rankplus} 4 | {ally_name} 5 | {ally_mes} 6 | {ally_members} 7 | {ally_points} 8 | {ally_members_points} 9 | -------------------------------------------------------------------------------- /game/topkb.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/multis.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_members_row_edit.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | {Rank_for} 5 | 6 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /game/templates/Redesigned/fleet/missionselectoff.tpl: -------------------------------------------------------------------------------- 1 | 2 |
  • 3 | 4 | {missname} 5 | 6 |
  • 7 | -------------------------------------------------------------------------------- /game/templates/Redesigned/phalanx_body.tpl: -------------------------------------------------------------------------------- 1 | {phl_er_deuter} 2 | 3 | 4 | 5 | 6 | 7 | 8 | {phl_fleets_table} 9 |
    {phl_tbl_title} [{phl_pl_galaxy}:{phl_pl_system}:{phl_pl_place}] ({phl_pl_name})
    {phl_tbl_moves}
    -------------------------------------------------------------------------------- /game/templates/Redesigned/stat_alliancetable_header.tpl: -------------------------------------------------------------------------------- 1 | 2 | {Position} 3 | {Difference} 4 | {Alliance} 5 |   6 | {Members} 7 | {Points} 8 | {PerMember} 9 | -------------------------------------------------------------------------------- /game/lostpassword.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/researchers.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/language/en/admin/changepass.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templates/Redesigned/overview_fleet_event.tpl: -------------------------------------------------------------------------------- 1 | 2 | {fleet_javai} 3 | 4 |
    -
    5 | {fleet_time} 6 | 7 | {fleet_descr} 8 | 9 | {fleet_javas} 10 | -------------------------------------------------------------------------------- /game/templates/Redesigned/search_user_table.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | {result_list} 12 |
    {Name} {Alliance}{Planet}{Coordinated}{Position}
    13 | -------------------------------------------------------------------------------- /game/templates/Redesigned/premium.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
    {titel}
    {text}
    {bestellen}
    16 |
    17 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_searchform.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
    {search_alliance}
    {Search}
    11 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_transfer_row.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
    4 | 5 | {transfer_to} 6 | 7 | 8 | 9 |
    -------------------------------------------------------------------------------- /game/language/en/player.mo: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_apply_waitform.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
    {your_apply}
    {request_text}
    15 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/fleet/combatround.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | {roundinfo} 4 |
    5 | 6 | 7 | {attackers} 8 | 9 |
    10 | 11 | 12 | {defenders} 13 | 14 |
    15 |
    16 | -------------------------------------------------------------------------------- /game/templates/Redesigned/notes_body_entry.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {NOTE_TIME} 6 | 7 | 8 | {NOTE_TITLE} 9 | 10 | 11 | {NOTE_TEXT} 12 | 13 | -------------------------------------------------------------------------------- /game/fleetrecall.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_laws_row.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | {delete} 4 |  {r0}  5 | 6 | {r1} 7 | {r2} 8 | {r3} 9 | {r4} 10 | {r5} 11 | {r6} 12 | {r7} 13 | {r8} 14 | {r9} 15 | 16 | -------------------------------------------------------------------------------- /game/templates/Redesigned/fleet/0.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |

    {FleetDispatch} - {{planet}}

    4 |
    5 |
    6 |

    Fleet dispatch impossible

    7 |

    8 | 9 | {message} 10 |

    11 |
    12 |
    13 | -------------------------------------------------------------------------------- /game/templates/Redesigned/info_buildings_general.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 16 | 17 | 18 |
    {name}
    7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
    {description}
    15 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/info_officiers_general.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 16 | 17 | 18 |
    {name}
    7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
    {description}
    15 |
    -------------------------------------------------------------------------------- /game/scripts/cntchar.js: -------------------------------------------------------------------------------- 1 | var x = ""; 2 | var e = null; 3 | function cntchar(m) { 4 | if(window.document.forms[0].text.value.length > m) 5 | window.document.forms[0].text.value = x; 6 | else 7 | x = window.document.forms[0].text.value; 8 | if(e == null) 9 | e = document.getElementById('cntChars'); 10 | else 11 | e.childNodes[0].data = window.document.forms[0].text.value.length; 12 | return; 13 | } 14 | -------------------------------------------------------------------------------- /game/includes/functions/GetPhalanxRange.php: -------------------------------------------------------------------------------- 1 | 1) { $PhalanxRange = (pow($PhalanxLevel,2)) - 1; } 14 | return $PhalanxRange; 15 | } 16 | ?> -------------------------------------------------------------------------------- /game/config1.php: -------------------------------------------------------------------------------- 1 | "localhost", // MySQL server name. 6 | "user" => "root", // MySQL username. 7 | "pass" => "", // MySQL password. 8 | "name" => "", // MySQL database name. 9 | "prefix" => "uni1_", // Tables prefix. 10 | "secretword" => "", // Cookies. 11 | "type" => "mysql"); // Database type 12 | ?> -------------------------------------------------------------------------------- /game/language/en/profil.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/modules/game.php: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /ctest.php: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /game/language/en/admin/Queries.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templates/Redesigned/teleport.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | {ships} -------------------------------------------------------------------------------- /ibox.css: -------------------------------------------------------------------------------- 1 | #ibox_content { background: transparent; border: none; color: #fff; } 2 | #ibox_wrapper { background: transparent; border: none; } 3 | #ibox_footer_wrapper { left: 0; right: 0; top: 0; padding: 3px 10px; } 4 | #ibox_footer_wrapper, #ibox_footer_wrapper a { color: #8dd6e2; background: #444; } 5 | #ibox_footer_wrapper a { color: #8dd6e2; font-weight: bold; text-decoration: none; padding: 0 3px; } 6 | #ibox_content { margin: 25px 0 0 0; padding: 10px; } 7 | -------------------------------------------------------------------------------- /game/includes/functions/GetMissileRange.php: -------------------------------------------------------------------------------- 1 | 0) { 15 | $range += ($user[$resource[117]] * 5) - 1; 16 | } 17 | return $range; 18 | } 19 | 20 | ?> -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings/shipyard.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |
    5 |
    6 | {info} 7 |
    8 |

    {Shipyard} - {planetname}

    9 |
    10 | 11 |
    12 |
    13 | 14 | {buttonz} 15 | 16 |
    17 | 18 | 19 | -------------------------------------------------------------------------------- /game/forum.php: -------------------------------------------------------------------------------- 1 | ",implode("\n",file("http://johno.jsmf.net/knowhow/ngrams/"))); 6 | $text = explode("",$text[1]); 7 | $page = $text[0]; 8 | 9 | if($_GET['axah']){ 10 | echo $page; 11 | }else{ 12 | $makepage = array(); 13 | $makepage['title'] = 'PAGE TITLE'; 14 | $makepage['content'] = $page; 15 | echo parsetemplate(gettemplate('board/main'),$makepage); 16 | } 17 | 18 | ?> -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings/defense.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 |
    5 |
    6 | {info} 7 |
    8 |

    {Defense} - {planetname}

    9 |
    10 | 11 |
    12 |
    13 | 14 | {buttonz} 15 | 16 |
    17 | 18 | -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings_research_row.tpl: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 15 | -------------------------------------------------------------------------------- /game/templates/Redesigned/profil.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    Nouvelle mission
    VaisseauxQuantitée--
    3 | 4 | 5 | 7 | {tech_name} {tech_level}
    {tech_descr}
    8 | {tech_price} 9 | {search_time} 10 | {tech_restp} 11 |
    13 | {tech_link} 14 |
    4 | 5 | 6 | 7 | 8 | {icq} 9 | {msn} 10 | {skype} 11 | {weiteres} 12 | {text} 13 | 14 |
    {profile}{name}
    {username}{name}
    {pn}
    {email_lang}{email}
    15 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_rename.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
    {question}
    {New_name}
    {Return_to_overview}
    15 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings_fleet.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 5 | 15 | 16 | 17 |
    6 |
    7 | 8 | {buildlist} 9 | 10 | 11 | 12 |
    13 |
    14 |
    18 | {buildinglist} 19 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/multi.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 |

    {Declaration}

    4 | 5 | 6 | 7 | 8 | 9 | 12 | 13 |
    {DeclarationText}
    10 | 11 |
    14 | 15 | 16 | 17 | 18 | 19 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings_defense.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 5 | 15 | 16 | 17 |
    6 |
    7 | 8 | {buildlist} 9 | 10 | 11 | 12 |
    13 |
    14 |
    18 | {buildinglist} 19 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/info_buildings_destroy.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
    6 | {nfo_destroy}: {name} {nfo_level} {levelvalue} ? 7 |
    {nfo_needed} : {nfo_metal}:{metal} {nfo_crysta}:{crystal} {nfo_deuter}:{deuterium}

    {nfo_dest_durati}: {destroytime}
    -------------------------------------------------------------------------------- /game/templates/Redesigned/admin/edit_ovr.tpl: -------------------------------------------------------------------------------- 1 |

    2 |

    {edit_title}

    3 |
    4 | 5 | Edit: 6 | 11 |

    12 | 13 |
    SELECT AREA TO MANAGE
    14 | -------------------------------------------------------------------------------- /game/admin/addmoon.php: -------------------------------------------------------------------------------- 1 | ".$result; 5 | }else{ 6 | $bloc['content'] = "A moon could not be added in orbit arround planet ".$_GET['galaxy'].":".$_GET['system'].":".$_GET['planet'].".
    ".$result; 7 | } 8 | $bloc['title'] = "Add moon"; 9 | ?> 10 | -------------------------------------------------------------------------------- /game/includes/functions/CheckInputStrings.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templates/Redesigned/topmenu.tpl: -------------------------------------------------------------------------------- 1 |
    2 | Options    Rank    Search    Help    Forum    Rules    Logout 3 |

    -------------------------------------------------------------------------------- /game/logout.php: -------------------------------------------------------------------------------- 1 | ".$lang['see_you']."", $lang['session_closed'], LOGINURL); 12 | session_destroy(); 13 | // ----------------------------------------------------------------------------------------------------------- 14 | // History version 15 | ?> 16 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_memberslist_row.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | {i} 4 | {username} 5 | {Write_a_message} 6 | {ally_range} 7 | {points} 8 | {galaxy}:{system}:{planet} 9 | {ally_register_time} 10 | 11 | 12 | -------------------------------------------------------------------------------- /game/templates/Redesigned/fleet/missionselecton.tpl: -------------------------------------------------------------------------------- 1 | 2 |
  • 3 | 4 | {missname} 5 | {missname}
    {missdesc}
    6 |
    7 |
  • 8 | -------------------------------------------------------------------------------- /game/templates/Redesigned/galaxy_row.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {row_planet} 5 | {planet_name} 6 | {luna_name) 7 | {row_debris} 8 | {row_user} 9 | {row_ally} 10 | {row_action} 11 | 12 | -------------------------------------------------------------------------------- /game/lang/en/empire.mo: -------------------------------------------------------------------------------- 1 | 9 | $lang['resources'] = 'Resources'; 10 | $lang['supply'] = 'Resources'; 11 | $lang['station'] = 'Facilities'; 12 | $lang['research'] = 'Research'; 13 | $lang['shipyard'] = 'Shipyard'; 14 | $lang['defense'] = 'Defense'; 15 | // 16 | 17 | // 18 | $lang['planets1'] = 'Planets'; 19 | $lang['planets3'] = 'Moons'; 20 | // 21 | ?> 22 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_ainfo.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 5 | 6 | {ally_image} 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | {ally_description} 20 | 21 | {ally_web} 22 | 23 | {bewerbung} 24 |
    {Alliance_information}
    {Tag}{ally_tag}
    {Name}{ally_name}
    {Members}{ally_member_scount}
    25 | -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings/research.tpl: -------------------------------------------------------------------------------- 1 | {BuildListScript} 2 | 3 | 4 | 5 |
    6 | 7 |
    8 |
    9 | {info} 10 |
    11 |

    {Research} - {planetname}

    12 |
    13 |
    14 | 15 | {buttonz} 16 | 17 |
    18 |
    19 | 20 | -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings/off_icon.tpl: -------------------------------------------------------------------------------- 1 |
  • 2 | 11 |
  • -------------------------------------------------------------------------------- /game/templates/Redesigned/buildings_caserne.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 14 | 15 | 16 |
    5 |
    6 | 7 | {buildlist} 8 | 9 | 10 | 11 |
    12 |
    13 |
    17 | {buildinglist} 18 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_members_row.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | {i} 4 | {username} 5 | {Write_a_message} 6 | {ally_range} 7 | {points} 8 | {galaxy}:{system}:{planet} 9 | {ally_register_time} 10 | {onlinetime} 11 | {functions}    12 | 13 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_rename2.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
    {question}
    Zmiana Tagu
    {Return_to_overview}
    15 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/resources_row.tpl: -------------------------------------------------------------------------------- 1 | 2 | {type} ({level} {level_type}) 3 | 4 | 5 | 6 | {metal_type} 7 | {crystal_type} 8 | {deuterium_type} 9 | {energy_type} 10 | 11 | 12 | 15 | 16 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_rename1.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
    {question}
    Zmiana Nazwy
    {Return_to_overview}
    15 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_members_function.tpl: -------------------------------------------------------------------------------- 1 |
    2 |   3 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_makeform.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
    Crear alianza
    Etiqueta de la alianza (3-8 caracteres)
    Nombre de la alianza (max. 35 caracteres)
    12 | 13 |
    14 | -------------------------------------------------------------------------------- /game/templates/Redesigned/galaxy_row_user.tpl: -------------------------------------------------------------------------------- 1 | 2 | 9 | {username} 10 | -------------------------------------------------------------------------------- /game/templates/Redesigned/techtree_row.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
    {tt_name}{tt_detail}
    9 | 10 | 11 | 12 | 13 | 14 | 15 |
    {required_list}
    16 | 17 | -------------------------------------------------------------------------------- /game/includes/db.php: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /game/language/en/lostpassword.mo: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_laws_head.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 5 | {Range_name} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /game/templates/Redesigned/usr_banned.tpl: -------------------------------------------------------------------------------- 1 | 6 |
    7 | 8 |
    9 | 10 | 11 | 13 | 14 | 15 | 18 | 19 |
    Votre compte a été suspendu!
    12 |
     

    VOUS AVEZ ÉTÉ BANNI!
    16 |

    17 |
    20 |
    21 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/lostpassword.tpl: -------------------------------------------------------------------------------- 1 |
    2 |

    3 |

    {ResetPass}
    {servername}

    4 |
    5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
    {PassForm}
    {TextPass1} {servername} {TextPass2}
    {email}:
    18 |
    19 |
    -------------------------------------------------------------------------------- /game/topmenu.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/includes/functions/BuildingSaveUserRecord.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templates/Redesigned/search_user_row.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | {username} 4 | {write_a_messege} {buddy_request} 5 | {ally_name} 6 | {planet_name} 7 | {coordinated} 8 | {position} 9 | 10 | 11 | -------------------------------------------------------------------------------- /game/includes/userconstants.php: -------------------------------------------------------------------------------- 1 | 18 | -------------------------------------------------------------------------------- /game/templates/Redesigned/info_buildings_table.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 16 | 17 | 27 | 28 | 29 |
    {name}
    7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
    {description}
    15 |
    18 |
    19 | 20 | 21 | {table_head} 22 | {table_data} 23 | 24 |
    25 |
    26 |
    -------------------------------------------------------------------------------- /game/write.php: -------------------------------------------------------------------------------- 1 | S F Y"); 19 | 20 | echo AddUniToLinks(parsetemplate(gettemplate('network/write'), $parse)); 21 | 22 | ?> -------------------------------------------------------------------------------- /game/css/ECOTree.css: -------------------------------------------------------------------------------- 1 | .maingroup { 2 | position: absolute; 3 | width: 980px; 4 | height: 570px; 5 | overflow: scroll; 6 | } 7 | 8 | .maindiv { 9 | position: relative; 10 | width: 980px; 11 | height: 570px; 12 | overflow: scroll; 13 | } 14 | 15 | .econode { 16 | position: absolute; 17 | text-overflow: clip; 18 | font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; 19 | font-size: xx-small; 20 | padding: 2px; 21 | } 22 | 23 | a.ecolink:visited { 24 | text-decoration: none; 25 | color: black; 26 | } 27 | 28 | a.ecolink:hover { 29 | text-decoration: underline; 30 | } -------------------------------------------------------------------------------- /game/templates/Redesigned/serv_infos.tpl: -------------------------------------------------------------------------------- 1 | 2 | {lm_ifo_game} 3 | x {lm_tx_game} 4 | 5 | 6 | {lm_ifo_fleet} 7 | x {lm_tx_fleet} 8 | 9 | 10 | {lm_ifo_serv} 11 | x {lm_tx_serv} 12 | 13 | 14 | {lm_ifo_queue} 15 | {lm_tx_queue} 16 | -------------------------------------------------------------------------------- /game/iframe.php: -------------------------------------------------------------------------------- 1 | $val){ $get .= "&".$key."=".$val; } 4 | $get = substr_replace($get,'',1,1); 5 | 6 | if($_GET['iheight'] > 0){ 7 | $height = $_GET['iheight']; 8 | }else{ 9 | $height = '100%'; 10 | } 11 | ?> 12 | 13 | 14 | IFrame 15 | 16 | 21 | 22 | 20 | 21 |
    22 |
    23 |
    24 | 25 | 26 | -------------------------------------------------------------------------------- /game/language/en/resources.mo: -------------------------------------------------------------------------------- 1 | Resource settings on planet "%s"'; 12 | $lang['Production_level'] = 'Production factor'; 13 | $lang['Basic_income'] = 'Basic Income'; 14 | $lang['quantity'] = 'Total'; 15 | $lang['level'] = 'Level'; 16 | $lang['Stores_capacity'] = 'Storage Capacity'; 17 | $lang['Widespread_production'] = 'Widespread Production'; 18 | $lang['Daily'] = 'Daily'; 19 | $lang['Weekly'] = 'Weekly'; 20 | $lang['Monthly'] = 'Monthly'; 21 | $lang['Storage_state'] = 'Storage state'; 22 | $lang['Calcule'] = 'Calculate'; 23 | $lang['Recalc'] = 'Recalculate'; 24 | $lang['o/o'] = '%'; 25 | $lang['k'] = 'k'; 26 | 27 | $lang['hourly'] = 'Total per hour:'; 28 | $lang['dayly'] = 'Total per day:'; 29 | $lang['weekly'] = 'Total per week:'; 30 | $lang['monthly'] = 'Total per month:'; 31 | 32 | ?> -------------------------------------------------------------------------------- /game/templates/Redesigned/alliance_admin_members_table.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | {memberslist} 18 | 19 | 20 | 21 |
    {Members_list} ({Ammount}: {memberzahl})
    {Number}{Name} {Position}{Points}{Coordinated}{Member_from}Inaktiv seitFunktionen
    {Return_to_overview}
    22 | 23 | -------------------------------------------------------------------------------- /game/templates/Redesigned/changelog_body.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 4 | 5 | 6 | 24 | 25 |
    7 | 8 | 9 | 10 |
    11 |

    {Changelog}


    12 |

    {Version} {version_no}


    13 | 14 | 15 | 16 | 17 | 18 | 19 | {body} 20 | 21 |
    {Version}{Description}
    22 |
    23 |
    26 | 27 | 28 |
    29 |

    30 | 31 | -------------------------------------------------------------------------------- /game/language/en/contact.mo: -------------------------------------------------------------------------------- 1 | 18 | # Copyright � 2005 - 2008 KGsystem 19 | ############################################################################# 20 | */ 21 | $lang['ctc_title'] = "Contact"; 22 | $lang['ctc_intro'] = "If for some reason you cannot use the forum then you can use the emails below to contact us."; 23 | $lang['ctc_name'] = "Name"; 24 | $lang['ctc_rank'] = "Rank"; 25 | $lang['ctc_mail'] = "e-Mail"; 26 | $lang['user_level'][1] = "Game Operator"; 27 | $lang['user_level'][2] = "Administrator"; 28 | $lang['user_level'][3] = "Developer"; 29 | 30 | 31 | ?> 32 | -------------------------------------------------------------------------------- /game/language/en/records.mo: -------------------------------------------------------------------------------- 1 | 17 | # Copyright � 2005 - 2008 KGsystem 18 | ############################################################################# 19 | */ 20 | //Records 21 | //Title 22 | $lang['rec_title'] = "Records"; 23 | 24 | $lang['rec_build'] = "Buildings"; 25 | $lang['rec_specb'] = "lunar Buildings"; 26 | $lang['rec_playe'] = "Player"; 27 | $lang['rec_defes'] = "Defense"; 28 | $lang['rec_fleet'] = "Fleet"; 29 | $lang['rec_techn'] = "Technology"; 30 | $lang['rec_level'] = "Level"; 31 | $lang['rec_nbre'] = "Number"; 32 | $lang['rec_rien'] = "0"; 33 | ?> 34 | -------------------------------------------------------------------------------- /game/admin/old/unbanned.php: -------------------------------------------------------------------------------- 1 | = "2") { 19 | 20 | $parse['dpath'] = $dpath; 21 | $parse = $lang; 22 | 23 | $mode = $_GET['mode']; 24 | 25 | if ($mode != 'change') { 26 | $parse['Name'] = "Nom du joueur"; 27 | } elseif ($mode == 'change') { 28 | $nam = $_POST['nam']; 29 | doquery("DELETE FROM {{table}} WHERE who2='{$nam}'", 'banned'); 30 | doquery("UPDATE {{table}} SET bana=0, banaday=0 WHERE username='{$nam}'", "users"); 31 | message("Le joueur {$nam} a bien été débanni!", 'Information'); 32 | } 33 | 34 | display(parsetemplate(gettemplate('admin/unbanned'), $parse), "Overview", false, '', true); 35 | } else { 36 | message( $lang['sys_noalloaw'], $lang['sys_noaccess'] ); 37 | } 38 | 39 | ?> -------------------------------------------------------------------------------- /ibox.2.2/license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008 iBegin 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /game/language/en/viewreport.mo: -------------------------------------------------------------------------------- 1 | 31 | -------------------------------------------------------------------------------- /game/scripts/time.js: -------------------------------------------------------------------------------- 1 | function HeureCheck() 2 | { 3 | krucial = new Date; 4 | heure = krucial.getHours(); 5 | min = krucial.getMinutes(); 6 | sec = krucial.getSeconds(); 7 | jour = krucial.getDate(); 8 | mois = krucial.getMonth()+1; 9 | annee = krucial.getFullYear(); 10 | if (sec < 10) { sec0 = "0"; } 11 | else { sec0 = ""; } 12 | if (min < 10) { min0 = "0"; } 13 | else { min0 = ""; } 14 | if (heure < 10) { heure0 = "0"; } 15 | else { heure0 = ""; } 16 | if (mois < 10) { mois0 = "0"; } 17 | else { mois0 = ""; } 18 | if (jour < 10) { jour0 = "0"; } 19 | else { jour0 = ""; } 20 | if (annee < 10) { annee0 = "0"; } 21 | else { annee0 = ""; } 22 | DinaDate = "" + jour0 + jour + "/" + mois0 + mois + "/" + annee0 + annee; 23 | total = DinaDate 24 | DinaHeure = heure0 + heure + ":" + min0 + min + ":" + sec0 + sec; 25 | total = DinaHeure 26 | total = "Today is " + DinaDate + " | Current Time: " + DinaHeure + "."; 27 | document.getElementById("dateheure").innerHTML = total; 28 | tempo = setTimeout("HeureCheck()", 1000); 29 | } 30 | window.onload=HeureCheck; 31 | -------------------------------------------------------------------------------- /game/templates/Redesigned/admin/overview_rows.tpl: -------------------------------------------------------------------------------- 1 | 2 | {adm_ov_altpm} 3 | {adm_ov_data_name} ({usr_s_id}) 4 | 5 | 6 | 7 | {adm_ov_data_activ} 8 | 9 | 10 | 11 | 12 | 13 | 16 | {current_page} 17 | 18 | -------------------------------------------------------------------------------- /game/includes/functions/PlanetType.php: -------------------------------------------------------------------------------- 1 | 36 | -------------------------------------------------------------------------------- /game/reg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    5 | 6 |
    7 |
    8 | Join Now 9 |
    10 |
    11 |
    12 |
    13 | In order to play you only have to enter a username, a password and an E-Mail address and proceed to read the terms and conditions before activating the check box about your agreement to them. 14 |
    15 |

    16 |
    17 | 18 |
    19 |
    20 |
    21 |
    22 | 23 | 24 | -------------------------------------------------------------------------------- /game/scripts/display.js: -------------------------------------------------------------------------------- 1 | function setOpacity(obj, opacity) { 2 | opacity = (opacity == 100)?99.999:opacity; 3 | // IE/Win 4 | obj.style.filter = "alpha(opacity:"+opacity+")"; 5 | // Safari<1.2, Konqueror 6 | obj.style.KHTMLOpacity = opacity/100; 7 | // Older Firefox 8 | obj.style.MozOpacity = opacity/100; 9 | // Safari 1.2, newer Firefox, Chrome and Maxthon, CSS3 10 | obj.style.opacity = opacity/100; 11 | return; 12 | } 13 | 14 | function fadeIn(obj,opacity) { 15 | if (document.getElementById) { 16 | if (opacity <= 100) { 17 | setOpacity(document.getElementById(obj), opacity); 18 | opacity += 5; 19 | window.setTimeout("fadeIn('"+obj+"',"+opacity+")", 50); 20 | } 21 | } 22 | return; 23 | } 24 | 25 | function fadeOut(obj,opacity,hide) { 26 | if (document.getElementById) { 27 | if (opacity > 0) { 28 | setOpacity(document.getElementById(obj), opacity); 29 | opacity -= 5; 30 | window.setTimeout("fadeOut('"+obj+"',"+opacity+","+hide+")", 50); 31 | }else if(hide){ 32 | document.getElementById(obj).style.display = 'none'; 33 | } 34 | } 35 | return; 36 | } 37 | -------------------------------------------------------------------------------- /game/language/en/banned.mo: -------------------------------------------------------------------------------- 1 | 17 | # Copyright � 2005 - 2008 KGsystem 18 | ############################################################################# 19 | */ 20 | $lang['ban_title'] = "List of banned players"; 21 | $lang['ban_name'] = "Player Name"; 22 | $lang['ban_reason'] = "Reason"; 23 | $lang['ban_from'] = "Ban Date"; 24 | $lang['ban_to'] = "Banned Until"; 25 | $lang['ban_by'] = "Admin"; 26 | $lang['ban_untl'] = "Remaining"; 27 | $lang['ban_no'] = "There are no banned players"; 28 | $lang['ban_thereare'] = "There are"; 29 | $lang['ban_players'] = "banned players"; 30 | $lang['You_are_banned'] = 'You have been banned!'; 31 | ?> 32 | -------------------------------------------------------------------------------- /game/templates/Redesigned/emails/newcode.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 32 | 33 |
    4 |
    5 | 6 |
    7 | 8 |
    9 |
    10 | {mail_title}{game} 11 |
    12 |
    13 |
    14 | 15 |
    16 | {To} {username}
    17 | {request_code} 18 |
    19 |

    20 |
    21 | {validate_url}
    22 |
    23 |
    24 |
    25 |
    26 |
    27 | 28 | 29 | 30 |
    31 |
    -------------------------------------------------------------------------------- /game/templates/Redesigned/fleet/movement.tpl: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |

    {FleetManage} - {{planet}}

    4 |
    5 |
    6 |
    7 | 8 | 9 |
    10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | fleets: 1 / 2 19 | 20 | 21 | 22 | Expeditions: 0 / 0 23 | 24 | 25 | 26 | 27 |
    28 |
    29 | {fleets} 30 |
    31 |
    32 | 33 | -------------------------------------------------------------------------------- /game/templates/Redesigned/network/notes.tpl: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    4 |
    5 |
    6 |

    Messages

    7 |
    8 | 9 |
    10 |
    11 | 12 | {tabs} 13 | 14 |
    15 | 16 |
    17 | 18 |
    19 |

    20 | 25 | My notes ({count}) 26 | 27 |

    28 |
    29 |
    30 |
    31 |
    32 | {page} 33 | 34 |
    35 |
    36 | 37 |
    38 |
    39 |
    40 | 41 |
    42 |
    43 | -------------------------------------------------------------------------------- /game/templates/Redesigned/network/tabs.tpl: -------------------------------------------------------------------------------- 1 |
    2 | 7 | 8 | 12 | 13 | 17 | 18 | 19 |
    -------------------------------------------------------------------------------- /game/language/en/converter.mo: -------------------------------------------------------------------------------- 1 | 18 | # Copyright � 2005 - 2008 KGsystem 19 | ############################################################################# 20 | */ 21 | $lang['conv_title'] = "Combar Report Converter by MadnessRed"; 22 | $lang['conv_url'] = "http://madnessred.co.cc/"; 23 | 24 | $lang['ctc_intro'] = "If for some reason you cannot use the forum then you can use the emails below to contact us."; 25 | $lang['ctc_name'] = "Name"; 26 | $lang['ctc_rank'] = "Rank"; 27 | $lang['ctc_mail'] = "e-Mail"; 28 | $lang['user_level'][1] = "GameOperator"; 29 | $lang['user_level'][2] = "Administrator"; 30 | $lang['user_level'][3] = "Developer"; 31 | 32 | 33 | ?> 34 | -------------------------------------------------------------------------------- /game/admin/old/leftmenu.php: -------------------------------------------------------------------------------- 1 | 44 | --------------------------------------------------------------------------------