diff --git a/README.md b/README.md index 5dd37e8..1721513 100644 --- a/README.md +++ b/README.md @@ -3,20 +3,39 @@ ## installation and requirements you will need [SourceMod 1.9](https://www.sourcemod.net/downloads.php?branch=stable), [MetaMod 1.10](https://www.sourcemm.net/downloads.php/?branch=stable), [SteamWorks](https://forums.alliedmods.net/showthread.php?t=229556), [SMJansson](https://forums.alliedmods.net/showthread.php?t=184604) and a working MySQL instance, other dependencies like `DHooks` and `Cleaner` are already included +### new install + +* download the latest version from the release page [here](https://github.com/totles/z4lab-surftimer/releases/latest) +* copy the files to your csgo directory +* edit configs (mysql db, etc, to do) + +### upgrading from SurfTimer(fluffys) + +* download the latest version from the release page [here](https://github.com/totles/z4lab-surftimer/releases/latest) +* copy the files to your csgo directory +* edit configs (mysql db, etc, to do) +* run `mysql-files/upgrade-fluffy.sql` in your surftimer db + +### upgrading from ckSurf(nikooo777) + * download the latest version from the release page [here](https://github.com/totles/z4lab-surftimer/releases/latest) * copy the files to your csgo directory -* ~~import the `surftimer.sql` to your database~~ +* remove all old ckSurf data you don't want anymore +* run `mysql-files/upgrade-niko.sql` in your ckSurf db * edit configs (mysql db, etc, to do) ## features added * added discord bonus announcement * added prestrafe chat info option * new [NORD](https://www.nordtheme.com/) color scheme +* made name of discord webhooks customizable +* made it possible to remove the security question for the `sm_dr` command ## bugs fixed in this version * fixed "S1 to S2 record glitch" * fixed custom Clantags in Scoreboard which weren't working * prestrafe message option is now saved correctly +* fixed name colors while using default_titles ## point system
diff --git a/mysql-files/upgrading/upgrade-fluffy.sql b/mysql-files/upgrading/upgrade-fluffy.sql new file mode 100644 index 0000000..9d1d3c6 --- /dev/null +++ b/mysql-files/upgrading/upgrade-fluffy.sql @@ -0,0 +1,7 @@ +/* Updrade for upgrading from flufflys SurfTimer to our z4lab-surftimer */ + +/* Fixing timer crash after upgrading to our time */ +/* Prestrafe Message */ + +ALTER TABLE `ck_playeroptions2` +ADD COLUMN `prestrafe` INT(11) NOT NULL DEFAULT '0' AFTER `module5s`; \ No newline at end of file