Replies: 1 comment 10 replies
-
|
Currently, more than 20 different plugins interact with |
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Proposal: Save Antiban Settings to
profile.jsonSummary
Currently, all antiban settings (
Rs2AntibanSettings) are static booleans, integers, and doubles that reset on every client restart. Users must reconfigure them manually each time.This proposal introduces persistence by saving and loading these settings to/from a
profile.jsonfile.Goal
profile.json) in the client config directory.Example of settings in the
profile.json{ "antibanEnabled": true, "actionCooldownActive": false, "microBreakActive": false, "takeMicroBreaks": true, "microBreakDurationLow": 3, "microBreakDurationHigh": 15, "actionCooldownChance": 0.1, "microBreakChance": 0.1, "moveMouseRandomlyChance": 0.1, "moveMouseOffScreenChance": 0.1, "naturalMouse": true, "moveMouseOffScreen": false, "moveMouseRandomly": false, "simulateFatigue": false, "simulateAttentionSpan": false, "behavioralVariability": false, "dynamicIntensity": false, "dynamicActivity": false, "contextualVariability": false, "profileSwitching": false, "universalAntiban": false, "devDebug": false, "overwriteScriptSettings": false }Beta Was this translation helpful? Give feedback.
All reactions