This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Based on Nbjohnston86's simple_tes3mp_deploy script. | |
## Just fixes a few bugs dealing with files. | |
## https://github.com/Nbjohnston86/simple_tes3mp_deploy/ | |
## any error will stop the script. | |
set -e | |
## parameter 1: tes3mp binaries | |
if [ -z "$1" ] | |
then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////////////////// | |
/* | |
These are the results of 1 minute of samp-precise-timers accuracy tests in a server with NPCs and several other timers w/ moderately sized functions on each actively running. | |
Please note that the most severe innacuracies are most likely to be caused by the time it takes the AMX instance to finish a callback before serving the Timer's call rather than the timer itself being inaccurate. | |
The results display that even in these conditions the timer's accuracy remains within a <1% threshold, 99% of the time. | |
Data compiled by Markski | |
*/ | |
////////////////// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
2019 by Markski. mrks.cf | |
The function CalculateSGHitPellets is for calculating the hit pellets of a Sawn-Off shotgun or a Pump Action shotgun. | |
The function CalculateCSGHitPellets is for calculating the hit pellets of a Combat shotgun. | |
The functions should only be called if the weaponid is the correct one for each. (Combat Shotgun: 27, Sawn-Off: 26, Pump Action: 25) |