Page 1 of 1

Coop: Permanent or Respawning Weapons? (split to separate thread)

Posted: Sat Jan 22, 2022 11:33 pm
by foul_owl
Original thread:
viewtopic.php?t=6768

How would I go about modifying the weapon spawner in Project Brutality so that it inherits from weapon?

I'm assuming it would basically just be modifying a single line in DECORATE somewhere?

It looks like the new weapons inherit from weapons:

Code: Select all

ACTOR Super_Grenade_Launcher : Weapon 13206
although some inherit from

Code: Select all

DoomWeapon
:

Code: Select all

Actor FreezerRifle: DoomWeapon
But it sounds like the problem isn't the weapon actor, but rather, the weapon spawner actor.

I basically just need to locate the code for the weapon spawner and do something like:

Code: Select all

Actor WeaponSpawner: Weapon
?

What keywords should I be looking for?