Initial upload

Initial upload
This commit is contained in:
Jaysyn904
2023-09-25 20:24:01 -04:00
parent 4e16ca63ca
commit 5197ad9a4d
7741 changed files with 5391820 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
/*--------------------------------------------------------
Script Name: gc_skincolr_prev
----------------------------------------------------------
Created By: Genisys(Guile)
Created On: 3/25/09
----------------------------------------------------------
This script changes the PC's Skin color in a conversation.
----------------------------------------------------------*/
void main()
{
object oPC = GetPCSpeaker();
int nIndex = GetLocalInt(oPC, "SKIN_COLOR");
int nColor;
nColor = nIndex -1;
if(nColor == 0)
{ nColor = 175; }
SetLocalInt(oPC, "SKIN_COLOR", nColor);
SetColor(oPC, COLOR_CHANNEL_SKIN, nColor);
}