[FREE] - FPS AiO (PUBG)

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

[FREE] - FPS AiO (PUBG)

Post by RobinHood »



Name: [FREE] - FPS AiO
Category: PUBG
Author: RobinHood
Description:

// GPC Online Library
// FPS_AiO_Mouse__Keyboard_Mods_For_Warzone_PubG_Apex_Battlefield_1_09.gpc

// GPC Online Library
// fps_aio_mnk_-_warzone,_pubg,_apex,_battlefield_-.gpc
// Originally presented by Glozz3n
// Latest modification added by kablammy
// Verson 1.09 ( file save 49 )
/*


Current mods in this script :

auto movement - circle walk - binary trigger - rapid fire - semi auto - anti recoil X and Y -
auto spot - turbo melee - auto sprint - aim assist - jump shot - crouch shot - prone shot -
quick scope - quick slide cancel ( optional stay crouched or return to standing after slide cancel ) - 
sprint slide repeat - auto slide repeat - easy inventory keys - alternate ping key - 
always double tap sprint key option

	YOU WILL NEED TO ASSIGN WHICH KEYBOARD KEYS YOU WANT TO TOGGLE THE DIFFERENT MODS IN THIS SCRIPT.
	I PERSONALLY USE THE F1-F12 KEYS, BUT YOU CAN SET THESE TO BE WHATEVER YOU LIKE BY CHANGING THE NAME OF THE KEY.
	
	IF YOU REQUIRE ASSISTANCE GETTING EVERYTHING SETUP, PLEASE LEAVE A COMMENT IN ONE OF MY YOUTUBE VIDEOS AND I WILL GET BACK TO YOU ASAP.
	
	EX: "RAPID_FIRE_KEY" WILL TOGGLE THE RAPID-FIRE MOD ON/OFF. BY DEFAULT, IT IS SET TO TOGGLE ON/OFF USING THE F2 KEY ON YOUR KEYBOARD "KEY_F2"
		 IF YOU WANT TO USE A DIFFERNT KEYBOARD KEY TO TOGGLE THIS MOD, REPLACE "KEY_F2" WITH WHATEVER KEYBOARD KEY YOU WANT TO USE.
		 YOU CAN FIND A LIST OF KEYBOARD KEY IDENTIFIERS HERE: https://gpc.cronusmax.com/constants/key ... -constants


		 
	IF YOU HAVE DOWNLOADED THIS SCRIPT, PLEASE SUBSCRIBE TO MY YOUTUBE CHANNEL SO THAT YOU CAN RECEIVE UPDATES ON NEW SCRIPT RELEASES.
	I HAVE TONS OF TUTORIALS AND DEMONSTRATION VIDEOS AND YOUR SUPPORT MAKES ALL OF THIS POSSIBLE. THANK YOU FOR SUPPPORTING MY CHANNEL.
	Thank you very much for supplying this script Mr. GL0ZZ3N ! ( from kablammy )
	
	https://www.youtube.com/GL0ZZ3NTECHREVIEWS
	
	CREDITS TO BATTS FOR THE AIM-ASSIST MOD USED IN THIS SCRIPT - Batts_Sticky_Aim_Assist.gpc
	
	***************** COMMENTS AND MODS MADE BY KABLAMMY *******************
	
	Added X axis for recoil management
	I just named current axis as Y and copied / pasted / changed Y to X on copy .
	Set to use HOME key to turn on / off and INSERT to adjust left and DELETE to adjust right .
	I also copied the invert bool - in case someone wants to reverse the direction of 
	correction using the INSERT and DELETE keys .  Is working fine .  

	I corrected code causing a compiler warning of a comparison using = instead of == .
	I uncommented a section which stated that it caused crashes on the author's Zen . 
	It is not crashing for me . 
	Maybe that equality warning was causing the crash ? ? ?  
	The original commented line in question :
	//if((get_val(XB1_RT)) && (get_rumble(RUMBLE_A)) > 90){ // This line is causing my Zen to crash, so I removed this for now.
	I changed it to :
	if((get_val(FIRE_BUTTON)) && (get_rumble(RUMBLE_A) > 90){
	If you get a crash then replace the comment and uncomment the safer and less precise code .

	One other correction made : turbo melee used a hard coded key definition .
	
	I have a question to the person who preface their semi-colons with a space ...
	Since the internet first started, I have been putting spaces almost all around punctuations .  
	But not usually commas or semicolons .
	I guess it just looks weird when I do it, but I like it when you did it .  Maybe I will transition .
	I started doing it because periods at the end fo links would consistantly get highlighted and copied ...  
	Someone finally woke up later in the Windows world and stopped it ...
	
	Old and cranky note : If you would have started out with monochrome monitors - you would not have appreciated 
	no spaces after commas in the code ...
	( Most have commas - only a few don't ? ? ? )
	
	Added an immediate - fast slide cancel and a perpetual sprint slide repeat .
	There is a quick ' one shot ' slide cancel that stops you immediately and a continuous sprint slide repeat 
	that allows you to just hold the forward button and it will keep sprinting and sliding - tactical running .
	( it stops when you release the forward button ). Or if you set autoSlideRepeat to TRUE then you
	can release the forward button and use the JUMP BUTTON or whatever key you set for STOP_AUTO_SLIDE_REPEAT to stop
	the auto slide .  You can change the initial setting for autoSlideRepeat in the code and you can press the
	AUTO_SLIDE_REPEAT_KEY to enable / disable the autoSlideRepeat .  Also the quick slide cancel has option to
	stay crouched or return to standing after the quick slide cancel .  Change returnToStanding option below .
	If you would rather hold the key down then set autoSlideRepeat to FALSE .
	The repeat slide cancel is set to about one second but the values can be changed on both quick and repeat .  
	This will make it easy to travel long distances without having to keep pressing the buttons over and over .
	
	Added INVENTORY_MOD_KEY = KEY_BACKSLASH;  // modify inventory to use alternate keypresses for inventory functions
    default KEY_DOWN is tactical XBox controller setting for inventory - while KEY_DOWN pressed the KEY_LEFT and KEY_RIGHT 
    will move inventory selection and KEY_COMMA drop one - KEY_DOT drop all - KEY_SLASH request
    Added always double tap sprint - this allows tactical sprint when running or sprinting with one tap - to use this
  	you need to assign the proper XBox button to the SPRINT_KEY variable below - default for me is KEY_CAPSLOCK
		
	Check the : combo ANTI_RECOIL_Y()
	I turned 18 lines of code into 5 lines of code - TADA !
	
	v. 1.01 corrected bug where negative numbers displayed garbage function NumberToString
	v. 1.02 corrected error in combo ANTI_RECOIL_X
	v. 1.03 added alternate ping key option ( spot key )
	v. 1.04 fixed bug with not stopping toggles : auto slide repeat : alt ping : inventory mod 
	v. 1.05 corrected comment typos and added suggestion for adding a bool : val1, val2 function to the compiler
	Check the comments under the : combo ANTI_RECOIL_Y() code revision - the 6 lines of code could be 3 lines
	v 1.06 added additional comments listing current mods at top of script
	v 1.07 improved sprint slide repeat - added sprint and slide time options / adjustments
	v 1.08 added return to standing option after quick slide cancel
	V 1.09 added always double tap sprint key option
	
	tried to add ability to set useMyCurrentPreferences to allow a list of toggles to be activated at startup
	BUT IT DOESN'T RUN THE TOGGLES - somebody help - check the commented code at the start
	

	***************** END OF COMMENTS AND MODS MADE BY KABLAMMY *******************

*/

