Color Channel work

Color Channel work
This commit is contained in:
Jaysyn904 2023-12-21 17:43:46 -05:00
parent 0e2b2af61b
commit 2830106680
3 changed files with 92 additions and 0 deletions

View File

@ -0,0 +1,92 @@
object oPC = OBJECT_SELF;
int iSkinColor = GetColor(oPC, COLOR_CHANNEL_SKIN);
int iHairColor = GetColor(oPC, COLOR_CHANNEL_HAIR);
int iEyeColor = GetColor(oPC, COLOR_CHANNEL_TATTOO_1);
/*
Color Names
-Skin
001 = DARK_VANILLA
002 = CAMEO
003 = TAN
004 = BRANDY_ROSE
005 = KURUMIZOME_BROWN
006 = BEAVER
007 = TOAST
008 = RUSSET
009 = AKAROA
010 = ECRU
011 = CORKBOARD
012 = CLOUDY_CINNAMON
013 = CLAMSHELL
014 = OLD_ROSE
015 = CORAL_TREE
016 = ALAEA
017 = COTTON_SEED
018 = CLOUDY
019 = TAPA
020 = DOVE_GRAY
021 = HEATHER
022 = BALI_HAI
023 = SLATE_GRAY
024 = NEVADA
025 = TAHUNA_SANDS
026 = STRAW
027 = DONKEY_BROWN
028 = BURLAP
029 = SHUTTLE_GRAY
030 = COAL_MINE
031 = ABBEY
032 = MAKO
033 =
*/
/*
Air Genasi
Skin Color Channels
20-23
40
50-51
132-133
136-137
140-141
148-149
164
166
Hair Color Channels
16-35
44
46
54
56
57
70
77-79
82-84
128-150
163-171
*/
if( GetRacialType(oPC) == RACIAL_TYPE_AIR_GEN ) // Air Genasi
{
SetColor ( oPC, COLOR_CHANNEL_SKIN, 020);
if ( GetItemPossessedBy(oPC, "HLSLANG_199") == OBJECT_INVALID )
{
DelayCommand(1.0, FloatingTextStringOnCreature("Auran language token acquired.", oPC));
CreateItemOnObject("HLSLANG_199", oPC);
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB