Update README.md
This commit is contained in:
parent
72fe92d673
commit
c75095f888
1 changed files with 17 additions and 5 deletions
22
README.md
22
README.md
|
@ -2,11 +2,14 @@ Player versus Player Gaming Network
|
|||
=====
|
||||
![](http://i.imgur.com/LfI3hXo.png)
|
||||
|
||||
Original PvPGN 1.99 source code with tweaks.
|
||||
Next generation of PvPGN — Battle.net<sup> v1.0</sup> game server emulator.
|
||||
|
||||
*The project is still in development. Stay tuned and report any bugs!*
|
||||
|
||||
[![Build Status](https://travis-ci.org/HarpyWar/pvpgn.svg?branch=master)](https://travis-ci.org/HarpyWar/pvpgn) [![Build status](https://ci.appveyor.com/api/projects/status/dqoj9lkvhfwthmn6)](https://ci.appveyor.com/project/HarpyWar/pvpgn)
|
||||
|
||||
Source Code changes
|
||||
|
||||
Source Code changes (since v1.99)
|
||||
--
|
||||
* Lua scripting support (WITH_LUA cmake directive)
|
||||
* Add display custom icons depends on a user rating, custom output for command `/stats`; works with Warcraft and Starcraft (see [icons.conf](https://github.com/HarpyWar/pvpgn/blob/master/conf/icons.conf.in)) <sup>commits [1](https://github.com/HarpyWar/pvpgn/commit/c11af352603e18acc52102ba8574776425248331), [2](https://github.com/HarpyWar/pvpgn/commit/368c4b9296d18a515af746b65fe69054ab6f4236), [3](https://github.com/HarpyWar/pvpgn/commit/f1a96c392055a777b48dc4d77631c5e906161e28)</sup>
|
||||
|
@ -14,12 +17,17 @@ Source Code changes
|
|||
* fix compile error when pointer size is larger than int <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/1ea116434ce009bad4903ff72bd69bbb8987ce06)</sup>
|
||||
* fix Warcraft 3 ICON SWITCH hack <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/84811bcfe875d6c42cd8271bbdae757f0b5d445b)</sup>
|
||||
* fix saving sql fields with custom characters in the name <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/18713ffe35cbe9a12193e5c1f1caf5031d4c4731)</sup>
|
||||
* add game id field in status.xml output <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/b989d26e1182a3ee8cf62f3ee79dfb231fd66e23)</sup>
|
||||
* add game id field and user game version in status.dat output (the same as status.xml) <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/39d0b2be71c7ddd808a20f97fe6ac17078ce013f)</sup>
|
||||
* fix status.xml output errors and add a new game_id field
|
||||
* welcome text for Warcraft 3 is moved from the code into a new file `bnmotd_w3.txt` ([example](http://img21.imageshack.us/img21/1808/j2py.png) with colored text is included)
|
||||
<sup>[commit](https://github.com/HarpyWar/pvpgn/commit/ff8ca941cd7942bab201607fbc31382837a35617)</sup>
|
||||
* Feature to use d2s character as a template for a new character in newbie.save; each character class can have it's own template <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/20)</sup>
|
||||
|
||||
* Full localization <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/13)</sup>
|
||||
* Ignore flood protection for reserved users and bots <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/49)</sup>
|
||||
* Several bug fixes which allow hackers to crash a server and a game client
|
||||
* Logging for user commands <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/47)</sup>
|
||||
* SID_READMEMORY implementation <sup>[issue](https://github.com/HarpyWar/pvpgn/pull/26)</sup>
|
||||
* SID_EXTRAWORK implementation <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/72)</sup>
|
||||
* Improve SQL storage performance <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/85)</sup>
|
||||
|
||||
New commands
|
||||
--
|
||||
|
@ -27,6 +35,8 @@ New commands
|
|||
* `/icon <add|del|list>` icon stash implementation - each user has it's own stash with icons, admin/operator can add icon to user's stash, you can set aliases for icons in config; works with Warcraft and Starcraft <sup>commits [1](https://github.com/HarpyWar/pvpgn/commit/1ade081c6b10a3e710130b88613b71b880ba0cd7), [2](https://github.com/HarpyWar/pvpgn/commit/36deb1179bca931bd6585c2b6dbf7d8ade08bc8e)</sup>
|
||||
* `/find <substr of username>` search account by part of the name - [patch #1526](http://developer.berlios.de/patch/?func=detailpatch&patch_id=1526&group_id=2291) from berlios <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/c229c6693b3dd55f02fe3a81403870044c0786b2)</sup>
|
||||
* `/quiz` Trivia Quiz Game (implemented in Lua) <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/ee04fdd23dfef90f0b852a6e90df23c7f5edc08e)</sup>
|
||||
* `/language <name>` change user language
|
||||
* `/log` show/search in user log
|
||||
|
||||
Modified commands
|
||||
--
|
||||
|
@ -54,6 +64,8 @@ Minor changes
|
|||
* help for all commands is displayed from bnhelp.conf and format changed for better reading, updated more help messages <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/5)</sup>
|
||||
* fix error in log when user sends a message with text length of 255 symbols <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/af2baccdb8a2b624627caa94eac5595ac8f76e07)</sup>
|
||||
* update default tracker servers in config, track is enabled by default <sup>issues [1](https://github.com/HarpyWar/pvpgn/issues/7), [2](https://github.com/HarpyWar/pvpgn/issues/18)</sup>
|
||||
* fix Windows version identification <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/60#issuecomment-49385463)</sup>
|
||||
* reorganize unix install paths, add `make uninstall` feature <sup>[issue](https://github.com/HarpyWar/pvpgn/pull/80)</sup>
|
||||
|
||||
|
||||
Build source code
|
||||
|
|
Loading…
Reference in a new issue