diff --git a/sql/custom/characters/.gitignore b/sql/custom/characters/.gitignore
deleted file mode 100644
index d1b811b7de5..00000000000
--- a/sql/custom/characters/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.sql
diff --git a/sql/custom/characters/characters.solocraft.sql b/sql/custom/characters/characters.solocraft.sql
new file mode 100644
index 00000000000..ccf32003995
--- /dev/null
+++ b/sql/custom/characters/characters.solocraft.sql
@@ -0,0 +1,9 @@
+DROP TABLE IF EXISTS `custom_solocraft_character_stats`;
+CREATE TABLE IF NOT EXISTS `custom_solocraft_character_stats` (
+ `GUID` bigint unsigned NOT NULL,
+ `Difficulty` float NOT NULL,
+ `GroupSize` int NOT NULL,
+ `SpellPower` int unsigned NOT NULL DEFAULT '0',
+ `Stats` float NOT NULL DEFAULT '100',
+ PRIMARY KEY (`GUID`)
+) ENGINE=InnoDB COLLATE='utf8mb4_general_ci';
diff --git a/src/server/scripts/Custom/Solocraft.cpp b/src/server/scripts/Custom/Solocraft.cpp
new file mode 100644
index 00000000000..b8122fd0266
--- /dev/null
+++ b/src/server/scripts/Custom/Solocraft.cpp
@@ -0,0 +1,578 @@
+/*
+ * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see .
+ *
+ * Orignal Azeroth Module Pulled from https://github.com/azerothcore/mod-solocraft
+ * Which is a fork of https://github.com/conan513/mod-solocraft
+ * Refactored to Trinitycore Custom 335
+ * and improved upon by Single Player Project Developer MDic
+ */
+
+#include