├── .gitignore ├── DiscordBotSetup.md ├── FortBackend.sln ├── FortBackend ├── .config │ └── dotnet-tools.json ├── FortBackend.csproj ├── Properties │ └── launchSettings.json ├── README.md ├── Resources │ ├── Cache │ │ └── README.md │ ├── Certificates │ │ └── FortBackend.pfx.temp │ ├── Config.json │ ├── GameConfig.json │ ├── Image │ │ ├── BackPoster.jpg │ │ ├── LoadingScreen.png │ │ ├── Trans_Boykisser.png │ │ └── test.png │ ├── Ini │ │ ├── CloudDir │ │ │ ├── Chunks │ │ │ │ ├── 88363E1F7900C6FB_012995DF4891C30A1CE331B0EAB403B7.chunk │ │ │ │ └── D0325B15E575E1C3_78BFA09B41126FAE4621918D1446FBF7.chunk │ │ │ ├── FortBackend.chunk │ │ │ └── Full.ini │ │ ├── IniConfig.json │ │ ├── PlaylistData.json │ │ └── QosRegionManager.json │ └── Json │ │ ├── EulaTrackingFN.json │ │ ├── FN_PROD.json │ │ ├── Profiles │ │ ├── Banners │ │ │ ├── DefaultBanners.json │ │ │ └── DefaultColors.json │ │ ├── FullLocker.json │ │ └── default.json │ │ ├── Quests │ │ ├── Challenges │ │ │ ├── Season11 │ │ │ │ ├── BattlePass │ │ │ │ │ ├── QuestBundle_S11_AlterEgo.json │ │ │ │ │ ├── QuestBundle_S11_Discover.json │ │ │ │ │ └── QuestBundle_S11_Unfused.json │ │ │ │ └── Weekly │ │ │ │ │ ├── Week1.json │ │ │ │ │ ├── Week10.json │ │ │ │ │ ├── Week11.json │ │ │ │ │ ├── Week2.json │ │ │ │ │ ├── Week3.json │ │ │ │ │ ├── Week4.json │ │ │ │ │ ├── Week5.json │ │ │ │ │ ├── Week6.json │ │ │ │ │ ├── Week7.json │ │ │ │ │ ├── Week8.json │ │ │ │ │ └── Week9.json │ │ │ ├── Season12 │ │ │ │ ├── BattlePass │ │ │ │ │ ├── QuestBundle_S12_Donut_W1.json │ │ │ │ │ ├── QuestBundle_S12_Donut_W2.json │ │ │ │ │ ├── QuestBundle_S12_Donut_W3.json │ │ │ │ │ ├── QuestBundle_S12_Donut_W4.json │ │ │ │ │ ├── QuestBundle_S12_Donut_W5.json │ │ │ │ │ ├── QuestBundle_S12_Donut_W6.json │ │ │ │ │ ├── QuestBundle_S12_Donut_W7.json │ │ │ │ │ ├── QuestBundle_S12_Donut_W8.json │ │ │ │ │ ├── QuestBundle_S12_Donut_W9.json │ │ │ │ │ ├── QuestBundle_S12_SpyGames.json │ │ │ │ │ └── QuestBundle_Styles_PaperDoll.json │ │ │ │ └── Weekly │ │ │ │ │ ├── Week1.json │ │ │ │ │ ├── Week10.json │ │ │ │ │ ├── Week2.json │ │ │ │ │ ├── Week3.json │ │ │ │ │ ├── Week4.json │ │ │ │ │ ├── Week5.json │ │ │ │ │ ├── Week6.json │ │ │ │ │ ├── Week7.json │ │ │ │ │ ├── Week8.json │ │ │ │ │ └── Week9.json │ │ │ ├── Season3 │ │ │ │ ├── BattlePass │ │ │ │ │ ├── S3_Tier_100_QuestBundle.json │ │ │ │ │ └── S3_Tier_2_QuestBundle.json │ │ │ │ └── Weekly │ │ │ │ │ ├── Week1.json │ │ │ │ │ ├── Week10.json │ │ │ │ │ ├── Week2.json │ │ │ │ │ ├── Week3.json │ │ │ │ │ ├── Week4.json │ │ │ │ │ ├── Week5.json │ │ │ │ │ ├── Week6.json │ │ │ │ │ ├── Week7.json │ │ │ │ │ ├── Week8.json │ │ │ │ │ └── Week9.json │ │ │ ├── Season4 │ │ │ │ ├── BattlePass │ │ │ │ │ ├── QuestBundle_S4_Cumulative.json │ │ │ │ │ ├── QuestBundle_S4_ProgressiveA.json │ │ │ │ │ ├── QuestBundle_S4_ProgressiveB.json │ │ │ │ │ └── QuestBundle_S4_Starter.json │ │ │ │ └── Weekly │ │ │ │ │ ├── Week1.json │ │ │ │ │ ├── Week10.json │ │ │ │ │ ├── Week2.json │ │ │ │ │ ├── Week3.json │ │ │ │ │ ├── Week4.json │ │ │ │ │ ├── Week5.json │ │ │ │ │ ├── Week6.json │ │ │ │ │ ├── Week7.json │ │ │ │ │ ├── Week8.json │ │ │ │ │ └── Week9.json │ │ │ ├── Season5 │ │ │ │ ├── BattlePass │ │ │ │ │ ├── QuestBundle_S5_Cumulative.json │ │ │ │ │ ├── QuestBundle_S5_ProgressiveA.json │ │ │ │ │ └── QuestBundle_S5_ProgressiveB.json │ │ │ │ └── Weekly │ │ │ │ │ ├── Week1.json │ │ │ │ │ ├── Week10.json │ │ │ │ │ ├── Week2.json │ │ │ │ │ ├── Week3.json │ │ │ │ │ ├── Week4.json │ │ │ │ │ ├── Week5.json │ │ │ │ │ ├── Week6.json │ │ │ │ │ ├── Week7.json │ │ │ │ │ ├── Week8.json │ │ │ │ │ └── Week9.json │ │ │ ├── Season6 │ │ │ │ ├── BattlePass │ │ │ │ │ ├── QuestBundle_S6_Cumulative.json │ │ │ │ │ ├── QuestBundle_S6_ProgressiveA.json │ │ │ │ │ └── QuestBundle_S6_ProgressiveB.json │ │ │ │ └── Weekly │ │ │ │ │ ├── Week1.json │ │ │ │ │ ├── Week10.json │ │ │ │ │ ├── Week2.json │ │ │ │ │ ├── Week3.json │ │ │ │ │ ├── Week4.json │ │ │ │ │ ├── Week5.json │ │ │ │ │ ├── Week6.json │ │ │ │ │ ├── Week7.json │ │ │ │ │ ├── Week8.json │ │ │ │ │ └── Week9.json │ │ │ ├── Season7 │ │ │ │ ├── BattlePass │ │ │ │ │ ├── QuestBundle_S7_ArcticSniper.json │ │ │ │ │ ├── QuestBundle_S7_Cumulative.json │ │ │ │ │ ├── QuestBundle_S7_IceKing.json │ │ │ │ │ ├── QuestBundle_S7_NeonCat.json │ │ │ │ │ └── QuestBundle_S7_SgtWinter.json │ │ │ │ └── Weekly │ │ │ │ │ ├── Week1.json │ │ │ │ │ ├── Week10.json │ │ │ │ │ ├── Week2.json │ │ │ │ │ ├── Week3.json │ │ │ │ │ ├── Week4.json │ │ │ │ │ ├── Week5.json │ │ │ │ │ ├── Week6.json │ │ │ │ │ ├── Week7.json │ │ │ │ │ ├── Week8.json │ │ │ │ │ └── Week9.json │ │ │ ├── Season8 │ │ │ │ ├── BattlePass │ │ │ │ │ ├── QuestBundle_S8_Cumulative.json │ │ │ │ │ ├── QuestBundle_S8_Cumulative_Ruin.json │ │ │ │ │ ├── QuestBundle_S8_DragonNinja.json │ │ │ │ │ ├── QuestBundle_S8_Pirate.json │ │ │ │ │ └── QuestBundle_S8_Shiny.json │ │ │ │ └── Weekly │ │ │ │ │ ├── Week1.json │ │ │ │ │ ├── Week10.json │ │ │ │ │ ├── Week2.json │ │ │ │ │ ├── Week3.json │ │ │ │ │ ├── Week4.json │ │ │ │ │ ├── Week5.json │ │ │ │ │ ├── Week6.json │ │ │ │ │ ├── Week7.json │ │ │ │ │ ├── Week8.json │ │ │ │ │ └── Week9.json │ │ │ └── Season9 │ │ │ │ ├── BattlePass │ │ │ │ ├── QuestBundle_S9_Architect.json │ │ │ │ ├── QuestBundle_S9_BattleSuit.json │ │ │ │ ├── QuestBundle_S9_BountyHunter.json │ │ │ │ ├── QuestBundle_S9_BunkerMan.json │ │ │ │ ├── QuestBundle_S9_Cumulative.json │ │ │ │ ├── QuestBundle_S9_Fortbyte.json │ │ │ │ ├── QuestBundle_S9_Masako.json │ │ │ │ ├── QuestBundle_S9_Rooster.json │ │ │ │ ├── QuestBundle_S9_StormTracker.json │ │ │ │ └── QuestBundle_S9_StrawberryPilot.json │ │ │ │ └── Weekly │ │ │ │ ├── Week1.json │ │ │ │ ├── Week10.json │ │ │ │ ├── Week2.json │ │ │ │ ├── Week3.json │ │ │ │ ├── Week4.json │ │ │ │ ├── Week5.json │ │ │ │ ├── Week6.json │ │ │ │ ├── Week7.json │ │ │ │ ├── Week8.json │ │ │ │ └── Week9.json │ │ └── DailyQuests │ │ │ ├── Chapter 1 │ │ │ ├── Season1 │ │ │ │ ├── AthenaDailyQuest_InteractAmmoCrate.json │ │ │ │ ├── AthenaDailyQuest_InteractTreasureChest.json │ │ │ │ ├── AthenaDailyQuest_PlayerElimination.json │ │ │ │ ├── AthenaDailyQuest_PlayerEliminationAssaultRifles.json │ │ │ │ ├── AthenaDailyQuest_PlayerEliminationPistols.json │ │ │ │ ├── AthenaDailyQuest_PlayerEliminationSMGs.json │ │ │ │ ├── AthenaDailyQuest_PlayerEliminationShotguns.json │ │ │ │ ├── AthenaDailyQuest_PlayerEliminationSniperRifles.json │ │ │ │ ├── AthenaDaily_Outlive.json │ │ │ │ ├── AthenaDaily_Outlive_Solo.json │ │ │ │ ├── AthenaDaily_Outlive_Squad.json │ │ │ │ ├── AthenaDaily_PlayMatches.json │ │ │ │ ├── AthenaDaily_Solo_Top25.json │ │ │ │ └── AthenaDaily_Squad_Top6.json │ │ │ └── SeasonsAbove │ │ │ │ ├── AthenaDailyQuest_InteractAmmoCrate.json │ │ │ │ ├── AthenaDailyQuest_InteractTreasureChest.json │ │ │ │ ├── AthenaDailyQuest_PlayerElimination.json │ │ │ │ ├── AthenaDailyQuest_PlayerEliminationAssaultRifles.json │ │ │ │ ├── AthenaDailyQuest_PlayerEliminationPistols.json │ │ │ │ ├── AthenaDailyQuest_PlayerEliminationSMGs.json │ │ │ │ ├── AthenaDailyQuest_PlayerEliminationShotguns.json │ │ │ │ ├── AthenaDailyQuest_PlayerEliminationSniperRifles.json │ │ │ │ ├── AthenaDaily_Friend.json │ │ │ │ ├── AthenaDaily_Outlive.json │ │ │ │ ├── AthenaDaily_Outlive_Solo.json │ │ │ │ ├── AthenaDaily_Outlive_Squad.json │ │ │ │ ├── AthenaDaily_PlayMatches.json │ │ │ │ ├── AthenaDaily_Solo_Top25.json │ │ │ │ ├── AthenaDaily_Solo_Top50.json │ │ │ │ ├── AthenaDaily_Squad_Top12.json │ │ │ │ └── AthenaDaily_Squad_Top6.json │ │ │ └── Chapter 2 │ │ │ ├── Season11 │ │ │ ├── Quest_S11_Daily_ApplyShields.json │ │ │ ├── Quest_S11_Daily_CatchFish.json │ │ │ ├── Quest_S11_Daily_CatchItem_Lazy.json │ │ │ ├── Quest_S11_Daily_CatchItem_Slurpy.json │ │ │ ├── Quest_S11_Daily_CatchItem_Sweaty.json │ │ │ ├── Quest_S11_Daily_CatchWeapon.json │ │ │ ├── Quest_S11_Daily_Damage.json │ │ │ ├── Quest_S11_Daily_Damage_Explosive.json │ │ │ ├── Quest_S11_Daily_Damage_Pickaxe.json │ │ │ ├── Quest_S11_Daily_Damage_Rare.json │ │ │ ├── Quest_S11_Daily_Damage_SMG.json │ │ │ ├── Quest_S11_Daily_Damage_Scoped.json │ │ │ ├── Quest_S11_Daily_Damage_Structure.json │ │ │ ├── Quest_S11_Daily_Damage_Uncommon.json │ │ │ ├── Quest_S11_Daily_Damage_Vehicle.json │ │ │ ├── Quest_S11_Daily_Damage_VeryRare.json │ │ │ ├── Quest_S11_Daily_Elim.json │ │ │ ├── Quest_S11_Daily_FishingExplosive.json │ │ │ ├── Quest_S11_Daily_FishingHarpoon.json │ │ │ ├── Quest_S11_Daily_FishingRod.json │ │ │ ├── Quest_S11_Daily_GainHealth.json │ │ │ ├── Quest_S11_Daily_Harvest_Brick.json │ │ │ ├── Quest_S11_Daily_Harvest_Metal.json │ │ │ ├── Quest_S11_Daily_Harvest_Wood.json │ │ │ ├── Quest_S11_Daily_HitWeakpoints.json │ │ │ ├── Quest_S11_Daily_Outlast_SoloDuo.json │ │ │ ├── Quest_S11_Daily_Outlast_SoloSquad.json │ │ │ ├── Quest_S11_Daily_PickUp_EachRarity.json │ │ │ ├── Quest_S11_Daily_PickUp_Legendary_DifferentMatches.json │ │ │ ├── Quest_S11_Daily_Placement_SoloDuo.json │ │ │ ├── Quest_S11_Daily_Placement_SoloSquad.json │ │ │ ├── Quest_S11_Daily_Placement_TeamRumble.json │ │ │ ├── Quest_S11_Daily_PlayMatches.json │ │ │ ├── Quest_S11_Daily_PlayMatchesFriend.json │ │ │ ├── Quest_S11_Daily_Search_AmmoBoxes.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Craggy.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Dirty.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Frezy.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Holly.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Lazy.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Misty.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Pleasant.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Retail.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Salty.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Slurpy.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Steamy.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Sweaty.json │ │ │ ├── Quest_S11_Daily_Search_ChestAmmo_Weeping.json │ │ │ ├── Quest_S11_Daily_Search_Chests.json │ │ │ ├── Quest_S11_Daily_Search_SupplyDrops.json │ │ │ ├── Quest_S11_Daily_UseThrown_DifferentMatches.json │ │ │ └── Quest_S11_Daily_UseTrap_DifferentMatches.json │ │ │ ├── Season12 │ │ │ ├── Quest_S12_Daily_ApplyShields.json │ │ │ ├── Quest_S12_Daily_CatchFish.json │ │ │ ├── Quest_S12_Daily_CatchWeapon.json │ │ │ ├── Quest_S12_Daily_ConsumeForaged.json │ │ │ ├── Quest_S12_Daily_Damage.json │ │ │ ├── Quest_S12_Daily_Damage_Above.json │ │ │ ├── Quest_S12_Daily_Damage_Assault.json │ │ │ ├── Quest_S12_Daily_Damage_Below.json │ │ │ ├── Quest_S12_Daily_Damage_Explosive.json │ │ │ ├── Quest_S12_Daily_Damage_Pickaxe.json │ │ │ ├── Quest_S12_Daily_Damage_Pistol.json │ │ │ ├── Quest_S12_Daily_Damage_SMG.json │ │ │ ├── Quest_S12_Daily_Damage_Scoped.json │ │ │ ├── Quest_S12_Daily_Damage_Shotgun.json │ │ │ ├── Quest_S12_Daily_Damage_Sniper.json │ │ │ ├── Quest_S12_Daily_Damage_Structure.json │ │ │ ├── Quest_S12_Daily_Elim.json │ │ │ ├── Quest_S12_Daily_Elim_Close.json │ │ │ ├── Quest_S12_Daily_Elim_EachRarity.json │ │ │ ├── Quest_S12_Daily_Elim_Explosive.json │ │ │ ├── Quest_S12_Daily_Elim_Far.json │ │ │ ├── Quest_S12_Daily_Elim_NoADS.json │ │ │ ├── Quest_S12_Daily_Elim_Pistol.json │ │ │ ├── Quest_S12_Daily_Elim_SMG.json │ │ │ ├── Quest_S12_Daily_Elim_Shotgun.json │ │ │ ├── Quest_S12_Daily_Elim_Sniper.json │ │ │ ├── Quest_S12_Daily_FishingExplosive.json │ │ │ ├── Quest_S12_Daily_FishingHarpoon.json │ │ │ ├── Quest_S12_Daily_FishingRod.json │ │ │ ├── Quest_S12_Daily_GainHealth.json │ │ │ ├── Quest_S12_Daily_Harvest_Brick.json │ │ │ ├── Quest_S12_Daily_Harvest_Metal.json │ │ │ ├── Quest_S12_Daily_Harvest_Wood.json │ │ │ ├── Quest_S12_Daily_HitHeadshots.json │ │ │ ├── Quest_S12_Daily_HitWeakpoints.json │ │ │ ├── Quest_S12_Daily_PickUp_EachRarity.json │ │ │ ├── Quest_S12_Daily_PickUp_Legendary_DifferentMatches.json │ │ │ ├── Quest_S12_Daily_Search_AmmoBoxes.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Agency.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Craggy.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Dirty.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Frenzy.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Grotto.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Holly.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Lazy.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Misty.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Pleasant.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Retail.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Rig.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Salty.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Shark.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Slurpy.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Steamy.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Sweaty.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Weeping.json │ │ │ ├── Quest_S12_Daily_Search_ChestAmmo_Yacht.json │ │ │ ├── Quest_S12_Daily_Search_Chests.json │ │ │ ├── Quest_S12_Daily_SurviveStormPhases.json │ │ │ ├── Quest_S12_Daily_UseThrown_DifferentMatches.json │ │ │ ├── Quest_S12_Daily_UseTrap_DifferentMatches.json │ │ │ └── Quest_S12_Daily_WeaponSpecialistAccolades.json │ │ │ └── Season13 │ │ │ ├── Quest_S13_Repeatable_CatchFish.json │ │ │ ├── Quest_S13_Repeatable_ConsumeForaged.json │ │ │ ├── Quest_S13_Repeatable_Damage.json │ │ │ ├── Quest_S13_Repeatable_Damage_Assault.json │ │ │ ├── Quest_S13_Repeatable_Damage_Explosive.json │ │ │ ├── Quest_S13_Repeatable_Damage_Pistol.json │ │ │ ├── Quest_S13_Repeatable_Damage_SMG.json │ │ │ ├── Quest_S13_Repeatable_Damage_Scoped.json │ │ │ ├── Quest_S13_Repeatable_Damage_Shotgun.json │ │ │ ├── Quest_S13_Repeatable_Damage_Sniper.json │ │ │ ├── Quest_S13_Repeatable_Elim.json │ │ │ ├── Quest_S13_Repeatable_Elim_Assault.json │ │ │ ├── Quest_S13_Repeatable_Elim_Explosive.json │ │ │ ├── Quest_S13_Repeatable_Elim_Henchmen.json │ │ │ ├── Quest_S13_Repeatable_Elim_Marauders.json │ │ │ ├── Quest_S13_Repeatable_Elim_Pistol.json │ │ │ ├── Quest_S13_Repeatable_Elim_SMG.json │ │ │ ├── Quest_S13_Repeatable_Elim_Shotgun.json │ │ │ ├── Quest_S13_Repeatable_Elim_Sniper.json │ │ │ ├── Quest_S13_Repeatable_GoFishing.json │ │ │ ├── Quest_S13_Repeatable_Harvest.json │ │ │ ├── Quest_S13_Repeatable_Harvest_Metal.json │ │ │ ├── Quest_S13_Repeatable_Harvest_Stone.json │ │ │ ├── Quest_S13_Repeatable_Harvest_Wood.json │ │ │ ├── Quest_S13_Repeatable_HealthShieldMaxed.json │ │ │ ├── Quest_S13_Repeatable_HitWeakPoints.json │ │ │ ├── Quest_S13_Repeatable_LandNamedLoc.json │ │ │ ├── Quest_S13_Repeatable_Outlast.json │ │ │ ├── Quest_S13_Repeatable_Placement.json │ │ │ ├── Quest_S13_Repeatable_RideShark.json │ │ │ ├── Quest_S13_Repeatable_Search_AmmoBoxes.json │ │ │ ├── Quest_S13_Repeatable_Search_Chests.json │ │ │ ├── Quest_S13_Repeatable_Search_SupplyDrop.json │ │ │ ├── Quest_S13_Repeatable_SidegradeWeapon.json │ │ │ ├── Quest_S13_Repeatable_StormPhases.json │ │ │ ├── Quest_S13_Repeatable_UpgradeWeapon.json │ │ │ ├── Quest_S13_Repeatable_UseWhirlpool.json │ │ │ ├── Quest_S13_Repeatable_UseZipline.json │ │ │ ├── Quest_S13_Repeatable_Use_BandageMedkit.json │ │ │ ├── Quest_S13_Repeatable_Use_ShieldPot.json │ │ │ └── Quest_S13_Repeatable_VisitDifferentNamedLocs.json │ │ ├── SdkDefault.json │ │ ├── Season │ │ ├── Season1 │ │ │ ├── SeasonBP.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season10 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonBP.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season11 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season12 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season15 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season2 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonBP.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season3 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonBP.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season4 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonBP.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season5 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonBP.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season6 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonBP.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season7 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonBP.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Season8 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonBP.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ └── Season9 │ │ │ ├── BattlePass.json │ │ │ ├── SeasonBP.json │ │ │ ├── SeasonFreeBattlepass.json │ │ │ ├── SeasonPaidBattlepass.json │ │ │ └── SeasonXP.json │ │ ├── Timeline.json │ │ ├── content.json │ │ ├── discovery.json │ │ ├── discoveryassets.json │ │ ├── epicsettings.json │ │ ├── keychain.json │ │ ├── livefn.json │ │ ├── ph.json │ │ ├── shop │ │ ├── battlepass.json │ │ ├── bundles.json │ │ ├── christmas │ │ │ └── christmas.json │ │ ├── easter │ │ │ └── easter.json │ │ ├── emotes.json │ │ ├── gliders.json │ │ ├── halloween.json │ │ ├── lover.json │ │ ├── pickaxes.json │ │ ├── prices.json │ │ ├── saint.json │ │ ├── shop.json │ │ ├── skins.json │ │ ├── soccer.json │ │ ├── special │ │ │ └── SeasonShop.json │ │ ├── summer │ │ │ └── summer.json │ │ ├── travis.json │ │ └── wrap.json │ │ ├── spark-tracks.json │ │ ├── templates │ │ ├── Arena.json │ │ ├── Events.json │ │ └── Score.json │ │ └── test.json ├── appsettings.Development.json ├── appsettings.json └── src │ ├── App │ ├── Routes │ │ ├── ADMIN │ │ │ ├── AdminCashCup.cs │ │ │ ├── DashboardConfigController.cs │ │ │ ├── DashboardContentController.cs │ │ │ ├── DashboardPanelController.cs │ │ │ ├── DashboardRestart.cs │ │ │ ├── HomeController.cs │ │ │ └── NewFolder │ │ │ │ ├── ContentController.cs │ │ │ │ └── ContentUpdate.cs │ │ ├── API │ │ │ ├── ApisController.cs │ │ │ ├── ContentController.cs │ │ │ ├── CreativeController.cs │ │ │ ├── EulatrackingController.cs │ │ │ ├── FortniteController.cs │ │ │ ├── LauncherController.cs │ │ │ └── PresenceController.cs │ │ ├── Accounts │ │ │ ├── AccountController.cs │ │ │ └── KillController.cs │ │ ├── CloudStorage │ │ │ ├── CloudDirController.cs │ │ │ └── CloudStorageController.cs │ │ ├── Development │ │ │ └── temp.cs │ │ ├── Friends │ │ │ ├── FriendController.cs │ │ │ └── PartyController.cs │ │ ├── Launcher Apis │ │ │ ├── LauncherController.cs │ │ │ └── LoginController.cs │ │ ├── Leaderboards │ │ │ └── StatsController.cs │ │ ├── Lightswitch │ │ │ └── LightSwitchController.cs │ │ ├── Matchmaker │ │ │ └── MatchmakerController.cs │ │ ├── Oauth │ │ │ ├── NewOauthController.cs │ │ │ └── OauthController.cs │ │ ├── Profile │ │ │ ├── McpController.cs │ │ │ └── McpControllers │ │ │ │ ├── BulkEquipBattleRoyaleCustomization.cs │ │ │ │ ├── ClientQuestLogin.cs │ │ │ │ ├── CopyCosmeticLoadout.cs │ │ │ │ ├── EquipBattleRoyaleCustomization.cs │ │ │ │ ├── FortRerollDailyQuest.cs │ │ │ │ ├── MarkItemSeen.cs │ │ │ │ ├── MarkNewQuestNotificationSent.cs │ │ │ │ ├── PurchaseCatalog │ │ │ │ ├── BP │ │ │ │ │ └── BattlePurchase.cs │ │ │ │ ├── PurchaseBattlepass.cs │ │ │ │ └── PurchaseItem.cs │ │ │ │ ├── PurchaseCatalogEntry.cs │ │ │ │ ├── QueryProfile.cs │ │ │ │ ├── QueryResponses │ │ │ │ ├── AthenaResponse.cs │ │ │ │ └── CommonCoreResponse.cs │ │ │ │ ├── RemoveGiftBox.cs │ │ │ │ ├── SetBattleRoyaleBanner.cs │ │ │ │ ├── SetCosmeticLockerSlot.cs │ │ │ │ ├── SetPartyAssistQuest.cs │ │ │ │ └── UpdateQuestClientObjectives.cs │ │ └── Storefront │ │ │ ├── Catalog.cs │ │ │ ├── KeychainApi.cs │ │ │ └── Timeline.cs │ ├── Service.cs │ ├── Utilities │ │ ├── ADMIN │ │ │ ├── DashboardConfigData.cs │ │ │ ├── EditAdmin.cs │ │ │ └── NewAdmin.cs │ │ ├── Constants │ │ │ └── PathConstants.cs │ │ ├── Discord │ │ │ ├── Discord.cs │ │ │ └── Helpers │ │ │ │ ├── RegisterCommands.cs │ │ │ │ ├── SlashCommand.cs │ │ │ │ └── command │ │ │ │ ├── Details.cs │ │ │ │ ├── PasswordUpdate.cs │ │ │ │ ├── create.cs │ │ │ │ ├── events.cs │ │ │ │ ├── test.cs │ │ │ │ └── who.cs │ │ ├── Helpers │ │ │ ├── BattlepassManagement │ │ │ │ ├── BattlePassRewards.cs │ │ │ │ ├── BattlepassManager.cs │ │ │ │ └── LevelUpdater.cs │ │ │ ├── Cached │ │ │ │ ├── CachedData.cs │ │ │ │ ├── CupCache.cs │ │ │ │ └── NewsManager.cs │ │ │ ├── CheckIP.cs │ │ │ ├── CreateAccount.cs │ │ │ ├── Grabber.cs │ │ │ ├── IniManager.cs │ │ │ ├── Middleware │ │ │ │ ├── AuthorizeTokenAttribute.cs │ │ │ │ ├── CacheMiddleware.cs │ │ │ │ ├── LoggerMiddleware.cs │ │ │ │ └── VerifyToken.cs │ │ │ ├── QuestsManagement │ │ │ │ ├── BattlePassLevelUp.cs │ │ │ │ ├── QuestClaimer.cs │ │ │ │ ├── QuestDataHandler.cs │ │ │ │ └── QuestsDealer.cs │ │ │ ├── UpdateLeaderBoard.cs │ │ │ └── UserManagement │ │ │ │ ├── BanAndWebHooks.cs │ │ │ │ ├── TempBanAndWebHooks.cs │ │ │ │ └── UnbanAndWebhooks.cs │ │ ├── MongoDB │ │ │ ├── Helpers │ │ │ │ ├── Attribute.cs │ │ │ │ ├── CreateBlank.cs │ │ │ │ ├── GrabAdminData.cs │ │ │ │ ├── GrabData.cs │ │ │ │ ├── Handlers.cs │ │ │ │ └── SaveData.cs │ │ │ ├── Management │ │ │ │ └── CreateAccount.cs │ │ │ └── MongoDB.cs │ │ ├── ProcessExit.cs │ │ ├── Quests │ │ │ ├── DailyQuestsManager.cs │ │ │ └── WeeklyQuestManager.cs │ │ ├── Saved │ │ │ ├── CachedAdminData.cs │ │ │ └── Config.cs │ │ ├── Shop │ │ │ ├── GenerateShop.cs │ │ │ ├── Helpers │ │ │ │ ├── DiscordWebsocket.cs │ │ │ │ ├── Generate.cs │ │ │ │ └── Generator.cs │ │ │ ├── LoadShopCache.cs │ │ │ └── UpdateShopBundle.cs │ │ └── Startup.cs │ └── XMPP Server │ │ ├── Helpers │ │ └── Globals │ │ │ └── Data │ │ │ └── DataSaved_TCP.cs │ │ ├── TCP │ │ ├── Handle.cs │ │ └── TcpServer.cs │ │ ├── XMPP │ │ └── XmppServer.cs │ │ └── Xmpp.cs │ ├── Program.cs │ └── XMPP │ ├── Data │ ├── DataSaved_TCP.cs │ └── GlobalData.cs │ └── SERVER │ ├── ClientFix.cs │ ├── Handle.cs │ ├── KillGame.cs │ ├── Root │ ├── AuthHandler.cs │ ├── IqHandler.cs │ ├── Login.cs │ ├── MessageHandler.cs │ ├── OpenHandler.cs │ └── PresenceHandler.cs │ └── Send │ ├── Client.cs │ └── XmppFriend.cs ├── FortDashboard ├── .env ├── .gitignore ├── README.md ├── app │ ├── dashboard │ │ ├── admin-panel │ │ │ └── page.tsx │ │ ├── content │ │ │ ├── ini │ │ │ │ └── page.tsx │ │ │ ├── management │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── sidebar.tsx │ ├── globals.css │ ├── layout.tsx │ ├── login │ │ └── page.tsx │ ├── not-found.tsx │ └── page1.tsx ├── bun.lockb ├── components.json ├── components │ ├── theme-provider.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ ├── use-mobile.tsx │ │ └── use-toast.ts ├── hooks │ ├── use-mobile.tsx │ ├── use-toast.ts │ └── useUserStore.ts ├── install.bat ├── lib │ ├── store.ts │ ├── userStore.ts │ └── utils.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public │ ├── placeholder-logo.png │ ├── placeholder-logo.svg │ ├── placeholder-user.jpg │ ├── placeholder.jpg │ └── placeholder.svg ├── run-npm.bat ├── run-server.bat ├── run.bat ├── tsconfig.json └── update.bat ├── FortHoster ├── FortHoster.sln ├── FortHoster │ ├── FortHoster.csproj │ ├── Resources │ │ └── Config.json │ └── src │ │ ├── Classes │ │ ├── ConfigC.cs │ │ ├── LaunchClass.cs │ │ └── MessageClass.cs │ │ ├── Host │ │ ├── Helpers │ │ │ ├── FakeAC.cs │ │ │ ├── Freeze.cs │ │ │ ├── Inject.cs │ │ │ └── PSBasic.cs │ │ └── Launch.cs │ │ └── Program.cs └── README.md ├── FortLauncher ├── FortLauncherV2 │ ├── .editorconfig │ ├── .env │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc.yaml │ ├── README.md │ ├── TODO.md │ ├── bun.lock │ ├── dev-app-update.yml │ ├── electron-builder.yml │ ├── electron.vite.config.ts │ ├── install.bat │ ├── obfuscate.js │ ├── package-lock.json │ ├── package.json │ ├── resources │ │ ├── dllinjector.node │ │ └── icon.png │ ├── src │ │ ├── _gameWorker.ts │ │ ├── backend │ │ │ ├── FortniteDetect.ts │ │ │ ├── IniConfig.ts │ │ │ ├── JsonConfig.ts │ │ │ ├── VersionSearcher.ts │ │ │ ├── electron-env.d.ts │ │ │ ├── index.ts │ │ │ ├── login.ts │ │ │ ├── preload.ts │ │ │ └── types │ │ │ │ └── AuthData.ts │ │ └── renderer │ │ │ ├── index.html │ │ │ ├── public │ │ │ └── assets │ │ │ │ ├── LoginImage.png │ │ │ │ └── vue.svg │ │ │ └── src │ │ │ ├── App.vue │ │ │ ├── components │ │ │ ├── Loading.vue │ │ │ ├── Login.vue │ │ │ ├── Main │ │ │ │ ├── Content │ │ │ │ │ ├── Home.vue │ │ │ │ │ ├── Library.vue │ │ │ │ │ └── Settings.vue │ │ │ │ ├── Dashboard.vue │ │ │ │ └── SideBar.vue │ │ │ └── Offline.vue │ │ │ ├── env.d.ts │ │ │ ├── main.ts │ │ │ ├── style.css │ │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── tsconfig.web.json │ ├── update-bun.bat │ └── update.bat └── README.md ├── FortLibrary ├── ConfigHelpers │ ├── ContentConfig.cs │ ├── DefaultValues.cs │ ├── FortConfig.cs │ ├── FortConfigMM.cs │ ├── FortGameConfig.cs │ ├── IniConfig.cs │ ├── ItemPricing.cs │ ├── PlaylistData.cs │ └── RegionManagerConfig.cs ├── Default │ └── DefaultAccount.cs ├── DiscordAuth.cs ├── Dynamics │ ├── BattlePass.cs │ ├── DailyQuests.cs │ ├── Dashboard │ │ ├── AdminDashboardRoles.cs │ │ └── AdminDataInfo.cs │ ├── Languages.cs │ ├── ReportUserClass.cs │ ├── SeasonBP.cs │ ├── SeasonXP.cs │ ├── StoreBattlepass.cs │ ├── Timeline.cs │ └── WeeklyQuests.cs ├── Encoders │ ├── Base64.cs │ ├── CryptoGen.cs │ ├── Generate.cs │ ├── GenerateAES.cs │ ├── Hex.cs │ ├── JWT.cs │ ├── JWTCLASS │ │ └── Token.cs │ └── RandomHash.cs ├── EpicResponses │ ├── Errors │ │ └── BaseError.cs │ ├── Fortnite │ │ ├── CloudstorageFile.cs │ │ ├── SavingCloudStorage.cs │ │ └── StatsBody.cs │ ├── FortniteServices │ │ ├── Content │ │ │ ├── BattleRoyaleNews.cs │ │ │ ├── BattleRoyaleNewsV2.cs │ │ │ ├── ContentJson.cs │ │ │ ├── Discovery.cs │ │ │ ├── DiscoveryAssets.cs │ │ │ ├── DynamicBackground.cs │ │ │ ├── EmergencyNotice.cs │ │ │ ├── EmergencyNoticeV2.cs │ │ │ ├── LoginMessage.cs │ │ │ ├── MnemonicC.cs │ │ │ ├── PlaylistInformation.cs │ │ │ ├── ShopCarousel.cs │ │ │ ├── ShopSections.cs │ │ │ ├── Tournamentinformation.cs │ │ │ └── motdTarget.cs │ │ └── Events │ │ │ ├── EventC.cs │ │ │ ├── ScoreC.cs │ │ │ └── TemplateC.cs │ ├── Friends │ │ ├── Invites.cs │ │ ├── PartiesC.cs │ │ ├── PatchPartiesC.cs │ │ ├── PatchPartyMeta.cs │ │ ├── PostJoinParty.cs │ │ ├── ProjectUserSearchC.cs │ │ └── RawSquadAssignment.cs │ ├── Leaderboard │ │ └── LeaderBoardData.cs │ ├── Lightswitch │ │ ├── LightSwitchData.cs │ │ └── launcherInfoDTO.cs │ ├── Matchmaker │ │ ├── HosterJ.cs │ │ ├── MMTicket.cs │ │ ├── MatchmakerTicket.cs │ │ └── Servers.cs │ ├── Oauth │ │ └── OauthToken.cs │ ├── Profile │ │ ├── BulkEquipBattleRoyaleCustomizationResponse.cs │ │ ├── CopyCosmeticLoadoutResponse.cs │ │ ├── EquipBattleRoyaleCustomizationRequest.cs │ │ ├── FortRerollDailyQuestReq.cs │ │ ├── MarkNewQuestNotificationSentRequest.cs │ │ ├── Mcp.cs │ │ ├── Purchases │ │ │ ├── MultiUpdateClass.cs │ │ │ └── PurchaseCatalogEntryRequest.cs │ │ ├── Query │ │ │ ├── Attributes │ │ │ │ ├── AthenaAttributes.cs │ │ │ │ └── CommonCoreAttributes.cs │ │ │ ├── Items │ │ │ │ ├── AthenaItem.cs │ │ │ │ ├── CommonCoreItem.cs │ │ │ │ ├── GiftCommonCoreItem.cs │ │ │ │ └── SandboxLoadout.cs │ │ │ ├── ProfileChange.cs │ │ │ ├── ProfileData.cs │ │ │ └── Stats.cs │ │ ├── Quests │ │ │ └── DailyQuests.cs │ │ ├── RemoveGiftBoxReq.cs │ │ ├── SetBattleRoyaleBannerReq.cs │ │ ├── SetCosmeticLockerSlotRequest.cs │ │ ├── SetPartyAssistQuestResponse.cs │ │ └── UpdateQuestClientObjectivesReq.cs │ └── Storefront │ │ ├── Catalog.cs │ │ ├── TimelineResponse.cs │ │ ├── catalogEntrie.cs │ │ └── catalogEntrieStore.cs ├── FortLibrary.csproj ├── Logger.cs ├── MongoDB │ ├── Attribute.cs │ ├── CreateAccountArg.cs │ └── Modules │ │ ├── Account.cs │ │ ├── AdminInfo.cs │ │ ├── StatsInfo.cs │ │ ├── StoreInfo.cs │ │ ├── User.cs │ │ └── UserFriends.cs ├── ProfileCacheEntry.cs ├── Shop │ ├── SavedData.cs │ ├── ShopBundles.cs │ └── ShopJson.cs └── XMPP │ ├── Clients.cs │ ├── DataSaved.cs │ ├── Members.cs │ ├── Parties.cs │ ├── PartyData.cs │ ├── Pings.cs │ ├── RoomsData.cs │ ├── ShittyXmppClass.cs │ └── TokenData.cs ├── FortMatchmaker ├── FortMatchmaker.csproj ├── Properties │ └── launchSettings.json ├── Resources │ ├── MMConfig.json │ └── json │ │ ├── server-hotfixes.json │ │ └── servers.json ├── appsettings.Development.json ├── appsettings.json └── src │ ├── App │ ├── Routes │ │ └── MatchmakeEndpoints.cs │ ├── Service.cs │ ├── Utilities │ │ ├── Classes │ │ │ └── MatchmakerData.cs │ │ ├── Config.cs │ │ ├── Constants │ │ │ └── PathConstants.cs │ │ ├── MongoDB │ │ │ ├── Helpers │ │ │ │ ├── Attribute.cs │ │ │ │ ├── CreateBlank.cs │ │ │ │ └── Handlers.cs │ │ │ └── MongoDB.cs │ │ └── Startup.cs │ └── WebSockets │ │ ├── Helpers │ │ ├── Breathe.cs │ │ ├── Messages.cs │ │ └── Server.cs │ │ ├── Modules │ │ └── JsonSavedData.cs │ │ ├── NewConnection.cs │ │ └── Roots │ │ └── Authorization.cs │ └── Program.cs ├── LICENSE ├── README.md ├── Setup.md ├── TestFiles ├── BattlePass.json ├── Data.json ├── Quest.json ├── QuestS13.json ├── README.md ├── SeasonStars.json ├── SingleQuest.json ├── gulp.js ├── index.js ├── package-lock.json ├── package.json ├── skins.json ├── test.js └── test.json ├── assets ├── DiscordStep1.png └── FORTBACKEND.png └── todo.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/.gitignore -------------------------------------------------------------------------------- /DiscordBotSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/DiscordBotSetup.md -------------------------------------------------------------------------------- /FortBackend.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend.sln -------------------------------------------------------------------------------- /FortBackend/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/.config/dotnet-tools.json -------------------------------------------------------------------------------- /FortBackend/FortBackend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/FortBackend.csproj -------------------------------------------------------------------------------- /FortBackend/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /FortBackend/README.md: -------------------------------------------------------------------------------- 1 | # FortBackend -------------------------------------------------------------------------------- /FortBackend/Resources/Cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Cache/README.md -------------------------------------------------------------------------------- /FortBackend/Resources/Certificates/FortBackend.pfx.temp: -------------------------------------------------------------------------------- 1 | PLEASE REPLACE THIS FILE WITH YOUR PFX AND REMOVE.TEMP -------------------------------------------------------------------------------- /FortBackend/Resources/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Config.json -------------------------------------------------------------------------------- /FortBackend/Resources/GameConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/GameConfig.json -------------------------------------------------------------------------------- /FortBackend/Resources/Image/BackPoster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Image/BackPoster.jpg -------------------------------------------------------------------------------- /FortBackend/Resources/Image/LoadingScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Image/LoadingScreen.png -------------------------------------------------------------------------------- /FortBackend/Resources/Image/Trans_Boykisser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Image/Trans_Boykisser.png -------------------------------------------------------------------------------- /FortBackend/Resources/Image/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Image/test.png -------------------------------------------------------------------------------- /FortBackend/Resources/Ini/CloudDir/Chunks/88363E1F7900C6FB_012995DF4891C30A1CE331B0EAB403B7.chunk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Ini/CloudDir/Chunks/88363E1F7900C6FB_012995DF4891C30A1CE331B0EAB403B7.chunk -------------------------------------------------------------------------------- /FortBackend/Resources/Ini/CloudDir/Chunks/D0325B15E575E1C3_78BFA09B41126FAE4621918D1446FBF7.chunk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Ini/CloudDir/Chunks/D0325B15E575E1C3_78BFA09B41126FAE4621918D1446FBF7.chunk -------------------------------------------------------------------------------- /FortBackend/Resources/Ini/CloudDir/FortBackend.chunk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Ini/CloudDir/FortBackend.chunk -------------------------------------------------------------------------------- /FortBackend/Resources/Ini/CloudDir/Full.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Ini/CloudDir/Full.ini -------------------------------------------------------------------------------- /FortBackend/Resources/Ini/IniConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Ini/IniConfig.json -------------------------------------------------------------------------------- /FortBackend/Resources/Ini/PlaylistData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Ini/PlaylistData.json -------------------------------------------------------------------------------- /FortBackend/Resources/Ini/QosRegionManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Ini/QosRegionManager.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/EulaTrackingFN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/EulaTrackingFN.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/FN_PROD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/FN_PROD.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Profiles/Banners/DefaultBanners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Profiles/Banners/DefaultBanners.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Profiles/Banners/DefaultColors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Profiles/Banners/DefaultColors.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Profiles/FullLocker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Profiles/FullLocker.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Profiles/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Profiles/default.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/BattlePass/QuestBundle_S11_AlterEgo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/BattlePass/QuestBundle_S11_AlterEgo.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/BattlePass/QuestBundle_S11_Discover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/BattlePass/QuestBundle_S11_Discover.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/BattlePass/QuestBundle_S11_Unfused.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/BattlePass/QuestBundle_S11_Unfused.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week1.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week10.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week11.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week2.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week3.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week4.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week5.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week7.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week8.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season11/Weekly/Week9.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W1.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W2.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W3.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W4.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W5.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W7.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W8.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_Donut_W9.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_SpyGames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_S12_SpyGames.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_Styles_PaperDoll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/BattlePass/QuestBundle_Styles_PaperDoll.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week1.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week10.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week2.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week3.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week4.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week5.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week7.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week8.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season12/Weekly/Week9.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/BattlePass/S3_Tier_100_QuestBundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/BattlePass/S3_Tier_100_QuestBundle.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/BattlePass/S3_Tier_2_QuestBundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/BattlePass/S3_Tier_2_QuestBundle.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week1.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week10.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week2.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week3.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week4.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week5.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week7.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week8.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season3/Weekly/Week9.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/BattlePass/QuestBundle_S4_Cumulative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/BattlePass/QuestBundle_S4_Cumulative.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/BattlePass/QuestBundle_S4_ProgressiveA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/BattlePass/QuestBundle_S4_ProgressiveA.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/BattlePass/QuestBundle_S4_ProgressiveB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/BattlePass/QuestBundle_S4_ProgressiveB.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/BattlePass/QuestBundle_S4_Starter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/BattlePass/QuestBundle_S4_Starter.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week1.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week10.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week2.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week3.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week4.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week5.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week7.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week8.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season4/Weekly/Week9.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/BattlePass/QuestBundle_S5_Cumulative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/BattlePass/QuestBundle_S5_Cumulative.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/BattlePass/QuestBundle_S5_ProgressiveA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/BattlePass/QuestBundle_S5_ProgressiveA.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/BattlePass/QuestBundle_S5_ProgressiveB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/BattlePass/QuestBundle_S5_ProgressiveB.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week1.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week10.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week2.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week3.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week4.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week5.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week7.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week8.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season5/Weekly/Week9.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/BattlePass/QuestBundle_S6_Cumulative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/BattlePass/QuestBundle_S6_Cumulative.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/BattlePass/QuestBundle_S6_ProgressiveA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/BattlePass/QuestBundle_S6_ProgressiveA.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/BattlePass/QuestBundle_S6_ProgressiveB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/BattlePass/QuestBundle_S6_ProgressiveB.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week1.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week10.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week2.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week3.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week4.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week5.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week7.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week8.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season6/Weekly/Week9.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/BattlePass/QuestBundle_S7_ArcticSniper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/BattlePass/QuestBundle_S7_ArcticSniper.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/BattlePass/QuestBundle_S7_Cumulative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/BattlePass/QuestBundle_S7_Cumulative.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/BattlePass/QuestBundle_S7_IceKing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/BattlePass/QuestBundle_S7_IceKing.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/BattlePass/QuestBundle_S7_NeonCat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/BattlePass/QuestBundle_S7_NeonCat.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/BattlePass/QuestBundle_S7_SgtWinter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/BattlePass/QuestBundle_S7_SgtWinter.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week1.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week10.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week2.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week3.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week4.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week5.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week7.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week8.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season7/Weekly/Week9.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/BattlePass/QuestBundle_S8_Cumulative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/BattlePass/QuestBundle_S8_Cumulative.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/BattlePass/QuestBundle_S8_Cumulative_Ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/BattlePass/QuestBundle_S8_Cumulative_Ruin.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/BattlePass/QuestBundle_S8_DragonNinja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/BattlePass/QuestBundle_S8_DragonNinja.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/BattlePass/QuestBundle_S8_Pirate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/BattlePass/QuestBundle_S8_Pirate.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/BattlePass/QuestBundle_S8_Shiny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/BattlePass/QuestBundle_S8_Shiny.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week1.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week10.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week2.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week3.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week4.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week5.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week7.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week8.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season8/Weekly/Week9.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_Architect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_Architect.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_BattleSuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_BattleSuit.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_BountyHunter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_BountyHunter.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_BunkerMan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_BunkerMan.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_Cumulative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_Cumulative.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_Fortbyte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_Fortbyte.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_Masako.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_Masako.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_Rooster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_Rooster.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_StormTracker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_StormTracker.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_StrawberryPilot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/BattlePass/QuestBundle_S9_StrawberryPilot.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week1.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week10.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week2.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week3.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week4.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week5.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week7.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week8.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/Challenges/Season9/Weekly/Week9.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_Outlive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_Outlive.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_Outlive_Solo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_Outlive_Solo.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_Outlive_Squad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_Outlive_Squad.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_PlayMatches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_PlayMatches.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_Solo_Top25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_Solo_Top25.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_Squad_Top6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/Season1/AthenaDaily_Squad_Top6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Friend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Friend.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Outlive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Outlive.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_PlayMatches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_PlayMatches.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Solo_Top25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Solo_Top25.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Solo_Top50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Solo_Top50.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Squad_Top12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Squad_Top12.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Squad_Top6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 1/SeasonsAbove/AthenaDaily_Squad_Top6.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_CatchFish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_CatchFish.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_CatchWeapon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_CatchWeapon.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_Damage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_Damage.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_Damage_Rare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_Damage_Rare.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_Damage_SMG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_Damage_SMG.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_Elim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_Elim.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_FishingRod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_FishingRod.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_GainHealth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_GainHealth.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_PlayMatches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season11/Quest_S11_Daily_PlayMatches.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_CatchFish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_CatchFish.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_CatchWeapon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_CatchWeapon.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Damage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Damage.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Damage_SMG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Damage_SMG.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_Close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_Close.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_Far.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_Far.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_NoADS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_NoADS.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_Pistol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_Pistol.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_SMG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_SMG.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_Sniper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_Elim_Sniper.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_FishingRod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_FishingRod.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_GainHealth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season12/Quest_S12_Daily_GainHealth.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season13/Quest_S13_Repeatable_Damage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season13/Quest_S13_Repeatable_Damage.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season13/Quest_S13_Repeatable_Elim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Quests/DailyQuests/Chapter 2/Season13/Quest_S13_Repeatable_Elim.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/SdkDefault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/SdkDefault.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season1/SeasonBP.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season1/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season1/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season1/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season1/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season10/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season10/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season10/SeasonBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season10/SeasonBP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season10/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season10/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season10/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season10/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season10/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season10/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season11/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season11/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season11/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season11/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season11/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season11/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season11/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season11/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season12/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season12/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season12/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season12/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season12/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season12/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season12/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season12/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season15/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season15/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season15/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season15/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season15/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season15/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season15/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season15/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season2/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season2/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season2/SeasonBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season2/SeasonBP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season2/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season2/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season2/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season2/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season2/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season2/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season3/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season3/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season3/SeasonBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season3/SeasonBP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season3/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season3/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season3/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season3/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season3/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season3/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season4/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season4/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season4/SeasonBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season4/SeasonBP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season4/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season4/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season4/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season4/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season4/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season4/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season5/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season5/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season5/SeasonBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season5/SeasonBP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season5/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season5/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season5/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season5/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season5/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season5/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season6/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season6/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season6/SeasonBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season6/SeasonBP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season6/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season6/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season6/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season6/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season6/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season6/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season7/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season7/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season7/SeasonBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season7/SeasonBP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season7/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season7/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season7/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season7/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season7/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season7/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season8/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season8/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season8/SeasonBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season8/SeasonBP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season8/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season8/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season8/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season8/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season8/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season8/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season9/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season9/BattlePass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season9/SeasonBP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season9/SeasonBP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season9/SeasonFreeBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season9/SeasonFreeBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season9/SeasonPaidBattlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season9/SeasonPaidBattlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Season/Season9/SeasonXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Season/Season9/SeasonXP.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/Timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/Timeline.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/content.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/discovery.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/discoveryassets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/discoveryassets.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/epicsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/epicsettings.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/keychain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/keychain.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/livefn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/livefn.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/ph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/ph.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/battlepass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/battlepass.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/bundles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/bundles.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/christmas/christmas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/christmas/christmas.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/easter/easter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/easter/easter.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/emotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/emotes.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/gliders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/gliders.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/halloween.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/halloween.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/lover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/lover.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/pickaxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/pickaxes.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/prices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/prices.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/saint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/saint.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/shop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/shop.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/skins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/skins.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/soccer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/soccer.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/special/SeasonShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/special/SeasonShop.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/summer/summer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/summer/summer.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/travis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/travis.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/shop/wrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/shop/wrap.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/spark-tracks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/spark-tracks.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/templates/Arena.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/templates/Arena.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/templates/Events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/templates/Events.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/templates/Score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/templates/Score.json -------------------------------------------------------------------------------- /FortBackend/Resources/Json/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/Resources/Json/test.json -------------------------------------------------------------------------------- /FortBackend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/appsettings.Development.json -------------------------------------------------------------------------------- /FortBackend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/appsettings.json -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/ADMIN/AdminCashCup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/ADMIN/AdminCashCup.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/ADMIN/DashboardConfigController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/ADMIN/DashboardConfigController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/ADMIN/DashboardContentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/ADMIN/DashboardContentController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/ADMIN/DashboardPanelController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/ADMIN/DashboardPanelController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/ADMIN/DashboardRestart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/ADMIN/DashboardRestart.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/ADMIN/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/ADMIN/HomeController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/ADMIN/NewFolder/ContentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/ADMIN/NewFolder/ContentController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/ADMIN/NewFolder/ContentUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/ADMIN/NewFolder/ContentUpdate.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/API/ApisController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/API/ApisController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/API/ContentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/API/ContentController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/API/CreativeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/API/CreativeController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/API/EulatrackingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/API/EulatrackingController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/API/FortniteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/API/FortniteController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/API/LauncherController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/API/LauncherController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/API/PresenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/API/PresenceController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Accounts/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Accounts/AccountController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Accounts/KillController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Accounts/KillController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/CloudStorage/CloudDirController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/CloudStorage/CloudDirController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/CloudStorage/CloudStorageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/CloudStorage/CloudStorageController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Development/temp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Development/temp.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Friends/FriendController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Friends/FriendController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Friends/PartyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Friends/PartyController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Launcher Apis/LauncherController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Launcher Apis/LauncherController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Launcher Apis/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Launcher Apis/LoginController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Leaderboards/StatsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Leaderboards/StatsController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Lightswitch/LightSwitchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Lightswitch/LightSwitchController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Matchmaker/MatchmakerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Matchmaker/MatchmakerController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Oauth/NewOauthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Oauth/NewOauthController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Oauth/OauthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Oauth/OauthController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpController.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/BulkEquipBattleRoyaleCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/BulkEquipBattleRoyaleCustomization.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/ClientQuestLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/ClientQuestLogin.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/CopyCosmeticLoadout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/CopyCosmeticLoadout.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/EquipBattleRoyaleCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/EquipBattleRoyaleCustomization.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/FortRerollDailyQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/FortRerollDailyQuest.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/MarkItemSeen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/MarkItemSeen.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/MarkNewQuestNotificationSent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/MarkNewQuestNotificationSent.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/PurchaseCatalog/BP/BattlePurchase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/PurchaseCatalog/BP/BattlePurchase.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/PurchaseCatalog/PurchaseBattlepass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/PurchaseCatalog/PurchaseBattlepass.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/PurchaseCatalog/PurchaseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/PurchaseCatalog/PurchaseItem.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/PurchaseCatalogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/PurchaseCatalogEntry.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/QueryProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/QueryProfile.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/QueryResponses/AthenaResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/QueryResponses/AthenaResponse.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/QueryResponses/CommonCoreResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/QueryResponses/CommonCoreResponse.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/RemoveGiftBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/RemoveGiftBox.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/SetBattleRoyaleBanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/SetBattleRoyaleBanner.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/SetCosmeticLockerSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/SetCosmeticLockerSlot.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/SetPartyAssistQuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/SetPartyAssistQuest.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Profile/McpControllers/UpdateQuestClientObjectives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Profile/McpControllers/UpdateQuestClientObjectives.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Storefront/Catalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Storefront/Catalog.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Storefront/KeychainApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Storefront/KeychainApi.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Routes/Storefront/Timeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Routes/Storefront/Timeline.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Service.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/ADMIN/DashboardConfigData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/ADMIN/DashboardConfigData.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/ADMIN/EditAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/ADMIN/EditAdmin.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/ADMIN/NewAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/ADMIN/NewAdmin.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Constants/PathConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Constants/PathConstants.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Discord/Discord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Discord/Discord.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Discord/Helpers/RegisterCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Discord/Helpers/RegisterCommands.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Discord/Helpers/SlashCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Discord/Helpers/SlashCommand.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Discord/Helpers/command/Details.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Discord/Helpers/command/Details.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Discord/Helpers/command/PasswordUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Discord/Helpers/command/PasswordUpdate.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Discord/Helpers/command/create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Discord/Helpers/command/create.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Discord/Helpers/command/events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Discord/Helpers/command/events.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Discord/Helpers/command/test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Discord/Helpers/command/test.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Discord/Helpers/command/who.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Discord/Helpers/command/who.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/BattlepassManagement/BattlePassRewards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/BattlepassManagement/BattlePassRewards.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/BattlepassManagement/BattlepassManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/BattlepassManagement/BattlepassManager.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/BattlepassManagement/LevelUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/BattlepassManagement/LevelUpdater.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/Cached/CachedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/Cached/CachedData.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/Cached/CupCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/Cached/CupCache.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/Cached/NewsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/Cached/NewsManager.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/CheckIP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/CheckIP.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/CreateAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/CreateAccount.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/Grabber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/Grabber.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/IniManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/IniManager.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/Middleware/AuthorizeTokenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/Middleware/AuthorizeTokenAttribute.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/Middleware/CacheMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/Middleware/CacheMiddleware.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/Middleware/LoggerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/Middleware/LoggerMiddleware.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/Middleware/VerifyToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/Middleware/VerifyToken.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/QuestsManagement/BattlePassLevelUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/QuestsManagement/BattlePassLevelUp.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/QuestsManagement/QuestClaimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/QuestsManagement/QuestClaimer.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/QuestsManagement/QuestDataHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/QuestsManagement/QuestDataHandler.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/QuestsManagement/QuestsDealer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/QuestsManagement/QuestsDealer.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/UpdateLeaderBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/UpdateLeaderBoard.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/UserManagement/BanAndWebHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/UserManagement/BanAndWebHooks.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/UserManagement/TempBanAndWebHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/UserManagement/TempBanAndWebHooks.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Helpers/UserManagement/UnbanAndWebhooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Helpers/UserManagement/UnbanAndWebhooks.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/MongoDB/Helpers/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/MongoDB/Helpers/Attribute.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/MongoDB/Helpers/CreateBlank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/MongoDB/Helpers/CreateBlank.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/MongoDB/Helpers/GrabAdminData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/MongoDB/Helpers/GrabAdminData.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/MongoDB/Helpers/GrabData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/MongoDB/Helpers/GrabData.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/MongoDB/Helpers/Handlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/MongoDB/Helpers/Handlers.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/MongoDB/Helpers/SaveData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/MongoDB/Helpers/SaveData.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/MongoDB/Management/CreateAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/MongoDB/Management/CreateAccount.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/MongoDB/MongoDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/MongoDB/MongoDB.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/ProcessExit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/ProcessExit.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Quests/DailyQuestsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Quests/DailyQuestsManager.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Quests/WeeklyQuestManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Quests/WeeklyQuestManager.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Saved/CachedAdminData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Saved/CachedAdminData.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Saved/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Saved/Config.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Shop/GenerateShop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Shop/GenerateShop.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Shop/Helpers/DiscordWebsocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Shop/Helpers/DiscordWebsocket.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Shop/Helpers/Generate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Shop/Helpers/Generate.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Shop/Helpers/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Shop/Helpers/Generator.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Shop/LoadShopCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Shop/LoadShopCache.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Shop/UpdateShopBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Shop/UpdateShopBundle.cs -------------------------------------------------------------------------------- /FortBackend/src/App/Utilities/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/Utilities/Startup.cs -------------------------------------------------------------------------------- /FortBackend/src/App/XMPP Server/Helpers/Globals/Data/DataSaved_TCP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/XMPP Server/Helpers/Globals/Data/DataSaved_TCP.cs -------------------------------------------------------------------------------- /FortBackend/src/App/XMPP Server/TCP/Handle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/XMPP Server/TCP/Handle.cs -------------------------------------------------------------------------------- /FortBackend/src/App/XMPP Server/TCP/TcpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/XMPP Server/TCP/TcpServer.cs -------------------------------------------------------------------------------- /FortBackend/src/App/XMPP Server/XMPP/XmppServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/XMPP Server/XMPP/XmppServer.cs -------------------------------------------------------------------------------- /FortBackend/src/App/XMPP Server/Xmpp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/App/XMPP Server/Xmpp.cs -------------------------------------------------------------------------------- /FortBackend/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/Program.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/Data/DataSaved_TCP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/Data/DataSaved_TCP.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/Data/GlobalData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/Data/GlobalData.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/ClientFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/ClientFix.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/Handle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/Handle.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/KillGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/KillGame.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/Root/AuthHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/Root/AuthHandler.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/Root/IqHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/Root/IqHandler.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/Root/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/Root/Login.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/Root/MessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/Root/MessageHandler.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/Root/OpenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/Root/OpenHandler.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/Root/PresenceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/Root/PresenceHandler.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/Send/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/Send/Client.cs -------------------------------------------------------------------------------- /FortBackend/src/XMPP/SERVER/Send/XmppFriend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortBackend/src/XMPP/SERVER/Send/XmppFriend.cs -------------------------------------------------------------------------------- /FortDashboard/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/.env -------------------------------------------------------------------------------- /FortDashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/.gitignore -------------------------------------------------------------------------------- /FortDashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/README.md -------------------------------------------------------------------------------- /FortDashboard/app/dashboard/admin-panel/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/dashboard/admin-panel/page.tsx -------------------------------------------------------------------------------- /FortDashboard/app/dashboard/content/ini/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/dashboard/content/ini/page.tsx -------------------------------------------------------------------------------- /FortDashboard/app/dashboard/content/management/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/dashboard/content/management/page.tsx -------------------------------------------------------------------------------- /FortDashboard/app/dashboard/content/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/dashboard/content/page.tsx -------------------------------------------------------------------------------- /FortDashboard/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /FortDashboard/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/dashboard/page.tsx -------------------------------------------------------------------------------- /FortDashboard/app/dashboard/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/dashboard/sidebar.tsx -------------------------------------------------------------------------------- /FortDashboard/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/globals.css -------------------------------------------------------------------------------- /FortDashboard/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/layout.tsx -------------------------------------------------------------------------------- /FortDashboard/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/login/page.tsx -------------------------------------------------------------------------------- /FortDashboard/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/not-found.tsx -------------------------------------------------------------------------------- /FortDashboard/app/page1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/app/page1.tsx -------------------------------------------------------------------------------- /FortDashboard/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/bun.lockb -------------------------------------------------------------------------------- /FortDashboard/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components.json -------------------------------------------------------------------------------- /FortDashboard/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/theme-provider.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/accordion.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/alert.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/avatar.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/badge.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/button.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/calendar.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/card.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/carousel.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/chart.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/command.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/dialog.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/drawer.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/form.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/input.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/label.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/menubar.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/pagination.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/popover.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/progress.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/resizable.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/select.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/separator.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/sheet.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/slider.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/sonner.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/switch.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/table.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/tabs.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/textarea.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/toast.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/toaster.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/toggle.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/use-mobile.tsx -------------------------------------------------------------------------------- /FortDashboard/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/components/ui/use-toast.ts -------------------------------------------------------------------------------- /FortDashboard/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /FortDashboard/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/hooks/use-toast.ts -------------------------------------------------------------------------------- /FortDashboard/hooks/useUserStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/hooks/useUserStore.ts -------------------------------------------------------------------------------- /FortDashboard/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/install.bat -------------------------------------------------------------------------------- /FortDashboard/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/lib/store.ts -------------------------------------------------------------------------------- /FortDashboard/lib/userStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/lib/userStore.ts -------------------------------------------------------------------------------- /FortDashboard/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/lib/utils.ts -------------------------------------------------------------------------------- /FortDashboard/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/next.config.mjs -------------------------------------------------------------------------------- /FortDashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/package-lock.json -------------------------------------------------------------------------------- /FortDashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/package.json -------------------------------------------------------------------------------- /FortDashboard/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/pnpm-lock.yaml -------------------------------------------------------------------------------- /FortDashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/postcss.config.js -------------------------------------------------------------------------------- /FortDashboard/public/placeholder-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/public/placeholder-logo.png -------------------------------------------------------------------------------- /FortDashboard/public/placeholder-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/public/placeholder-logo.svg -------------------------------------------------------------------------------- /FortDashboard/public/placeholder-user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/public/placeholder-user.jpg -------------------------------------------------------------------------------- /FortDashboard/public/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/public/placeholder.jpg -------------------------------------------------------------------------------- /FortDashboard/public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/public/placeholder.svg -------------------------------------------------------------------------------- /FortDashboard/run-npm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/run-npm.bat -------------------------------------------------------------------------------- /FortDashboard/run-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/run-server.bat -------------------------------------------------------------------------------- /FortDashboard/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/run.bat -------------------------------------------------------------------------------- /FortDashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortDashboard/tsconfig.json -------------------------------------------------------------------------------- /FortDashboard/update.bat: -------------------------------------------------------------------------------- 1 | npx npm-check-updates -u 2 | npm install 3 | pause -------------------------------------------------------------------------------- /FortHoster/FortHoster.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster.sln -------------------------------------------------------------------------------- /FortHoster/FortHoster/FortHoster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/FortHoster.csproj -------------------------------------------------------------------------------- /FortHoster/FortHoster/Resources/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/Resources/Config.json -------------------------------------------------------------------------------- /FortHoster/FortHoster/src/Classes/ConfigC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/src/Classes/ConfigC.cs -------------------------------------------------------------------------------- /FortHoster/FortHoster/src/Classes/LaunchClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/src/Classes/LaunchClass.cs -------------------------------------------------------------------------------- /FortHoster/FortHoster/src/Classes/MessageClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/src/Classes/MessageClass.cs -------------------------------------------------------------------------------- /FortHoster/FortHoster/src/Host/Helpers/FakeAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/src/Host/Helpers/FakeAC.cs -------------------------------------------------------------------------------- /FortHoster/FortHoster/src/Host/Helpers/Freeze.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/src/Host/Helpers/Freeze.cs -------------------------------------------------------------------------------- /FortHoster/FortHoster/src/Host/Helpers/Inject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/src/Host/Helpers/Inject.cs -------------------------------------------------------------------------------- /FortHoster/FortHoster/src/Host/Helpers/PSBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/src/Host/Helpers/PSBasic.cs -------------------------------------------------------------------------------- /FortHoster/FortHoster/src/Host/Launch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/src/Host/Launch.cs -------------------------------------------------------------------------------- /FortHoster/FortHoster/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/FortHoster/src/Program.cs -------------------------------------------------------------------------------- /FortHoster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortHoster/README.md -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/.editorconfig -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/.env -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | out 4 | .gitignore 5 | -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/.eslintrc.cjs -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | out 4 | .DS_Store 5 | *.log* 6 | -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/.prettierignore -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | semi: false 3 | printWidth: 100 4 | trailingComma: none 5 | -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/README.md -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/TODO.md -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/bun.lock -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/dev-app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/dev-app-update.yml -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/electron-builder.yml -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/electron.vite.config.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/install.bat: -------------------------------------------------------------------------------- 1 | echo FortLauncherV2 2 | call npm install 3 | exit -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/obfuscate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/obfuscate.js -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/package-lock.json -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/package.json -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/resources/dllinjector.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/resources/dllinjector.node -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/resources/icon.png -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/_gameWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/_gameWorker.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/backend/FortniteDetect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/backend/FortniteDetect.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/backend/IniConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/backend/IniConfig.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/backend/JsonConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/backend/JsonConfig.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/backend/VersionSearcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/backend/VersionSearcher.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/backend/electron-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/backend/electron-env.d.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/backend/index.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/backend/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/backend/login.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/backend/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/backend/preload.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/backend/types/AuthData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/backend/types/AuthData.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/index.html -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/public/assets/LoginImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/public/assets/LoginImage.png -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/public/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/public/assets/vue.svg -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/App.vue -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/components/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/components/Loading.vue -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/components/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/components/Login.vue -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/components/Main/Content/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/components/Main/Content/Home.vue -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/components/Main/Content/Library.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/components/Main/Content/Library.vue -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/components/Main/Content/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/components/Main/Content/Settings.vue -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/components/Main/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/components/Main/Dashboard.vue -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/components/Main/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/components/Main/SideBar.vue -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/components/Offline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/components/Offline.vue -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/env.d.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/main.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/style.css -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/src/renderer/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/src/renderer/src/vite-env.d.ts -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/tsconfig.json -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/tsconfig.node.json -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/FortLauncherV2/tsconfig.web.json -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/update-bun.bat: -------------------------------------------------------------------------------- 1 | bunx npm-check-updates -u 2 | bun install 3 | pause -------------------------------------------------------------------------------- /FortLauncher/FortLauncherV2/update.bat: -------------------------------------------------------------------------------- 1 | npx npm-check-updates -u 2 | npm install 3 | pause -------------------------------------------------------------------------------- /FortLauncher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLauncher/README.md -------------------------------------------------------------------------------- /FortLibrary/ConfigHelpers/ContentConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/ConfigHelpers/ContentConfig.cs -------------------------------------------------------------------------------- /FortLibrary/ConfigHelpers/DefaultValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/ConfigHelpers/DefaultValues.cs -------------------------------------------------------------------------------- /FortLibrary/ConfigHelpers/FortConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/ConfigHelpers/FortConfig.cs -------------------------------------------------------------------------------- /FortLibrary/ConfigHelpers/FortConfigMM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/ConfigHelpers/FortConfigMM.cs -------------------------------------------------------------------------------- /FortLibrary/ConfigHelpers/FortGameConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/ConfigHelpers/FortGameConfig.cs -------------------------------------------------------------------------------- /FortLibrary/ConfigHelpers/IniConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/ConfigHelpers/IniConfig.cs -------------------------------------------------------------------------------- /FortLibrary/ConfigHelpers/ItemPricing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/ConfigHelpers/ItemPricing.cs -------------------------------------------------------------------------------- /FortLibrary/ConfigHelpers/PlaylistData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/ConfigHelpers/PlaylistData.cs -------------------------------------------------------------------------------- /FortLibrary/ConfigHelpers/RegionManagerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/ConfigHelpers/RegionManagerConfig.cs -------------------------------------------------------------------------------- /FortLibrary/Default/DefaultAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Default/DefaultAccount.cs -------------------------------------------------------------------------------- /FortLibrary/DiscordAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/DiscordAuth.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/BattlePass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/BattlePass.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/DailyQuests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/DailyQuests.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/Dashboard/AdminDashboardRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/Dashboard/AdminDashboardRoles.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/Dashboard/AdminDataInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/Dashboard/AdminDataInfo.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/Languages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/Languages.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/ReportUserClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/ReportUserClass.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/SeasonBP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/SeasonBP.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/SeasonXP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/SeasonXP.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/StoreBattlepass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/StoreBattlepass.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/Timeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/Timeline.cs -------------------------------------------------------------------------------- /FortLibrary/Dynamics/WeeklyQuests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Dynamics/WeeklyQuests.cs -------------------------------------------------------------------------------- /FortLibrary/Encoders/Base64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Encoders/Base64.cs -------------------------------------------------------------------------------- /FortLibrary/Encoders/CryptoGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Encoders/CryptoGen.cs -------------------------------------------------------------------------------- /FortLibrary/Encoders/Generate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Encoders/Generate.cs -------------------------------------------------------------------------------- /FortLibrary/Encoders/GenerateAES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Encoders/GenerateAES.cs -------------------------------------------------------------------------------- /FortLibrary/Encoders/Hex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Encoders/Hex.cs -------------------------------------------------------------------------------- /FortLibrary/Encoders/JWT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Encoders/JWT.cs -------------------------------------------------------------------------------- /FortLibrary/Encoders/JWTCLASS/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Encoders/JWTCLASS/Token.cs -------------------------------------------------------------------------------- /FortLibrary/Encoders/RandomHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Encoders/RandomHash.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Errors/BaseError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Errors/BaseError.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Fortnite/CloudstorageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Fortnite/CloudstorageFile.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Fortnite/SavingCloudStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Fortnite/SavingCloudStorage.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Fortnite/StatsBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Fortnite/StatsBody.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/BattleRoyaleNews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/BattleRoyaleNews.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/BattleRoyaleNewsV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/BattleRoyaleNewsV2.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/ContentJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/ContentJson.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/Discovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/Discovery.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/DiscoveryAssets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/DiscoveryAssets.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/DynamicBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/DynamicBackground.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/EmergencyNotice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/EmergencyNotice.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/EmergencyNoticeV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/EmergencyNoticeV2.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/LoginMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/LoginMessage.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/MnemonicC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/MnemonicC.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/PlaylistInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/PlaylistInformation.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/ShopCarousel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/ShopCarousel.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/ShopSections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/ShopSections.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/Tournamentinformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/Tournamentinformation.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Content/motdTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Content/motdTarget.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Events/EventC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Events/EventC.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Events/ScoreC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Events/ScoreC.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/FortniteServices/Events/TemplateC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/FortniteServices/Events/TemplateC.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Friends/Invites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Friends/Invites.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Friends/PartiesC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Friends/PartiesC.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Friends/PatchPartiesC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Friends/PatchPartiesC.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Friends/PatchPartyMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Friends/PatchPartyMeta.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Friends/PostJoinParty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Friends/PostJoinParty.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Friends/ProjectUserSearchC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Friends/ProjectUserSearchC.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Friends/RawSquadAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Friends/RawSquadAssignment.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Leaderboard/LeaderBoardData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Leaderboard/LeaderBoardData.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Lightswitch/LightSwitchData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Lightswitch/LightSwitchData.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Lightswitch/launcherInfoDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Lightswitch/launcherInfoDTO.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Matchmaker/HosterJ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Matchmaker/HosterJ.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Matchmaker/MMTicket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Matchmaker/MMTicket.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Matchmaker/MatchmakerTicket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Matchmaker/MatchmakerTicket.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Matchmaker/Servers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Matchmaker/Servers.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Oauth/OauthToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Oauth/OauthToken.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/BulkEquipBattleRoyaleCustomizationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/BulkEquipBattleRoyaleCustomizationResponse.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/CopyCosmeticLoadoutResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/CopyCosmeticLoadoutResponse.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/EquipBattleRoyaleCustomizationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/EquipBattleRoyaleCustomizationRequest.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/FortRerollDailyQuestReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/FortRerollDailyQuestReq.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/MarkNewQuestNotificationSentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/MarkNewQuestNotificationSentRequest.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Mcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Mcp.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Purchases/MultiUpdateClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Purchases/MultiUpdateClass.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Purchases/PurchaseCatalogEntryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Purchases/PurchaseCatalogEntryRequest.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Query/Attributes/AthenaAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Query/Attributes/AthenaAttributes.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Query/Attributes/CommonCoreAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Query/Attributes/CommonCoreAttributes.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Query/Items/AthenaItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Query/Items/AthenaItem.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Query/Items/CommonCoreItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Query/Items/CommonCoreItem.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Query/Items/GiftCommonCoreItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Query/Items/GiftCommonCoreItem.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Query/Items/SandboxLoadout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Query/Items/SandboxLoadout.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Query/ProfileChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Query/ProfileChange.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Query/ProfileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Query/ProfileData.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Query/Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Query/Stats.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/Quests/DailyQuests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/Quests/DailyQuests.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/RemoveGiftBoxReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/RemoveGiftBoxReq.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/SetBattleRoyaleBannerReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/SetBattleRoyaleBannerReq.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/SetCosmeticLockerSlotRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/SetCosmeticLockerSlotRequest.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/SetPartyAssistQuestResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/SetPartyAssistQuestResponse.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Profile/UpdateQuestClientObjectivesReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Profile/UpdateQuestClientObjectivesReq.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Storefront/Catalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Storefront/Catalog.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Storefront/TimelineResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Storefront/TimelineResponse.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Storefront/catalogEntrie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Storefront/catalogEntrie.cs -------------------------------------------------------------------------------- /FortLibrary/EpicResponses/Storefront/catalogEntrieStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/EpicResponses/Storefront/catalogEntrieStore.cs -------------------------------------------------------------------------------- /FortLibrary/FortLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/FortLibrary.csproj -------------------------------------------------------------------------------- /FortLibrary/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Logger.cs -------------------------------------------------------------------------------- /FortLibrary/MongoDB/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/MongoDB/Attribute.cs -------------------------------------------------------------------------------- /FortLibrary/MongoDB/CreateAccountArg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/MongoDB/CreateAccountArg.cs -------------------------------------------------------------------------------- /FortLibrary/MongoDB/Modules/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/MongoDB/Modules/Account.cs -------------------------------------------------------------------------------- /FortLibrary/MongoDB/Modules/AdminInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/MongoDB/Modules/AdminInfo.cs -------------------------------------------------------------------------------- /FortLibrary/MongoDB/Modules/StatsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/MongoDB/Modules/StatsInfo.cs -------------------------------------------------------------------------------- /FortLibrary/MongoDB/Modules/StoreInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/MongoDB/Modules/StoreInfo.cs -------------------------------------------------------------------------------- /FortLibrary/MongoDB/Modules/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/MongoDB/Modules/User.cs -------------------------------------------------------------------------------- /FortLibrary/MongoDB/Modules/UserFriends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/MongoDB/Modules/UserFriends.cs -------------------------------------------------------------------------------- /FortLibrary/ProfileCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/ProfileCacheEntry.cs -------------------------------------------------------------------------------- /FortLibrary/Shop/SavedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Shop/SavedData.cs -------------------------------------------------------------------------------- /FortLibrary/Shop/ShopBundles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Shop/ShopBundles.cs -------------------------------------------------------------------------------- /FortLibrary/Shop/ShopJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/Shop/ShopJson.cs -------------------------------------------------------------------------------- /FortLibrary/XMPP/Clients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/XMPP/Clients.cs -------------------------------------------------------------------------------- /FortLibrary/XMPP/DataSaved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/XMPP/DataSaved.cs -------------------------------------------------------------------------------- /FortLibrary/XMPP/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/XMPP/Members.cs -------------------------------------------------------------------------------- /FortLibrary/XMPP/Parties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/XMPP/Parties.cs -------------------------------------------------------------------------------- /FortLibrary/XMPP/PartyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/XMPP/PartyData.cs -------------------------------------------------------------------------------- /FortLibrary/XMPP/Pings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/XMPP/Pings.cs -------------------------------------------------------------------------------- /FortLibrary/XMPP/RoomsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/XMPP/RoomsData.cs -------------------------------------------------------------------------------- /FortLibrary/XMPP/ShittyXmppClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/XMPP/ShittyXmppClass.cs -------------------------------------------------------------------------------- /FortLibrary/XMPP/TokenData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortLibrary/XMPP/TokenData.cs -------------------------------------------------------------------------------- /FortMatchmaker/FortMatchmaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/FortMatchmaker.csproj -------------------------------------------------------------------------------- /FortMatchmaker/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /FortMatchmaker/Resources/MMConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/Resources/MMConfig.json -------------------------------------------------------------------------------- /FortMatchmaker/Resources/json/server-hotfixes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/Resources/json/server-hotfixes.json -------------------------------------------------------------------------------- /FortMatchmaker/Resources/json/servers.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /FortMatchmaker/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/appsettings.Development.json -------------------------------------------------------------------------------- /FortMatchmaker/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/appsettings.json -------------------------------------------------------------------------------- /FortMatchmaker/src/App/Routes/MatchmakeEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/Routes/MatchmakeEndpoints.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/Service.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/Utilities/Classes/MatchmakerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/Utilities/Classes/MatchmakerData.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/Utilities/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/Utilities/Config.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/Utilities/Constants/PathConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/Utilities/Constants/PathConstants.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/Utilities/MongoDB/Helpers/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/Utilities/MongoDB/Helpers/Attribute.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/Utilities/MongoDB/Helpers/CreateBlank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/Utilities/MongoDB/Helpers/CreateBlank.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/Utilities/MongoDB/Helpers/Handlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/Utilities/MongoDB/Helpers/Handlers.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/Utilities/MongoDB/MongoDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/Utilities/MongoDB/MongoDB.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/Utilities/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/Utilities/Startup.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/WebSockets/Helpers/Breathe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/WebSockets/Helpers/Breathe.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/WebSockets/Helpers/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/WebSockets/Helpers/Messages.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/WebSockets/Helpers/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/WebSockets/Helpers/Server.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/WebSockets/Modules/JsonSavedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/WebSockets/Modules/JsonSavedData.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/WebSockets/NewConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/WebSockets/NewConnection.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/App/WebSockets/Roots/Authorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/FortMatchmaker/src/App/WebSockets/Roots/Authorization.cs -------------------------------------------------------------------------------- /FortMatchmaker/src/Program.cs: -------------------------------------------------------------------------------- 1 | using FortMatchmaker.src.App; 2 | 3 | Service.Intiliazation(args); -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/README.md -------------------------------------------------------------------------------- /Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/Setup.md -------------------------------------------------------------------------------- /TestFiles/BattlePass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/BattlePass.json -------------------------------------------------------------------------------- /TestFiles/Data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/Data.json -------------------------------------------------------------------------------- /TestFiles/Quest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/Quest.json -------------------------------------------------------------------------------- /TestFiles/QuestS13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/QuestS13.json -------------------------------------------------------------------------------- /TestFiles/README.md: -------------------------------------------------------------------------------- 1 | This is just random shit for testing stuff <3 -------------------------------------------------------------------------------- /TestFiles/SeasonStars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/SeasonStars.json -------------------------------------------------------------------------------- /TestFiles/SingleQuest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/SingleQuest.json -------------------------------------------------------------------------------- /TestFiles/gulp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/gulp.js -------------------------------------------------------------------------------- /TestFiles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/index.js -------------------------------------------------------------------------------- /TestFiles/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/package-lock.json -------------------------------------------------------------------------------- /TestFiles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/package.json -------------------------------------------------------------------------------- /TestFiles/skins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/skins.json -------------------------------------------------------------------------------- /TestFiles/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/test.js -------------------------------------------------------------------------------- /TestFiles/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/TestFiles/test.json -------------------------------------------------------------------------------- /assets/DiscordStep1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/assets/DiscordStep1.png -------------------------------------------------------------------------------- /assets/FORTBACKEND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/assets/FORTBACKEND.png -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinx28/FortServer/HEAD/todo.md --------------------------------------------------------------------------------