eezstreet Posted November 8, 2016 Posted November 8, 2016 Jetpacks will allow the user to gain a considerable advantage in both mobility and accessibility of the map. Some areas which ordinarily could not be accessed now can; some gaps which could not be traversed before now can be. Like shields, jetpacks are equipped to the ACI and occupy a slot. Only one jetpack can be equipped in the ACI at a time. Any new jetpacks equipped to the ACI will replace the existing one. Jetpacks can be activated by either:Double jumpingPressing the ACI button of the jetpackPressing USE while in midair Jetpacks have a variety of different stats, including:initialBurst: After activating, the jetpack may launch you up a few feet. By pressing the ACI button of the jetpack, you can trigger this without jumping.fuelConsumptionRate: While the jetpack is idle, it consumes this much fuel.thrustConsumptionRate: While the jetpack is thrusting (hold JUMP), consume this much fuel instead.hoverAmount: How much the jetpack reduces your gravity while not thrustingthrustForwardModifier: How much the jetpack modifies your forward movement speed while thrustingthrustSideModifier: How much the jetpack modifies your side movement speed while thrustingthrustBackModifier: How much the jetpack modifies your backwards movement speed while thrustingthrustUpModifier: How much the jetpack modifies your upwards movement speed while thrusting Noodle, Futuza, Smoo and 1 other like this
eezstreet Posted November 10, 2016 Author Posted November 10, 2016 The jetpack code has been implemented. You'll find that the jetpacks handle similarly to the game Tremulous, as much of the inspiration for the code came from there. Here's an example of a .jet file, which defines all of the properties of a jetpack: { // Jetpack file - Jedi Knight Galaxies // ref - reference that gets linked to .itm file // fuelCapacity - total fuel capacity of the jetpack // fuelConsumption - how fast (not how many!!) units are consumed while hovering (not holding jump) // thrustConsumption - how fast units are consumed while thrusting (pressing jump) // fuelRegeneration - scale of how fast fuel gets regenerated "ref": "jetpack_test", "fuelCapacity": 100, "fuelConsumption": 1.0, "thrustConsumption": 2.0, "fuelRegeneration": 1.0, "movement": { // Movement - done on both client and server // hoverGravity - amount to decay height by while hovering (actual units, not a modifier) // fowardMove - amount to modify forward move by while hovering (not thrusting) // backMove - amount to modify backward move by while hovering (not thrusting) // sideMove - amount to modify side move by while hovering (not thrusting) // downMove - amount to modify downward movement by // thrustFwd/thrustBack/thrustSide - same as above, but when thrusting // thrustUp - amount to modify upward movement by "hoverGravity": "-1.0", "forwardMove": 1.0, "backMove": 1.0, "sideMode": 1.0, "downMove": 1.0, "thrustFwd": 1.0, "thrustBack": 1.0, "thrustSide": 1.0, "thrustUp": 1.0 }, "visuals": { // Visuals - anything handled on the server is marked with an (S), all else is client // modelName - the ghoul2 model to bolt onto the player (it always bolts onto *chestg) // effectBolts - bone(s) on the JETPACK model to bolt effects onto // hoverEffect - effect to play while hovering (not holding jump) // thrustEffect - effect to play while thrusting (holding jump) // idleSound - sound to play while hovering // thrustSound - sound to play while thrusting // activateSound (S) - sound to play when jetpack is activated // deactivateSound (S) - sound to play when jetpack is deactivated "modelName": "models/weapons2/jetpack/model.glm", "effectBolts": [ "torso_ljet", "torso_rjet" ], "hoverEffect": "effects/player/jetpack.efx", "thrustEffect": "effects/player/jetpack.efx", "idleSound": "sound/jkg/jetpack/jethover", "thrustSound": "sound/jkg/jetpack/jetlp", "activateSound": "sound/jkg/jetpack/jeton", "deactivateSound": "sound/jkg/jetpack/jetoff" } } Futuza and Smoo like this
Archangel35757 Posted November 10, 2016 Posted November 10, 2016 will the jetpack code be pulled back into OpenJK?
Onysfx Posted November 10, 2016 Posted November 10, 2016 Every gunner is going to want one of these. I predict next test will be a dogfight.
Ramikad Posted November 10, 2016 Posted November 10, 2016 Every gunner is going to want one of these. I predict next test will be a dogfight. And lots of fall screams
Onysfx Posted November 10, 2016 Posted November 10, 2016 Accuracy should be greatly reduced while in jetpack, so it forces people to land and shoot.
eezstreet Posted November 11, 2016 Author Posted November 11, 2016 will the jetpack code be pulled back into OpenJK?No. OpenJK doesn't change gameplay. To be clear, these jetpacks won't appear in 1.2.1 or the test - they are a new feature for 1.3.0, among other things. I can make a post about it.
Archangel35757 Posted November 11, 2016 Posted November 11, 2016 No. OpenJK doesn't change gameplay. To be clear, these jetpacks won't appear in 1.2.1 or the test - they are a new feature for 1.3.0, among other things. I can make a post about it. Will you add it to the JKE engine?
eezstreet Posted November 11, 2016 Author Posted November 11, 2016 Will you add it to the JKE engine?Jetpacks aren't really part of singleplayer, so no.
Archangel35757 Posted November 11, 2016 Posted November 11, 2016 Jetpacks aren't really part of singleplayer, so no.But people may want to use JKE as the basis of their mod, yes?
eezstreet Posted November 11, 2016 Author Posted November 11, 2016 But people may want to use JKE as the basis of their mod, yes?I'm not coding in things because people "might want" them to use in their mods.
Futuza Posted November 11, 2016 Posted November 11, 2016 People are welcome to use the jetpack code, JKG is opensource. But they'll/you'll have to do that yourself. Also multiplayer code is a bit different from the singleplayer code so it's going to take some extra work which is why you'll have to do it yourself.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now