[CSGO] Level saver/changer for mg_100traps_v4_1
Posted: Sun Jan 26, 2020 3:47 pm
This plugin is for this map: https://steamcommunity.com/sharedfil.../?id=510119667
It is recording the reached level in SQL and you are able to change between the reached levels.
You can use the goto say command for changing levels or you can just type in chat "goto 10".
You will need to create traps table in SQL:
Download
Source
It is recording the reached level in SQL and you are able to change between the reached levels.
You can use the goto say command for changing levels or you can just type in chat "goto 10".
You will need to create traps table in SQL:
CREATE TABLE `traps` (
`steamid` varchar(20) NOT NULL,
`currentLevel` tinyint(4) NOT NULL,
`highestLevel` tinyint(4) NOT NULL,
UNIQUE KEY `steamid` (`steamid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Download
Source