CodePalResult Fornite
CodePalResult Fornite
/** @private */
this.aimAssist = aimAssist;
/** @private */
this.headTracking = headTracking;
}
/**
* Getter method to retrieve the polar aim setting.
*
* @returns {boolean} Whether polar aim is enabled.
*/
getPolarAim() {
return this.polarAim;
}
/**
* Getter method to retrieve the aim assist setting.
*
* @returns {boolean} Whether aim assist is enabled.
*/
getAimAssist() {
return this.aimAssist;
}
/**
* Getter method to retrieve the head tracking setting.
*
* @returns {boolean} Whether head tracking is enabled.
*/
getHeadTracking() {
return this.headTracking;
}
/**
* Activates the Fortnite script with the specified settings.
*/
activateScript() {
// Code to activate the Fortnite script with the specified settings
console.log("Fortnite script activated!");
console.log(`Polar Aim: ${this.polarAim}`);
console.log(`Aim Assist: ${this.aimAssist}`);
console.log(`Head Tracking: ${this.headTracking}`);
}
}
// Create a new Fortnite script with polar aim, aim assist, and head tracking
enabled
const fortniteScript = new FortniteScript(true, true, true);