/*
HOW TO TUNE ANTI-RECOIL:
	After pressing the F4 key you will see the recoil values on the Zen display when you press the keys to adjust .
	
	Y axis :
	If your gun moves UP when your fire, you need to use a LARGER number for your anti_recoil_Y_strength setting. 
	If your gun moves DOWN towards the ground when your fire, you need to use a SMALLER number for your anti_recoil_Y_strength setting. 
		
	X axis :
	If your gun moves LEFT when your fire, you need to use a LARGER number for your anti_recoil_X_strength setting. 
	If your gun moves RIGHT towards the ground when your fire, you need to use a SMALLER number for your anti_recoil_X_strength setting.
	
VERTICAL ADJUSTMENT ( original settings )
	Adjust vertical recoil adjustment value with the Page Up ( KEY_PAGEUP ) and Page Down ( KEY_PAGEDOWN ) keys .  

HORIZONTAL ADJUSTMENT
	Adjust verical recoil adjustment value with the Insert ( KEY_INSERT ) and Delete ( KEY_DELETE ) keys .

HOW TO FINE-TUNE RECOIL VALUES IN-GAME:
		1: Go into ADS and start FIRING YOUR GUN.
		2a: If your gun moves UP, you need to press the "INCREASE_ANTI_RECOIL_Y_STRENGTH_KEY" that you have set below until your gun stays level while firing.
		2b: If your gun moves DOWN, you need to press the "DECREASE_ANTI_RECOIL_Y_STRENGTH_KEY" that you have set above until your gun stays level while firing.
		
		The horizontal fine tuning operates in a similar fashion .
		ex: 
		If your gun is shooting down, towards the ground when you are firing, hold the FIRE-BUTTON and keep tapping "DECREASE_ANTI_RECOIL_STRENGTH_KEY" until your gun stays level.
*/


File: FPS_AiO_Mouse__Keyboard_Mods_For_Warzone_PubG_Apex_Battlefield_1_09.gpc
Size: 57.33 KiB

View download: [FREE] - FPS AiO (PUBG)
Post Reply