Initial Commit

Initial Commit.
This commit is contained in:
Jaysyn904
2025-09-14 15:40:46 -04:00
parent 7083b33d71
commit 1eefc84201
19230 changed files with 11539227 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
//::///////////////////////////////////////////////
//:: Tailoring - If Clothing is Allowed
//:: tlr_ifcloth.nss
//:: Copyright (c) 2006 Stacy L. Ropella
//:://////////////////////////////////////////////
/*
Checks to make sure the PC is allowed to make
clothing with this model
*/
//:://////////////////////////////////////////////
//:: Created By: Stacy L. Ropella
//:: Created On: May 15, 2006
//:://////////////////////////////////////////////
int StartingConditional()
{
if(GetLocalInt(OBJECT_SELF, "Cloth_Buy") == 0
&& GetLocalInt(OBJECT_SELF, "Cloth_Copy") == 0)
return FALSE;
return TRUE;
}