Color Channel work
Color Channel work
This commit is contained in:
parent
0e2b2af61b
commit
2830106680
92
_notes_/Genasi/genasi color.nss
Normal file
92
_notes_/Genasi/genasi color.nss
Normal 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);
|
||||
}
|
||||
}
|
BIN
_notes_/Genasi/gui_pal_skin.png
Normal file
BIN
_notes_/Genasi/gui_pal_skin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
BIN
_notes_/Genasi/gui_pal_skin.tga
Normal file
BIN
_notes_/Genasi/gui_pal_skin.tga
Normal file
Binary file not shown.
After Width: | Height: | Size: 192 KiB |
Loading…
x
Reference in New Issue
Block a user