Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Initial release of stylist UI (#6446)
Fixes #3037 Thanks to @Balferian and @aleos89 Co-authored-by: Aleos <aleos89@users.noreply.github.com>
- Loading branch information
Showing
with
1,153 additions
and 9 deletions.
- +2 −2 conf/battle/client.conf
- +3 −1 conf/msg_conf/map_msg.conf
- +41 −0 db/import-tmpl/stylist.yml
- +5 −4 db/re/item_db_etc.yml
- +68 −0 db/re/item_db_usable.yml
- +429 −0 db/re/stylist.yml
- +47 −0 db/stylist.yml
- +8 −0 doc/atcommands.txt
- +8 −0 doc/script_commands.txt
- +19 −0 src/map/atcommand.cpp
- +173 −0 src/map/clif.cpp
- +1 −0 src/map/clif.hpp
- +9 −0 src/map/clif_packetdb.hpp
- +1 −0 src/map/map-server.vcxproj
- +270 −0 src/map/npc.cpp
- +34 −0 src/map/npc.hpp
- +8 −0 src/map/packets.hpp
- +9 −2 src/map/pc.hpp
- +18 −0 src/map/script.cpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -0,0 +1,41 @@ | ||
| # This file is a part of rAthena. | ||
| # Copyright(C) 2022 rAthena Development Team | ||
| # https://rathena.org - https://github.com/rathena | ||
| # | ||
| # 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 3 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 <http://www.gnu.org/licenses/>. | ||
| # | ||
| ########################################################################### | ||
| # Stylist Database | ||
| ########################################################################### | ||
| # | ||
| # Stylist Settings | ||
| # | ||
| ########################################################################### | ||
| # - Look Look that will be changed. | ||
| # Options Possible options to select from. | ||
| # - Index Client side index of the option. | ||
| # Value Value of the look (can also be an item name). | ||
| # CostsHuman: Costs for human players. | ||
| # Price Required zeny. (Default: 0) | ||
| # RequiredItem Required item. (Default: None) | ||
| # RequiredItemBox Required item box. (Default: None) | ||
| # CostsDoram: Costs for doram players. | ||
| # Price Required zeny. (Default: 0) | ||
| # RequiredItem Required item. (Default: None) | ||
| # RequiredItemBox Required item box. (Default: None) | ||
| ########################################################################### | ||
|
|
||
| Header: | ||
| Type: STYLIST_DB | ||
| Version: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.