Author Topic: a player type that lets you fly  (Read 656 times)

i know that theres a super hero add on but it makes you just jump super high i want to fly with nothing at all eney  ideas?



first post for me

We don't take too kindly to first post gloating around here.

Yes a player type that would let you fly is perhaps possible but you can also do this with events and VCE.

Onactivate - Self - FireRelay
OnRelay - Self - FireRelay
OnRelay - Self - VCE_IfValue _ <var:player:jumping> == 1 [4 4]
OnVariableTrue - Player - AddVelocity [0,0,1.5]
OnRelay - Self - FireRelay

This is sorta like flying only your not accelerating in a certain direction.

Fixed.  I advise you get the events.
Yes a player type that would let you fly is perhaps possible but you can also do this with events and VCE.

Onactivate - Self - FireRelay
OnRelay - Self - FireRelay
OnRelay - Self - VCE_IfValue _ <var:player:crouching> == 1 [4 4]
OnVariableTrue - Player - AddRelativeVelocity [0,25,5]
OnRelay - Self - FireRelay

This is sorta like flying only your not accelerating in a certain direction.