Alangara_PRC8/_module/nss/btlr_applyeyes.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

26 lines
704 B
Plaintext

//:://////////////////////////////////////////////
//:: 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.
}