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 @@
//:://////////////////////////////////////////////
//:: BODY TAILOR: apply eyes
//:: onconv bodytailor
//:://////////////////////////////////////////////
/*
this will slap the eyes from the npc to the pc.
not vice versa.
*/
//:://////////////////////////////////////////////
//:: Created By: bloodsong
//:: based on the Mil_Tailor by Milambus Mandragon
//:://////////////////////////////////////////////
#include "btlr__inc"
void main()
{
object oPC = GetPCSpeaker();
int nEye = GetLocalInt(OBJECT_SELF, "EYES");
if(ALLOWEYES
|| GetLevelByClass(CLASS_TYPE_MONK) > 0)
{ ApplyEyes(nEye, oPC); }
//--i dont think you can take eyes off a monk.
}