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

How to make the player start with fists only?

Question

5 answers to this question

Recommended Posts

  • 0

STRAIN is vanilla and gives the player no starting ammo which is the equivalent of a fist start, so try checking out its dehacked script.

Share this post


Link to post
  • 0

If mapping in UDMF format you can do it via script.


#include "zcommon.acs"

 

script 1 enter             //FIST ONLY START
{
    ClearInventory();
    GiveInventory("Fist", 1);
}

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
×