UW2_PRC8/_module/nss/givedyekit.nss

15 lines
217 B
Plaintext
Raw Normal View History

2023-09-25 20:24:01 -04:00
//Put this script OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "DyeKit")!= OBJECT_INVALID)
return;
CreateItemOnObject("mil_dyekit001", oPC);
}