Author Topic: disabling jetpack.  (Read 1603 times)

How do I disable the Jetpack?

For a player type? Use this

Code: [Select]
datablock PlayerData(PlayerNoJet : PlayerStandardArmor)
{
minJetEnergy = 0;
jetEnergyDrain = 0;
[b]canJet = 0;[/b]

uiName = "No-Jet Player";
showEnergyBar = false;
};


The part in the bold is the thing that makes jets not work.

For a player type? Use this.

Code: [Select]
datablock PlayerData(PlayerNoJet : PlayerStandardArmor)
{
minJetEnergy = 0;
jetEnergyDrain = 0;
[b]canJet = 0;[/b]

uiName = "No-Jet Player";
showEnergyBar = false;
};


The part in the bold is the thing that makes jets not work.
Quote

For a player type? Use this

Code: [Select]
datablock PlayerData(PlayerNoJet : PlayerStandardArmor)
{
minJetEnergy = 0;
jetEnergyDrain = 0;
canJet = 0;

uiName = "No-Jet Player";
showEnergyBar = false;
};


The part (canJet = 0;) is the thing that makes jets not work.

For a player type? Use this

Code: [Select]
datablock PlayerData(PlayerNoJet : PlayerStandardArmor)
{
minJetEnergy = 0;
jetEnergyDrain = 0;
[b]canJet = 0;[/b]

uiName = "No-Jet Player";
showEnergyBar = false;
};


The part in the bold is the thing that makes jets not work.

Sorry for the triple post... I thought I was clicking modify... Not Quote D:But he wants no jets, so I was showing him code that makes no jets.


For a player type? Use this

Code: [Select]
datablock PlayerData(PlayerNoJet : PlayerStandardArmor)
{
minJetEnergy = 0;
jetEnergyDrain = 0;
[b]canJet = 0;[/b]

uiName = "No-Jet Player";
showEnergyBar = false;
};


The part in the bold is the thing that makes jets not work.

type that into the console?

type that into the console? Because when I type it into the console, it just gives me a syntax error, where and what should I type?

bolded is changed text. Why has the edit button left us?

I've tried typing both things into the console with no avail.
Help?