Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
0c0613dc79 | |||
a1fc23d424 | |||
22850624ad | |||
b24d37206e |
25
.gitignore
vendored
Normal file
25
.gitignore
vendored
Normal 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
|
12
README.md
12
README.md
@ -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
15
SQL/news.sql
Normal 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');
|
Loading…
x
Reference in New Issue
Block a user