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,28 @@
// Main functions file for the HCR Helper
// Archaegeo 2002 June 27
#include "hc_inc"
#include "hc_text_helper"
void lock_module()
{
SendMessageToAllDMs(SERVERLOCKED);
SetLocalInt(GetModule(),"LOCKED",1);
}
void unlock_module()
{
SendMessageToAllDMs(SERVERUNLOCKED);
SetLocalInt(GetModule(),"LOCKED",0);
}
int hcrh_istargetpc()
{
return GetIsPC(GetLocalObject(OBJECT_SELF,"HCRHtarget"));
}
int hcrh_istargetnvalid()
{
return !GetIsObjectValid(GetLocalObject(OBJECT_SELF,"HCRHtarget"));
}