I came across this video testing the limits of the forcefield feature (which is really fun to mess with haha), and in the video he changed a value to increase its strength, but I don't know what file the value is in, as he doesn't show it, only the small snippet of code he was changing that was cropped in view. Where can I find this value?
The force field code is located in lua/ge/extensions/gameplay/forceField.lua The values you can see in the video are at the top of the file. You can also change the force field strength by executing the following code in the console: Code: gameplay_forceField.setForceMultiplier(value) gameplay_forceField.activate() Instead of value, input a number. Positive values push objects away from you, negative values pull objects toward you.