├── .gitignore ├── DLC.txt ├── Design.txt ├── Features.txt ├── README.md ├── achievement └── base.php ├── data ├── .gitignore ├── achievement.db_ ├── event │ ├── battle.db_ │ ├── event_common.db_ │ ├── festival.db_ │ ├── marathon.db_ │ └── notes_point.db_ ├── initialize_environment.sql ├── live.db_ ├── login_bonus_list.sql ├── scenario.db_ ├── subscenario.db_ └── unit.db_ ├── database_wrapper.php ├── dlc ├── cache │ └── .gitignore ├── data │ └── .gitignore ├── download.php └── sifemu.php ├── handlers └── login │ ├── authkey.php │ ├── login.php │ ├── startSetInvite.php │ ├── startUp.php │ └── startWithoutInvite.php ├── main.php ├── modules ├── achievement │ └── initialAccomplishedList.php ├── album │ └── albumAll.php ├── award │ ├── awardInfo.php │ └── set.php ├── background │ ├── backgroundInfo.php │ └── set.php ├── banner │ └── bannerList.php ├── battle │ └── battleInfo.php ├── common │ └── recoveryEnergy.php ├── download │ ├── additional.php │ ├── batch.php │ └── update.php ├── eventscenario │ ├── startup.php │ └── status.php ├── exchange │ └── itemInfo.php ├── festival │ └── festivalInfo.php ├── friend │ └── search.php ├── handover │ ├── exec.php │ └── start.php ├── include.card.php ├── include.deck.php ├── include.item.php ├── include.live.php ├── include.php ├── include.token.php ├── include.user.php ├── lbonus │ └── execute.php ├── live │ ├── deckList.php │ ├── gameover.php │ ├── liveStatus.php │ ├── partyList.php │ ├── play.php │ ├── reward.php │ └── schedule.php ├── login │ ├── topInfo.php │ ├── topInfoOnce.php │ ├── unitList.php │ └── unitSelect.php ├── marathon │ └── marathonInfo.php ├── navigation │ └── specialCutin.php ├── notice │ └── noticeMarquee.php ├── online │ └── info.php ├── payment │ ├── productList.php │ └── receipt.php ├── personalnotice │ ├── agree.php │ └── get.php ├── platformAccount │ ├── isConnectedLlAccount.php │ └── isConnectedPfAccount.php ├── profile │ ├── cardRanking.php │ ├── liveCnt.php │ └── profileInfo.php ├── ranking │ ├── eventLive.php │ └── eventPlayer.php ├── reward │ ├── open.php │ ├── openAll.php │ ├── rewardHistory.php │ └── rewardList.php ├── scenario │ ├── scenarioStatus.php │ └── startup.php ├── secretbox │ ├── all.php │ ├── multi.php │ ├── pon.php │ └── pon_mode │ │ ├── multi_loveca.php │ │ ├── pon_coupon.php │ │ └── pon_loveca.php ├── subscenario │ ├── startup.php │ └── subscenarioStatus.php ├── tos │ ├── tosAgree.php │ └── tosCheck.php ├── tutorial │ ├── progress.php │ └── skip.php ├── unit │ ├── deck.php │ ├── deckInfo.php │ ├── merge.php │ ├── rankUp.php │ └── unitAll.php └── user │ ├── changeName.php │ ├── showAllItem.php │ └── userInfo.php ├── resources ├── css1.3 │ ├── bstyle.css │ ├── news.css │ └── regulation.css ├── img │ ├── help │ │ ├── bg01.png │ │ ├── bg01_01.png │ │ ├── bg01_maint.png │ │ ├── bg02.png │ │ ├── bg03.png │ │ ├── bug_trans.png │ │ ├── com_button_01.png │ │ ├── com_button_01se.png │ │ ├── new.png │ │ ├── news_bg01.png │ │ ├── tab2_off.png │ │ ├── tab2_on.png │ │ ├── tab_off.png │ │ └── tab_on.png │ ├── npps_logo.png │ └── online │ │ ├── com_button_01.png │ │ ├── com_button_02.png │ │ ├── e_ol_99_01.png │ │ ├── e_ol_99_02.png │ │ └── e_ol_99_03.png ├── js1.0 │ └── tab.js └── maintenace │ └── maintenance.php ├── system ├── Parsedown.php ├── add_announcement.php ├── convert_beatmap.php └── preload_package.php ├── webview.php └── webview ├── announce ├── detail.php └── index.php ├── secretbox ├── bt_view.php ├── honor_view.php └── view_id0.php ├── static ├── 1.html ├── 13.html ├── 56.html ├── 57.html └── index.php └── tos └── read.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/.gitignore -------------------------------------------------------------------------------- /DLC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/DLC.txt -------------------------------------------------------------------------------- /Design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/Design.txt -------------------------------------------------------------------------------- /Features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/Features.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/README.md -------------------------------------------------------------------------------- /achievement/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/achievement/base.php -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/achievement.db_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/achievement.db_ -------------------------------------------------------------------------------- /data/event/battle.db_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/event/battle.db_ -------------------------------------------------------------------------------- /data/event/event_common.db_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/event/event_common.db_ -------------------------------------------------------------------------------- /data/event/festival.db_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/event/festival.db_ -------------------------------------------------------------------------------- /data/event/marathon.db_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/event/marathon.db_ -------------------------------------------------------------------------------- /data/event/notes_point.db_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/event/notes_point.db_ -------------------------------------------------------------------------------- /data/initialize_environment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/initialize_environment.sql -------------------------------------------------------------------------------- /data/live.db_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/live.db_ -------------------------------------------------------------------------------- /data/login_bonus_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/login_bonus_list.sql -------------------------------------------------------------------------------- /data/scenario.db_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/scenario.db_ -------------------------------------------------------------------------------- /data/subscenario.db_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/subscenario.db_ -------------------------------------------------------------------------------- /data/unit.db_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/data/unit.db_ -------------------------------------------------------------------------------- /database_wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/database_wrapper.php -------------------------------------------------------------------------------- /dlc/cache/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip -------------------------------------------------------------------------------- /dlc/data/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt -------------------------------------------------------------------------------- /dlc/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/dlc/download.php -------------------------------------------------------------------------------- /dlc/sifemu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/dlc/sifemu.php -------------------------------------------------------------------------------- /handlers/login/authkey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/handlers/login/authkey.php -------------------------------------------------------------------------------- /handlers/login/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/handlers/login/login.php -------------------------------------------------------------------------------- /handlers/login/startSetInvite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/handlers/login/startSetInvite.php -------------------------------------------------------------------------------- /handlers/login/startUp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/handlers/login/startUp.php -------------------------------------------------------------------------------- /handlers/login/startWithoutInvite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/handlers/login/startWithoutInvite.php -------------------------------------------------------------------------------- /main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/main.php -------------------------------------------------------------------------------- /modules/achievement/initialAccomplishedList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/achievement/initialAccomplishedList.php -------------------------------------------------------------------------------- /modules/album/albumAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/album/albumAll.php -------------------------------------------------------------------------------- /modules/award/awardInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/award/awardInfo.php -------------------------------------------------------------------------------- /modules/award/set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/award/set.php -------------------------------------------------------------------------------- /modules/background/backgroundInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/background/backgroundInfo.php -------------------------------------------------------------------------------- /modules/background/set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/background/set.php -------------------------------------------------------------------------------- /modules/banner/bannerList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/banner/bannerList.php -------------------------------------------------------------------------------- /modules/battle/battleInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/battle/battleInfo.php -------------------------------------------------------------------------------- /modules/common/recoveryEnergy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/common/recoveryEnergy.php -------------------------------------------------------------------------------- /modules/download/additional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/download/additional.php -------------------------------------------------------------------------------- /modules/download/batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/download/batch.php -------------------------------------------------------------------------------- /modules/download/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/download/update.php -------------------------------------------------------------------------------- /modules/eventscenario/startup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/eventscenario/startup.php -------------------------------------------------------------------------------- /modules/eventscenario/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/eventscenario/status.php -------------------------------------------------------------------------------- /modules/exchange/itemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/exchange/itemInfo.php -------------------------------------------------------------------------------- /modules/festival/festivalInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/festival/festivalInfo.php -------------------------------------------------------------------------------- /modules/friend/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/friend/search.php -------------------------------------------------------------------------------- /modules/handover/exec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/handover/exec.php -------------------------------------------------------------------------------- /modules/handover/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/handover/start.php -------------------------------------------------------------------------------- /modules/include.card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/include.card.php -------------------------------------------------------------------------------- /modules/include.deck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/include.deck.php -------------------------------------------------------------------------------- /modules/include.item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/include.item.php -------------------------------------------------------------------------------- /modules/include.live.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/include.live.php -------------------------------------------------------------------------------- /modules/include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/include.php -------------------------------------------------------------------------------- /modules/include.token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/include.token.php -------------------------------------------------------------------------------- /modules/include.user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/include.user.php -------------------------------------------------------------------------------- /modules/lbonus/execute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/lbonus/execute.php -------------------------------------------------------------------------------- /modules/live/deckList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/live/deckList.php -------------------------------------------------------------------------------- /modules/live/gameover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/live/gameover.php -------------------------------------------------------------------------------- /modules/live/liveStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/live/liveStatus.php -------------------------------------------------------------------------------- /modules/live/partyList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/live/partyList.php -------------------------------------------------------------------------------- /modules/live/play.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/live/play.php -------------------------------------------------------------------------------- /modules/live/reward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/live/reward.php -------------------------------------------------------------------------------- /modules/live/schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/live/schedule.php -------------------------------------------------------------------------------- /modules/login/topInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/login/topInfo.php -------------------------------------------------------------------------------- /modules/login/topInfoOnce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/login/topInfoOnce.php -------------------------------------------------------------------------------- /modules/login/unitList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/login/unitList.php -------------------------------------------------------------------------------- /modules/login/unitSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/login/unitSelect.php -------------------------------------------------------------------------------- /modules/marathon/marathonInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/marathon/marathonInfo.php -------------------------------------------------------------------------------- /modules/navigation/specialCutin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/navigation/specialCutin.php -------------------------------------------------------------------------------- /modules/notice/noticeMarquee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/notice/noticeMarquee.php -------------------------------------------------------------------------------- /modules/online/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/online/info.php -------------------------------------------------------------------------------- /modules/payment/productList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/payment/productList.php -------------------------------------------------------------------------------- /modules/payment/receipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/payment/receipt.php -------------------------------------------------------------------------------- /modules/personalnotice/agree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/personalnotice/agree.php -------------------------------------------------------------------------------- /modules/personalnotice/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/personalnotice/get.php -------------------------------------------------------------------------------- /modules/platformAccount/isConnectedLlAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/platformAccount/isConnectedLlAccount.php -------------------------------------------------------------------------------- /modules/platformAccount/isConnectedPfAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/platformAccount/isConnectedPfAccount.php -------------------------------------------------------------------------------- /modules/profile/cardRanking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/profile/cardRanking.php -------------------------------------------------------------------------------- /modules/profile/liveCnt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/profile/liveCnt.php -------------------------------------------------------------------------------- /modules/profile/profileInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkEnergyProcessor/NPPS/HEAD/modules/profile/profileInfo.php -------------------------------------------------------------------------------- /modules/ranking/eventLive.php: -------------------------------------------------------------------------------- 1 |