Compare commits

...

4 Commits

Author SHA1 Message Date
0c0613dc79 Update README.md 2025-06-04 08:42:59 -07:00
a1fc23d424 DB table news 2025-05-17 22:19:43 -05:00
22850624ad gitignore 2025-05-16 15:48:30 -05:00
b24d37206e Add setup instructions 2025-05-16 10:41:36 -05:00
3 changed files with 49 additions and 3 deletions

25
.gitignore vendored Normal file
View File

@ -0,0 +1,25 @@
bin*/
.directory
.mailmap
*.orig
*.rej
*~
.hg/
*.kdev*
.DS_Store
CMakeLists.txt.user
*.bak
*.patch
*.diff
*.REMOTE.*
*.BACKUP.*
*.BASE.*
*.LOCAL.*
nbproject/*
.idea/*
.browse.VC*
.vscode
cmake-build-*/
.vs
*.user

View File

@ -1,7 +1,13 @@
Periz-WoW Client Launcher
# Plezi-WoW Client Launcher
Includes:
## Instructions
1. Edit the php addresses (currently they reference 127.0.0.1).
2. Build the solution.
3. Publish the application.
4. Add the php files to the root directory of your web server.
## Includes:
- Online Players
- News Panel
- Clear Cache Checkbox
- Play Game Button
- Play Game Button

15
SQL/news.sql Normal file
View File

@ -0,0 +1,15 @@
-- Dumping structure for table auth.news
CREATE TABLE IF NOT EXISTS `news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`content` text NOT NULL,
`date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`type` enum('update','event','maintenance') DEFAULT 'update',
`created_by` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
-- Dumping data for table auth.news: ~2 rows (approximately)
INSERT INTO `news` (`id`, `title`, `content`, `date`, `type`, `created_by`) VALUES
(1, 'Welcome to Plezi-WoW! <Pinned>', 'Welcome, friends! We have opened the server for all to play. Plezi is a custom/fun server on the WotLK expansion.', '2050-01-01 12:00:00', 'update', 'Admin'),
(2, 'Server Launch Event', 'There will be a launch event where all players will be able to obtain a permanent buff on all characters on their account.', '2025-07-25 12:00:00', 'event', 'Admin');