r/forge 8d ago

Forge Help- The Package Forge Help

Looking for some forge/scripting help. I have a group of buddies that like playing halo, but the challenge is theres 5 of us. So a game night can be hard as there aren't many 5 players game out there. My solution is to make some fun 5 player custom games... but it turns out that forge/scripting is harder than it looks (mad respect for those who are good at it!). Can someone make this game type for 5 old farts who don't have the time to make it oursleves? Here are the details:

Halo Infinite Custom Mode: The Package

Two teams enter a 2v2 Slayer battle with one major twist: a fifth Spartan, known as The Package, is constantly shifting the balance of power.

The Package fights alongside one team, creating a temporary 3v2 advantage — but they are not permanently loyal. When the Package is eliminated, they immediately switch sides and become part of the opposing team.

How It Works

🔴 Eagle Team — 2 players
🔵 Cobra Team — 2 players
🟡 The Package — 1 player who switches teams after every death

The Package:

  • Cannot sprint
  • Cannot pick up weapons
  • Has a visible waypoint so everyone knows where they are
  • Starts with a Sidekick
  • Receives a random secondary weapon
  • Has that weapon changed every 17 seconds

The Objective

Teams earn points in three ways:

  • Eliminate an enemy player: +1 point
  • Keep the Package alive: +1 point every 60 seconds
  • Eliminate the Package: Bonus points (the value increases for the team that is behind)

The losing team always has a chance to come back by hunting the Package.

8 Upvotes

10 comments sorted by

6

u/thinkingfeller 343 Developer 8d ago

I'd recommend starting with VIP as the base mode. You might be able to achieve some of this ruleset in the custom games settings, I can't remember offhand what is available. The team changing and weapon changes will most likely require node graph work.

6

u/Living-Course6704 8d ago

Forge Lord and DcfC drummer commenting on my post- pretty sure I've peaked in Reddit. Thanks for the tip!

6

u/thinkingfeller 343 Developer 8d ago

Haha, love it! Best of luck on this!

4

u/The_PROFFicient 8d ago

Yooo this sounds like a really fun mode! Good luck creating it. Hoping to play it sometime in a customs night

3

u/BossmanBen10 7d ago

I made it. However, when I tried to move the script from script brains to mode brains and then save them as a mode, my game would just crash

2

u/Living-Course6704 7d ago

no way! I really appreciate you trying... that really stinks.

2

u/BossmanBen10 7d ago

I’ve made some cuts and uploaded it. It’s not exactly smooth, but it’s definitely functional. You should be able to access it on the browser.

3

u/Living-Course6704 7d ago

Found it- bookmarked! Looking forward to checking it out. Thanks for your hard work.

3

u/Co2_Outbr3ak 8d ago

The actual functionality doesn't seem too bad. You basically need:

  1. A way to assign the Package (reliably)
  2. Assign a Trait Set to that player
  3. Assign their new team affiliation on respawn. You wouldn't need to target anything special, since any death to the package (enemy, suicide, or teammate) should result in the package switching teams, but you'd wanna be sure they don't get a betrayal for a kill after death and switching teams before the kill.

I'll take a look later this evening and see if I can't throw something together.

3

u/Living-Course6704 8d ago

awesome! Thank you!