Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Latest commit

 

History

History
65 lines (46 loc) · 1.34 KB

preset.md

File metadata and controls

65 lines (46 loc) · 1.34 KB

Introduction

You can disable/enable class/skill for class with `preset.js

Path: <ping-compensation-folder>/config/preset.js

How To

Preset.js contains all clases in specific format + skills (specific format) but you can detect classes/skills by comments

// Warrior or // Gunner or 2: true, // Evasive Roll

Preset change

Basic info

"enabled" - class activated <Id>: true - skill activated

Activation

Example:

0: { // Warrior
		"enabled": true,
		1: true, // Combo Attack
		2: true, // Evasive Roll
		3: true, // Torrent of Blows
		4: true, // Rain of Blows
		5: true, // Battle Cry
		8: true, // Assault Stance
		9: true, // Defensive Stance

0: { // Warrior - class Warrior

"enabled":true, - class activated

1: true, // Combo Attack - combo attack compensation activated

Deactivation

Example:

0: { // Warrior
		"enabled": false,
		1: false, // Combo Attack
		2: false, // Evasive Roll
		3: true, // Torrent of Blows
		4: false, // Rain of Blows
		5: false, // Battle Cry
		8: true, // Assault Stance
		9: true, // Defensive Stance

0: { // Warrior - class Warrior

"enabled":false, - class deactivated (if class deactivated then all settings for skills will be ignored and emulation for class will be disable)

1: false, // Combo Attack - combo attack compensation deactivated