Performance first, universal Fortnite private server backend written in Go.
Go to file
2024-02-04 20:10:33 +00:00
aid Add amazon s3 cloud settings 2024-02-04 19:49:31 +00:00
discord Fix exchange code not giving sig 2024-01-28 20:52:07 +00:00
fortnite Improve item shops 2024-02-04 20:10:33 +00:00
handlers Support a creator 2024-02-04 20:03:53 +00:00
person Fix friends for seasons 11+ 2024-02-04 16:01:24 +00:00
socket More socket 2024-01-31 16:21:19 +00:00
storage Add amazon s3 cloud settings 2024-02-04 19:49:31 +00:00
.air.toml Improve Display Asset accuracy 2023-12-10 23:54:31 +00:00
.gitignore Continue to research how fortnite storefront works. 2023-11-26 22:39:05 +00:00
default.config.ini Add amazon s3 cloud settings 2024-02-04 19:49:31 +00:00
go.mod Add amazon s3 cloud settings 2024-02-04 19:49:31 +00:00
go.sum Add amazon s3 cloud settings 2024-02-04 19:49:31 +00:00
main.go Support a creator 2024-02-04 20:03:53 +00:00
makefile Hello, World! 2023-10-31 22:40:14 +00:00
readme.md Support a creator 2024-02-04 20:03:53 +00:00

1

Snow

Performance first, universal Fortnite private server backend written in Go.

Overview

  • Single File It will embed all of the external files inside of one executable! This allows the backend to be ran anywhere with no setup (after initial config)!
  • Blazingly Fast Written in Go and built upon Fast HTTP, it is extremely fast and can handle any profile action in milliseconds with its caching system.
  • Automatic Profile Changes Automatically keeps track of profile changes exactly so any external changes are displayed in-game on the next action.
  • Universal Database It is possible to add new database types to satisfy your needs. Currently, it only supports postgresql.

What's coming up?

The backend is very feature rich and is constantly being updated. Below are the features that are not yet implemented, but are coming soon.

  • Party System V2 Currently it relies on the automatic XMPP solution which is very hard to keep track of.
  • Purchasing the Battle Pass. This will require the Battle Pass Storefront ID for every build. I am yet to think of a solution for this.
  • Seeded randomization for the Item Shop instead of a random number generator. This will ensure that even if the backend is restarted, the same random items will be in the shop during that day.
  • Interaction with a Game Server to handle Event Tracking for player statistics and challenges. This will be a very large task as a new specialised game server will need to be created.
  • After the game server addition, a Matchmaking System will be added to match players together for a game. It will use a bin packing algorithm to ensure that games are filled as much as possible.
  • Save The World. This is a very large task and will require a lot of work. It is not a priority at the moment and might be done after the Battle Royale experience is complete.

Supported MCP Actions

These are request made from Fortnite to the server to perform actions on the profile.

QueryProfile, ClientQuestLogin, MarkItemSeen, SetItemFavoriteStatusBatch, EquipBattleRoyaleCustomization, SetBattleRoyaleBanner, SetCosmeticLockerSlot, SetCosmeticLockerBanner, SetCosmeticLockerName, CopyCosmeticLoadout, DeleteCosmeticLoadout, PurchaseCatalogEntry, GiftCatalogEntry, RemoveGiftBox, RefundMtxPurchase, SetAffiliateName

Support

Contributing

Contributions are welcome! Please open an issue or pull request if you would like to contribute. Make sure to follow the same format (2 space indents) and style! Make sure to keep commits concise and readable e.g. do not change formating to mess up code review!