Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
DarkLight2461

Skulltag (Doom in Doom format) Help

Recommended Posts

I'm trying to do a wad in Skulltag (Doom in Doom format), and I want the player starts only with the fist, you can tell me a script and tell me if that's "Dehacked script", "Hexen ACS Script", etc...

Share this post


Link to post

You could try using an ACS script to clear the player's inventory, give them a fist (strange but true) and set it as the current weapon. You'll also need a LOADACS lump to run the script.

#library "fists"
#include "zcommon.acs"

script 999 ENTER
{
        ClearInventory();
        GiveInventory("Fist", 1);
        SetWeapon("Fist");
}

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×