Problem with JBExecutionDepressurize

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

CoolDude

New Member
Feb 22, 2003
914
0
0
Netherlands
Visit site
I've got a problem getting the JBExecutionDepressurize (default parameters) to work.
If I replace them by JBExecutionLightning or JBExecutionSkeletize it works OK.

This means it's not working, or more probably, I'm doing something wrong.
I tried to find a map where JBExecutionDepressurize was used in, but couldn't find any.
Did anyone ever used this?

(UT version 3323, JB2004b)
 
Last edited:

CoolDude

New Member
Feb 22, 2003
914
0
0
Netherlands
Visit site
I don't get it.

I just copied the one out of JB-Sewers and that one did work.
I compared every property between the two and everything was exactly the same.
And yet one did work the other one didn't.

Very strange, but thanks.
:cool:
 

Ravu al Hemio

Comes, fixes, leaves.
Sep 1, 2004
178
0
0
33
Austria
CoolDude said:
I don't get it.

I just copied the one out of JB-Sewers and that one did work.
I compared every property between the two and everything was exactly the same.
And yet one did work the other one didn't.

Very strange, but thanks.
:cool:
Have you set the 'Events.Tag' property of JBExecutionDepressurize and input it into your JBInfoJail's 'Events.EventExecutionCommit'?
 

CoolDude

New Member
Feb 22, 2003
914
0
0
Netherlands
Visit site
Ravu al Hemio said:
Have you set the 'Events.Tag' property of JBExecutionDepressurize and input it into your JBInfoJail's 'Events.EventExecutionCommit'?
Yep, those were correct, so that was not it.
But thanks for the advice ;)

As I said, I got it working now.
Just by copying them from another map, instead of adding my own.
 

CoolDude

New Member
Feb 22, 2003
914
0
0
Netherlands
Visit site
OK, this is the situation:
I did not place a JBExecutionDepressurize myself, but in fact I placed a JBExecutionBurning and later used the "actor replace" command to change them into a JBExecutionDepressurize.
That's were the problem lies.

If you do an "actor replace class=JBExecutionDepressurize" it will add the following Network properties:

RemoteRole=ROLE_Authority
Role=ROLE_None

These two lines are not there when you normally place a JBExecutionDepressurize.
A JBExecutionDepressurize containing these additional networkproperties will not work.

Here are the properties of a placed JBExecutionDepressurize:
Code:
Begin Map
Begin Actor Class=JBExecutionDepressurize Name=JBExecutionDepressurize4
    bLightChanged=True
    Level=LevelInfo'myLevel.LevelInfo0'
    Region=(Zone=ZoneInfo'myLevel.ZoneInfo8',iLeaf=1167,ZoneNumber=16)
    Tag="blueburn"
    PhysicsVolume=DefaultPhysicsVolume'myLevel.DefaultPhysicsVolume5'
    Location=(X=1506.000000,Y=7798.000000,Z=-49.000000)
    ColLocation=(X=1506.000000,Y=7798.000000,Z=-49.000000)
    bSelected=True
End Actor
Begin Surface
End Surface
End Map
Here are the properties of a replaced JBExecutionDepressurize:
Code:
Begin Map
Begin Actor Class=JBExecutionDepressurize Name=JBExecutionDepressurize2
[B]    RemoteRole=ROLE_Authority
    Role=ROLE_None[/B]
    Level=LevelInfo'myLevel.LevelInfo0'
    Region=(Zone=ZoneInfo'myLevel.ZoneInfo8',iLeaf=1167,ZoneNumber=16)
    Tag="blueburn"
    PhysicsVolume=DefaultPhysicsVolume'myLevel.DefaultPhysicsVolume5'
    Location=(X=1524.000000,Y=7790.000000,Z=-69.000000)
    ColLocation=(X=1524.000000,Y=7790.000000,Z=-69.000000)
    bSelected=True
End Actor
Begin Surface
End Surface
End Map
Note the difference.

Replacing something by a JBExecutionBurning or a JBExecutionLightning does not have this problem ...
If I'm correct Spoondog had a simular problem replacing Camera's by JBCamera's, using the "actor replace" command.

My advice: Be very carefull using the "actor replace" command, it possible the new stuff will not be working.

(Btw. What happened to the Network submenu in the actor properties in UED3? It's not there anymore ... )
 

TheSpoonDog

CBP3! Yarrr!
Jun 1, 2001
2,592
0
36
42
NZ
spoondog.beyondunreal.com
To access those properties that aren't there anymore, you need to type "editactor class=blahclass" - it should pick up the actor you're closest to but I'm not sure - I've got it to work before though (see the wiki)

Or to view the default properties of a standard class, type editdefault class=playerstart, or whatever you want to see.