[Release] [OLD/NO-SUPPORT] MDT & Character & Vehicle Reg System & Licenses - Fully Ingame [1.5]

Whenever I do /mdt it just has a complete Error, and when I go to do the rest of the commands, nothing shows, I have the SQL in without problems

Itā€™s a really sick script man, good job

1 Like

So perfect man ! I re-install and now : everything is working ! for /mdt commands, dont forget to be in emergency classed vehicles ! Have fun, Peace !

1 Like

it is possible create two character?

No, You need to code that by your own then. In the future more characters may become a thing but i have another project i prior right now.

For the DMV, the /flashid isnt working, its just popping up with CMD_LOD_ERR?

Hey dude, so everything is working fine, but idk how or where to get a san andreas ID cardā€¦?

You need to have a valid character to be avail to use that command. Otherwise it cant load detials for the character. Also be sure to have steam running

Hey, hello, for a long time there was no news about this system. Will we expect something in the future? And is it possible to create several registered characters, I could realize it I think :thinking:

I know this isnā€™t being worked on anymore , but does anyone know of a work around for the plates with a space in them ? Any plate without a space works, I read above to just delete the space but it still doesnā€™t work. All the player plates read like this ā€œP 264RNTā€ with the space BUT , P264RNT or 264RNT wont work either. Any help would be greatly appreciated.

iv noticed that i car register any car to me, is there a way to register only cars that been purchased in car dealer?

well its 2 files wont transfer and itts not working for me

where is my database (im new to this stuff)

Iā€™ve found this searching on github, i didnā€™t tested it, but let me know !

--
-- Tabellstruktur `chars`
--

CREATE TABLE IF NOT EXISTS `chars` (
  `ID` int(11) NOT NULL,
  `STEAMID` varchar(255) NOT NULL,
  `Username` varchar(255) NOT NULL,
  `Firstname` varchar(255) NOT NULL,
  `Lastname` varchar(255) NOT NULL,
  `DOB` varchar(255) NOT NULL,
  `Gender` varchar(255) NOT NULL,
  `d_license` tinyint(1) NOT NULL,
  `cd_license` tinyint(1) NOT NULL,
  `license_p` int(11) NOT NULL,
  `b_license` tinyint(1) NOT NULL,
  `f_license` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumpning av Data i tabell `chars`
--

-- --------------------------------------------------------

--
-- Tabellstruktur `srr_char_bolos`
--

CREATE TABLE IF NOT EXISTS `srr_char_bolos` (
  `ID` int(11) NOT NULL,
  `STEAMID` varchar(255) NOT NULL,
  `Username` varchar(255) NOT NULL,
  `bolo` varchar(255) NOT NULL,
  `ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabellstruktur `srr_char_charges`
--

CREATE TABLE IF NOT EXISTS `srr_char_charges` (
  `ID` int(11) NOT NULL,
  `ts` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `STEAMID` varchar(255) NOT NULL,
  `Username` varchar(255) NOT NULL,
  `officer_STEAMID` varchar(255) NOT NULL,
  `officer_Username` varchar(255) NOT NULL,
  `charge` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabellstruktur `srr_char_plate`
--

CREATE TABLE IF NOT EXISTS `srr_char_plate` (
  `ID` int(11) NOT NULL,
  `ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `STEAMID` varchar(255) NOT NULL,
  `Username` varchar(255) NOT NULL,
  `plate_number` varchar(255) NOT NULL,
  `veh_name` varchar(255) NOT NULL,
  `flag_stolen` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Tabellstruktur `srr_char_warrants`
--

CREATE TABLE IF NOT EXISTS `srr_char_warrants` (
  `ID` int(11) NOT NULL,
  `ts` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `STEAMID` varchar(255) NOT NULL,
  `Username` varchar(255) NOT NULL,
  `officer_STEAMID` varchar(255) NOT NULL,
  `officer_Username` varchar(255) NOT NULL,
  `warrant` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;


ALTER TABLE `chars`
  ADD PRIMARY KEY (`ID`);

ALTER TABLE `srr_char_bolos`
  ADD PRIMARY KEY (`ID`);
  
ALTER TABLE `srr_char_charges`
  ADD PRIMARY KEY (`ID`);
  
ALTER TABLE `srr_char_warrants`
  ADD PRIMARY KEY (`ID`);
  
ALTER TABLE `srr_char_plate`
  ADD PRIMARY KEY (`ID`);

ALTER TABLE `chars`
  MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  
ALTER TABLE `srr_char_bolos`
  MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  
ALTER TABLE `srr_char_charges`
  MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
 
ALTER TABLE `srr_char_warrants`
  MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  
ALTER TABLE `srr_char_plate`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

Hey, still got that problem with people can use /mdt in the back of the police vehicles.

People get frozen at end of theory test of DMV?

Hello,

So i have a recent problem. When the intoducion for the vehicle test is done. It is suppost to teleport you and make you visible and unfreeze you. But for some reason this dosenā€™t happen. The introduction just dissepears after the last message and tells you to drive to the first checkpoint. An admin need to unfreeze the person and the person needs to go into lambda and turn invisiblity on and off. And suggestions on how to fix this?

any help is apprieciated!

if i am using filezilla were do i place the dropme.sql ? my discord is Kyleportelli66#8138 if any one wants to help me thank you :slight_smile:

Script Notice:

For anyone experiencing script issues, In the coming week this will be looked into. Upcoming versions to fix these reported issues.

Hello here, The sql file is not supposed to go directly in the server files somewhere. you have to import it to your SQL database. you can search on YouTube/google on how to import SQL files to a database.