[PREMIUM] - Supreme Lazer V3 (Fortnite)

Post Reply
User avatar
RobinHood
Site Admin
Posts: 265
https://www.facebook.com/meble.kuchenne.krakow/
Joined: Mon Dec 02, 2024 5:21 pm
Has thanked: 2 times
Been thanked: 7 times

[PREMIUM] - Supreme Lazer V3 (Fortnite)

Post by RobinHood »



Name: [PREMIUM] - Supreme Lazer V3
Category: Fortnite
Author: RobinHood
Description:

/*============================================================================================================================|
| SUPREME LAZER V3 (UPDATED BY ZEN MASTER)
Please read the instructions before programming the script to the zen. READ THE INSTRUCTIONS -- READ THE INSTRUCTIONS       |
| This section below you can change a few buttons to your own personal preference. TRUE; means ON FALSE means OFF             |
/*============================================================================================================================|
/* User Defines - DON'T CHANGE BELOW */
define SINGLE_SLOT = 0, LEGACY = 0, RUMBLE = 1, SUPREME = 2;
/* Done User Defines - DON'T CHANGE ABOVE *//*
|=============================================================================================================================|
| Choose OLED background color. TRUE for White background, FALSE for Black background*/   define oled_bg_white = FALSE;    /* |
|=============================================================================================================================|
| Slots System - Enter Slots numbers where you put this script on.                                                            |
| It should be comma seperated and the last element without comma. Possible Values: Between 1 and 8.                          |
| ~ Examples ~                                                                                                                |
| { 1, 4, 5  }     | Equal to: You have the script on slots 1 2 and 3.                                                        |
| { SINGLE_SLOT }  | Equal to: You have the script only on one slot.                                                          |
| NOTE: The order you set the slots will be the order of switching between them.                                              |
|                                                                    |*/  const int8 slots[] = { SINGLE_SLOT };            /* |
|=============================================================================================================================|
| Sensitivity and Deadzone. Important for AdvanceAim !!              |*/  define ingamesens = 7;                           /* |
| Match those as in your Game.                                       |*/  define ingamedz   = 5;                           /* |
|=============================================================================================================================|
| Main Menu Buttons.                                                 |*/  define mod_menu_button_hold = PS4_L2;            /* |
|                                                                    |*/  define mod_menu_button_press = PS4_OPTIONS;      /* |
|=============================================================================================================================|
| Loadout Menu Buttons.                                              |*/  define loadout_menu_button_hold = PS4_OPTIONS;   /* |
|                                                                    |*/  define loadout_menu_button_load = PS4_L2;        /* |
|                                                                    |*/  define loadout_menu_button_save = PS4_L1;        /* |
|=============================================================================================================================|
| Weapons Menu Buttons.                                              |*/  define weapons_menu_button_hold = PS4_L2;        /* |
|                                                                    |*/  define weapons_menu_button_press = PS4_PS;       /* |
|=============================================================================================================================|
| Gulag Mod Buttons.                                                 |*/  define gulag_button_hold = PS4_OPTIONS;          /* |
|                                                                    |*/  define gulag_button_press = PS4_TRIANGLE;        /* |
|=============================================================================================================================|
| Kill Switch Buttons.                                               |*/  define killswitch_button_hold = PS4_L2;          /* |
|                                                                    |*/  define killswitch_button_press = PS4_SHARE;      /* |
|=============================================================================================================================|
| Slot System Buttons.                                               |*/  define slot_system_button_hold = PS4_OPTIONS;    /* |
|                                                                    |*/  define slot_system_button_next = PS4_RIGHT;      /* |
|                                                                    |*/  define slot_system_button_prev = PS4_LEFT;       /* |
|=============================================================================================================================|
| Quick Toggles Buttons.                                             |*/  define qtoggles_button_hold        = PS4_L2;     /* |
| Quick Toggles for:                                                 |*/  define qtoggles_button_trickshot   = PS4_DOWN;   /* |
| TrickShot, AdvanceSens(Far/Close), RapidFire, AkimboFire.          |*/  define qtoggles_button_advancesens = PS4_UP;     /* |
|                                                                    |*/  define qtoggles_button_rapidfire   = PS4_RIGHT;  /* |
|                                                                    |*/  define qtoggles_button_akimbofire  = PS4_LEFT;   /* |
|=============================================================================================================================|
| Enable or Disable Rumble when switching Profile                    |*/  define profile_switch_rumble = TRUE;             /* |
|=============================================================================================================================|
| Enable or Disable If you want to use 1 button to switch profiles 1 or 2     |*/ define one_button_press = TRUE;          /* |
|=============================================================================|                                               |
| Enable or Disable If you want to use 2 buttons to switch profiles 1 or 2    |*/ define two_button_press = TRUE;          /* |
| Choose your buttons for 2 buttons to switch profiles               |*/  define profile_switch_button_hold = PS4_L2;      /* |
|                                                                    |*/  define profile_switch_button_prim = PS4_TRIANGLE;/* |
|                                                                    |*/  define profile_switch_button_sec = PS4_CIRCLE;   /* |
|=============================================================================================================================|
| Master Switch for WeaponAI Presets RapidFire.                                                                               |
| Disable will disable for any semi auto guns.                       |*/  define WAI_RAPIDFIRE = TRUE;                     /* |
|=============================================================================================================================|
| Turbo Melee - Choose your desire mode:                                                                                      |
| LEGACY - When hold Melee button it will activate Turbo Melee.                                                               |
| SUPREME - Double press and hold Melee button it will activate TurboMelee.                                                    |
|                                                                    |*/  define turbomelee_mode = SUPREME;                 /* |
| NOTE: Turn On/Off from the menu.                                   |*/  define turbomelee_jump = TRUE;                   /* |
|=============================================================================================================================|
| Easy Fire - Choose your desire mode:                                                                                        |
| 0 - On ADS, Fire.                                                                                                           |
| 1 - On Fire, ADS.                                                                                                           |
| 2 - Both (0) and (1) modes.                                        |*/  define easyfire_mode = 2;                        /* |
| NOTE: Turn On/Off from the menu.                                                                                            |
|=============================================================================================================================|
| Shot Mods (Prone Shot, Strafe Shot, Ghost Peek)                                                                             |
| Choose your desire mode:                                                                                                    |
| 0 - Activate On Fire.                                                                                                       |
| 1 - Activate On Fire Without ADS.                                                                                           |
| 2 - Activate On Fire With ADS.                                                                                              |
| Choose individual mode per Shotmod.                                               { Prone Shot, Strafe Shot, Ghost Peek }   |
| NOTE: Turn On/Off from the menu.                 |*/ const int8 shotmods_mode[] = { 1,          1,           1 };        /* |
|=============================================================================================================================|
| Shot Mods (Prone Shot, Strafe Shot, Ghost Peek)                                                                             |
| Set Values for them.                             |*/  define Prone_Speed     = 80;                                        /*|
|                                                  |*/  define Strafe_Time     = 500;                                       /*|
|                                                  |*/	define GhostPeek_Delay = 25;                                        /*|
|=============================================================================================================================|
| EnemyPing - continues firing delay                                                                                       /* |
| NOTE: Turn On/Off from the menu.                                   |*/  define enemyping_delay = 2000;                   /* |
|=============================================================================================================================|
| Easy Prone - Choose your activation button:                                                                                 |
| NOTE: Turn On/Off from the menu.                                   |*/  define easyprone_button = PS4_L3;                /* |
|=============================================================================================================================|
| Hair Triggers Mod - If TRUE will be ON, If FALSE will be OFF       |*/  define toggle_hairtrigger = FALSE;               /* |
|=============================================================================================================================|
| Smart Grenade throw values.                                        |*/  define smartgrenade_throwdelay = 2600;           /* |
| NOTE: Turn On/Off from the menu.                                   |*/  define smartgrenade_safedelay = 3200;            /* |
|=============================================================================================================================|
| Smart C4 throw values.                                             |*/  define smartc4_throwdelay   = 500;               /* |
| NOTE: Turn On/Off from the menu.                                   |*/  define smartc4_explodedelay = 1000;              /* |
|=============================================================================================================================|
| Loadouts Names - You can change the names of the Loadouts                                                                   |
| NOTE: Max characters (including spaces) for the text is 17 !!!                                                              |
|*/     const string LOADOUTS_TEXT[] = { "Custom Loadout 1",
                                         "Custom Loadout 2",
                                         "Custom Loadout 3",
                                         "Custom Loadout 4",
                                         "Custom Loadout 5",
                                         "MAX SIZE POSSIBLE"}; /* LEAVE_AS_IS_DONT_TOUCH                                      |
|=============================================================================================================================|
| Slide Cancel Activition Mode                                                                                                |
| Choose between LEGACY or RUMBLE or SUPREME Mode                                                                              |
| LEGACY - When walk and press Crouch Button will perform SlideCancel.                                                        |
| RUMBLE - Same as LEGACY but working with InGame Rumble to detect slide.                                                     |
| SUPREME - Smart Activate - When Walk, Sprint and press Crouch button will perform SlideCancel.                               |
| NOTE: If you running Any kind of InGame AutoRun - Choose LEGACY or RUMBLE.|*/ define slidecancel_activate_mode = LEGACY; /* |
|=============================================================================================================================|
| Slide Cancel - Slide Delay                                                |*/ define slidecancel_slide_delay = 80;       /* |
|=============================================================================================================================|
                             PLEASE READ THE INSTRUCTIONS BELOW ON HOW TO ACTIVATE MODS   
============================================================================================================================
==== Enter Mod Menu                                         ===== Hold L2/LT and tap OPTIONS/MENU                        ===
============================================================================================================================
==== To edit any mods in the modMenu                        ===== Press CROSS/A to EDIT                                  ===
============================================================================================================================
==== Navigate between every mod and toggles on the ZEN Menu ===== Tap LEFT or RIGHT on the D-PAD                         ===
============================================================================================================================
==== Enable or Disable the diplayed mod                     ===== Tap UP for ON == Tap DOWN for OFF                      ===
============================================================================================================================
==== Switch Loadouts In Mod Menu                            ===== Tap Y/TRIANGLE                                         ===
============================================================================================================================
==== Switch Loadouts In Game                                ===== USER DEFINED BUTTONS                                   ===
============================================================================================================================
==== Edit availble Mods                                     ===== Press CROSS/A OR Press CIRCLE/B to Exit Mod            ===
============================================================================================================================
==== Edit Values In available Mods                          ===== Hold L2/LT & Tap RIGHT to increase + 1                 ===
                                                            =====              Tap LEFT to decrease  - 1                 ===
                                                            =====              Tap UP   to increase  + 10                ===
                                                            =====              Tap DOWN to decrease  - 10                ===
============================================================================================================================ 
==== Navigate between values available in the editable mods ===== Tap LEFT Or RIGHT                                      ===
============================================================================================================================
==== To SAVE all mods that have been edited & enabled       ===== Press XBOX/PS Button == Screen Will display "SAVED"    ===
============================================================================================================================
==== To exit Mod Menu once you have saved it                ===== Hold L2/LT and Tap OPTIONS/MENU                        ===
============================================================================================================================
==== Kill Switch (Disable Everything)                       ===== Hold LT/L2 & Double Tap SHARE/VIEW                     ===
/*========================================================================================================================== 
============================================================================================================================*/

File: Supreme_Lazer_V3.gpc
Size: 100.86 KiB

View download: [PREMIUM] - Supreme Lazer V3 (Fortnite)
Post Reply