Skip to content
Permalink
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
Lemongrass3110 and aleos89 committed Jan 9, 2022
1 parent 4bc9e24 commit c22ef3f5476cee0f79bf8dfe6e390bcb5a23728d
@@ -15,11 +15,11 @@ min_chat_delay: 0

// Valid range of dyes and styles on the client.
min_hair_style: 0
max_hair_style: 27
max_hair_style: 42
min_hair_color: 0
max_hair_color: 8
min_cloth_color: 0
max_cloth_color: 4
max_cloth_color: 7
min_body_style: 0
max_body_style: 1

@@ -876,7 +876,9 @@

797: This command is unavailable to non-4th class.

//798-799 free
// @stylist
798: This command requires packet version 2015-11-04 or newer.
799: You have already opened the stylist UI.

800: Dragon Knight
801: Meister
@@ -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
@@ -21686,8 +21686,8 @@ Body:
NoMail: true
NoAuction: true
- Id: 6707
AegisName: Jeremy_Beauty_Coupon
Name: Jeremy Beauty Coupon
AegisName: J_Shop_Coupon
Name: Cash Hair Coupon
Type: Etc
Buy: 10
Weight: 10
@@ -24023,9 +24023,10 @@ Body:
Type: Etc
Buy: 10
- Id: 6959
AegisName: aegis_6959
Name: Costume Change Ticket
AegisName: Costume_Ticket
Name: Costume Change Ticket
Type: Etc
Buy: 0
Trade:
Override: 100
NoDrop: true
@@ -39884,6 +39884,57 @@ Body:
NoGuildStorage: true
NoMail: true
NoAuction: true
- Id: 16843
AegisName: C_New_Style_Box
Name: Beauty Gift Box
Type: Cash
Buy: 20
Weight: 10
Trade:
Override: 100
NoDrop: true
NoTrade: true
NoSell: true
NoCart: true
NoGuildStorage: true
NoMail: true
NoAuction: true
Script: |
getitem 7622,1;
- Id: 16854
AegisName: CCloth_Dye_Coupon_Box
Name: Clothing Dye Box
Type: Cash
Buy: 20
Weight: 10
Trade:
Override: 100
NoDrop: true
NoTrade: true
NoSell: true
NoCart: true
NoGuildStorage: true
NoMail: true
NoAuction: true
Script: |
getitem 6046,1;
- Id: 16855
AegisName: CCloth_Dye_Coupon2_Box
Name: Clothing Dye Orig Box
Type: Cash
Buy: 20
Weight: 10
Trade:
Override: 100
NoDrop: true
NoTrade: true
NoSell: true
NoCart: true
NoGuildStorage: true
NoMail: true
NoAuction: true
Script: |
getitem 6047,1;
- Id: 16864
AegisName: Siege_Map_Teleport_Scroll_Box_10
Name: Siege Map Teleport Scroll Box(10)
@@ -42918,6 +42969,23 @@ Body:
NoAuction: true
Script: |
getgroupitem(IG_Event_Almighty_Box_100);
- Id: 17336
AegisName: J_Shop_Coupon_Box
Name: Cash Hair Coupon Box
Type: Cash
Buy: 20
Weight: 10
Trade:
Override: 100
NoDrop: true
NoTrade: true
NoSell: true
NoCart: true
NoGuildStorage: true
NoMail: true
NoAuction: true
Script: |
getitem 6707,1;
- Id: 17337
AegisName: Holy_Spirit_Scroll
Name: Holy Spirit Egg

0 comments on commit c22ef3f

Please sign in to comment.