24.03.2017, 13:01
(
Last edited by AjaxM; 27/03/2017 at 02:01 PM.
)
Shot Recorder
Version: v0.1
Last updated: N/A
DescriptionVersion: v0.1
Last updated: N/A
This filterscript allows to you save all the shots a player shot and saves them with the bodypart type.
Media
Features
- See all your shots in /shots (or other's shots with /shots [ID])
- Easily edited
- Uses MySQL R39-6 by BlueG
- User friendly
- Readablilty
- Good performance
AjaxM - The script
SA-MP Team - SA-MP
BlueG - MySQL
Yashas / Zeex - I-ZCMD
Pottus - Pointed out things to be fixed
oMa37 - Pointed out the fix for github
Bugs
Tested ; No bugs found.
Table Creation
You should manually create the table with the following code:
PHP Code:
CREATE TABLE `YOUR_PORT_HERE`.`ShotRecords`(
`ID` INT(15) NOT NULL AUTO_INCREMENT ,
`Name` VARCHAR(25) NOT NULL ,
`Chest` INT(11) NOT NULL ,
`Torso` INT(11) NOT NULL ,
`LeftArm` INT(11) NOT NULL ,
`RightArm` INT(11) NOT NULL ,
`LeftLeg` INT(11) NOT NULL ,
`RightLeg` INT(11) NOT NULL ,
`Head` INT(11) NOT NULL ,
`Missed` INT(15) NOT NULL ,
PRIMARY KEY (`ID`))
ENGINE = InnoDB;
Download
GITHUB
Thanks & enjoy.