Sondermuell wrote: ↑Sun Dec 29, 2019 10:53 am
is there a way to NOT have everything enabled by default ? i only want the salvage maxer, but when i run the table everything else is on too, cbills get nailed to the 10mil value, etc etc.
Yes there is... you either need to open the .CT script with Notepad or another text-editor and edit those lines to look like this:
// On foot
bEnableMovementSpeedMod:
dd 0
fMovementSpeedMod:
dd (float)1.5
bEnableJumpSpeedMod:
dd 0
fJumpSpeedMod:
dd (float)1.25
// In computer
bEnableMinCash:
dd 0
iMinCash:
dq (int)20000000
bEnablePilotSkillPatcher:
dd 0
iMinSkillCap:
dd (int)5
bEnableMechTonnageMod:
dd 0
fMechTonnageMod:
dd (float)0.75
bEnableMinWeaponCount:
dd 0
iMinWeaponCount:
dd (int)8
bEnableMinEquipmentCount:
dd 0
iMinEquipmentCount:
dd (int)12
bEnableRefitCostMod:
dd 0
fRefitCostMod:
dd (float)0.5
bEnableRefitTimeMod:
dd 0
fRefitTimeMod:
dd (float)0.5
bEnableDeployAnyTons:
dd 0
bEnableSalvageMaxer:
dd 1
// In mech
bEnableGodMode:
dd 0
bEnableNoRecoil:
dd 0
bEnableInfiniteAmmo:
dd 0
bEnableDamageMod:
dd 0
fDamageMod:
dd (float)0.5
bEnableMechCooldownMod:
dd 0
fMechCooldownMod:
dd (float)2.0
bEnableWeaponCooldownMod:
dd 0
fWeaponCooldownMod:
dd (float)2.0
bEnableInfiniteJumpJet:
dd 0
bEnableJumpJetVerticalSpeedMod:
dd 0
fJumpJetVerticalSpeedMod:
dd (float)1.5
bEnableJumpJetForwardSpeedMod:
dd 0
fJumpJetForwardSpeedMod:
dd (float)1.5
(=> dd 0 = disabled, dd 1 = enabled)
or you run the script once in Cheat Engine and just disable every other option (hit Enter and choose Disabled) and save the script after editing it to your liking.