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

3-class problem with double-jumping

Question

I am working on a project that utilises Hexen's classes.I'm going to be editing the attributes of all three classes but I realise I have hit a problem early in development. One character is meant to replace the Fighter class and the said class is going to have the ability to Double-Jump. I only want that class to jump in mid-air. Is there any way to make the custom Fighter class gain the affects of double-jumping whilst keeping the other two classes at a singular jump.

 

All advice is helpful!

 

 

(PS: Also I accidentally posted a similar question earlier in the wrong forum section... sorry =( )

Share this post


Link to post

2 answers to this question

Recommended Posts

  • 1

It can be something like this in ACS:

if (CheckActorClass(playertid, "FighterPlayer")) {
    DoDoubleJump();
}

 

Share this post


Link to post
  • 0
56 minutes ago, 38_ViTa_38 said:

It can be something like this in ACS:


if (CheckActorClass(playertid, "FighterPlayer")) {
    DoDoubleJump();
}

 

I tried implementing this but it just doesn't seem to work. Maybe expand the explanation?

 

Update:

No I was just stupid enough to try and implement the code through Slade 3... Went into GZDB and it works wonders! Thanks! =D

Edited by DynamiteKaitorn

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  
×