Page 1 of 1

How to change default settings of the table?

Posted: Mon Jan 21, 2019 9:01 am
by krul
I have a table which opens only when there is executable running. I can't change it before because parameters are not visible before.

How can I change default settings like booleans true or false and save table that way?

Re: How to change default settings of the table?

Posted: Mon Jan 21, 2019 2:06 pm
by TimFun13
You'd likely have to edit the table itself, depends on how it's setup and were/how the settings are stored. Post a link to the table or the table itself, else we're just guessing.

Re: How to change default settings of the table?

Posted: Tue Jan 22, 2019 6:16 pm
by krul
ShyTwig16 wrote:
Mon Jan 21, 2019 2:06 pm
You'd likely have to edit the table itself, depends on how it's setup and were/how the settings are stored. Post a link to the table or the table itself, else we're just guessing.
viewtopic.php?p=28821#p28821

Re: How to change default settings of the table?

Posted: Tue Jan 22, 2019 7:28 pm
by TimFun13
krul wrote:
Tue Jan 22, 2019 6:16 pm
...
viewtopic.php?p=28821#p28821
Look in the script, there is a section were it's marked.

Code: Select all

//...
////////////////////////////////////
// Tweak thy default settings here.
bEnableGodMode:
dd 1
bEnableInfiniteEve:
dd 1
bEnablePlayerIngorance:
dd 1
bEnableNoReload:
dd 1
bEnableWeaponFirerateMod:
dd 1
fWeaponFirerateMod:
dd (float)5.0
bEnableWeaponRecoilMod:
dd 1
fWeaponRecoilMod:
dd (float)0.0
bEnableWeaponSpreadMod:
dd 1
fWeaponSpreadMod:
dd (float)0.0
bEnableMoveSpeedMod:
dd 1
fMoveSpeedMod:
dd (float)1.33333333
bEnableJumpHeightMod:
dd 1
fJumpHeightMod:
dd (float)1.4
bEnableInfiniteItems:
dd 1
bEnableInvisibility:
dd 1
//...