PGCC_PRC8/_module/nss/vat_cpurple.nss
Jaysyn904 e51634d39b Initial upload
Initial upload.
2024-10-09 14:17:22 -04:00

20 lines
570 B
Plaintext

#include "x2_inc_itemprop"
void main()
{
object oPC = GetPCSpeaker();
int iSlot = GetLocalInt(oPC, "iSlot");
int iColorType = GetLocalInt(oPC, "iItemAppr");
int iColor = GetLocalInt(oPC, "iColor" + IntToString(iColorType));
//purple
int iNewColor = 41;
object oItem = IPDyeArmor(GetItemInSlot(iSlot, oPC), iColorType, iNewColor);
SetLocalInt(oPC, "iColor" + IntToString(iColorType), iNewColor);
FloatingTextStringOnCreature("Color " + IntToString(iNewColor), oPC, FALSE);
AssignCommand(oPC, ActionEquipItem(oItem, iSlot));
}