https://github.com/liuhaopen/skynetmmo
a skynet implementation of MMO, server side of UnityMMO
https://github.com/liuhaopen/skynetmmo
lua mmo mmorpg mmorpg-server skynet sproto
Last synced: 6 months ago
JSON representation
a skynet implementation of MMO, server side of UnityMMO
- Host: GitHub
- URL: https://github.com/liuhaopen/skynetmmo
- Owner: liuhaopen
- License: mit
- Created: 2020-03-08T09:52:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-01T13:27:38.000Z (over 4 years ago)
- Last Synced: 2025-04-09T19:18:50.018Z (6 months ago)
- Topics: lua, mmo, mmorpg, mmorpg-server, skynet, sproto
- Language: Lua
- Size: 411 KB
- Stars: 224
- Watchers: 6
- Forks: 88
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SkynetMMO
a skynet implementation of MMO, server side of [UnityMMO](https://github.com/liuhaopen/UnityMMO "UnityMMO")# Usage
1. git clone https://github.com/liuhaopen/SkynetMMO.git --recurse
2. compile skynet :
cd SkynetMMO/skynet
make linux
3. import database, assume the password is 123456, if not, you need to change password in main.lua:
mysql -uroot -p
create database UnityMMOAccount;
use UnityMMOAccount;
source data/UnityMMOAccount.sql;
create database UnityMMOGame;
use UnityMMOGame;
source data/UnityMMOGame.sql;
4. ./run.sh