Shot Recorder
Version: v0.1
Last updated: N/A
Version: v0.1
Last updated: N/A
Description
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
Credits
AjaxM - The script
SA-MP Team - SA-MP
BlueG - MySQL
Yashas / Zeex - I-ZCMD
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
Note: You will find '^M' in everywhere in the script ; Don't worry, copy the code and paste it to your .PWN and it will be all gone.
Thanks & enjoy.