Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
Walter confetti

question about scripts

Recommended Posts

hello, it is possible start a level using scripts in zdoom with a certain health level or something similar to player class?

Share this post


Link to post

To start Player1 with 200 health points you could use something like this

#include "zcommon.acs"

script 999 enter
{
	SetActorProperty ( 0, APROP_HEALTH, 200 );
}

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
Sign in to follow this  
×