GithubHelp home page GithubHelp logo

fred0r / accuracyfix Goto Github PK

View Code? Open in Web Editor NEW

This project forked from smileyzn/accuracyfix

0.0 0.0 0.0 368 KB

Counter-Strike 1.6 Accuracy Fix Plugin for MetaMod and ReGameDLL_CS

License: GNU General Public License v3.0

C++ 61.12% C 38.67% Makefile 0.15% Batchfile 0.06%

accuracyfix's Introduction

Counter-Strike 1.6 Accuracy Fix

Counter-Strike 1.6 Accuracy Fix Plugin for MetaMod and ReGameDLL_CS

GitHub Issues GitHub Workflow Status GitHub Workflow Status

About Plugin

This works with TraceLine function from Half-Life Engine, and make the default CS aim better.

It also can control weapons recoil, but that is not the real objective of plugin!


Settings and variables

Click to open
// Accuracy of all weapons
// If is set, it will replace all weapon variables
// The default distance to fix trace line is 8192.0
// Set to -1.0 to disable and use individual weapon values
//
// Default "-1.0"
//
af_accuracy_all     "-1.0"

// Accuracy of each weapon
// The default distance to fix trace line is 8192.0
//
// Default "8192.0"
//
af_accuracy_weapon_ak47 	"8192.0"
af_accuracy_weapon_aug 		"8192.0"
af_accuracy_weapon_awp 		"8192.0"
af_accuracy_weapon_deagle 	"8192.0"
af_accuracy_weapon_elite 	"8192.0"
af_accuracy_weapon_famas	"8192.0"
af_accuracy_weapon_fiveseven	"8192.0"
af_accuracy_weapon_g3sg1 	"8192.0"
af_accuracy_weapon_galil 	"8192.0"
af_accuracy_weapon_glock 	"8192.0"
af_accuracy_weapon_glock18 	"8192.0"
af_accuracy_weapon_m249 	"8192.0"
af_accuracy_weapon_m3 		"2020.0"
af_accuracy_weapon_m4a1 	"8192.0"
af_accuracy_weapon_mac10 	"8192.0"
af_accuracy_weapon_mp5navy 	"8192.0"
af_accuracy_weapon_p228 	"8192.0"
af_accuracy_weapon_p90 		"8192.0"
af_accuracy_weapon_scout 	"8192.0"
af_accuracy_weapon_sg550 	"8192.0"
af_accuracy_weapon_sg552 	"8192.0"
af_accuracy_weapon_tmp 		"8192.0"
af_accuracy_weapon_ump45 	"8192.0"
af_accuracy_weapon_usp 		"8192.0"
af_accuracy_weapon_xm1014 	"2020.0"

// Recoil of all weapons
// If is set, it will replace all weapon variables
// The default recoil of an weapon is 1.0
// Set to -1.0 to disable and use individual weapon values
//
// Default "-1.0"
//
af_recoil_all 			"-1.0"

// Recoil control of each weapon
// The default value to control recoil need to be lesss than 1.0
// Set to -1.0 to disable and use default weapon value
//
// Default "1.0"
//
af_recoil_weapon_ak47 		"1.0"
af_recoil_weapon_aug 		"1.0"
af_recoil_weapon_awp 		"1.0"
af_recoil_weapon_deagle 	"1.0"
af_recoil_weapon_elite 		"1.0"
af_recoil_weapon_famas		"1.0"
af_recoil_weapon_fiveseven	"1.0"
af_recoil_weapon_g3sg1 		"1.0"
af_recoil_weapon_galil 		"1.0"
af_recoil_weapon_glock 		"1.0"
af_recoil_weapon_glock18 	"1.0"
af_recoil_weapon_m249 		"1.0"
af_recoil_weapon_m3 		"1.0"
af_recoil_weapon_m4a1 		"1.0"
af_recoil_weapon_mac10 		"1.0"
af_recoil_weapon_mp5navy 	"1.0"
af_recoil_weapon_p228 		"1.0"
af_recoil_weapon_p90 		"1.0"
af_recoil_weapon_scout 		"1.0"
af_recoil_weapon_sg550 		"1.0"
af_recoil_weapon_sg552 		"1.0"
af_recoil_weapon_tmp 		"1.0"
af_recoil_weapon_ump45 		"1.0"
af_recoil_weapon_usp 		"1.0"
af_recoil_weapon_xm1014 	"1.0"

// Aim distance check for all weapons
// If is set, it will replace all weapon variables
// The default aim distance check of an weapon is 2000.0
// Set to -1.0 to disable and use individual weapon values
//
// Default "-1.0"
//
af_distance_all 		"-1.0"

// Aim distance check of each weapon
// The default distance check aim is 8192.0
//
// Default "8192.0"
//
af_distance_weapon_ak47 	"8192.0"
af_distance_weapon_aug 		"8192.0"
af_distance_weapon_awp 		"8192.0"
af_distance_weapon_deagle 	"8192.0"
af_distance_weapon_elite 	"8192.0"
af_distance_weapon_famas	"8192.0"
af_distance_weapon_fiveseven	"8192.0"
af_distance_weapon_g3sg1 	"8192.0"
af_distance_weapon_galil 	"8192.0"
af_distance_weapon_glock 	"8192.0"
af_distance_weapon_glock18 	"8192.0"
af_distance_weapon_m249 	"8192.0"
af_distance_weapon_m3 		"8192.0"
af_distance_weapon_m4a1 	"8192.0"
af_distance_weapon_mac10 	"8192.0"
af_distance_weapon_mp5navy 	"8192.0"
af_distance_weapon_p228 	"8192.0"
af_distance_weapon_p90 		"8192.0"
af_distance_weapon_scout 	"8192.0"
af_distance_weapon_sg550 	"8192.0"
af_distance_weapon_sg552 	"8192.0"
af_distance_weapon_tmp 		"8192.0"
af_distance_weapon_ump45 	"8192.0"
af_distance_weapon_usp 		"8192.0"
af_distance_weapon_xm1014 	"8192.0"

accuracyfix's People

Contributors

smileyzn avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.