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,18 @@
#include "habd_include"
void main()
{
object oPC = GetEnteringObject();
if(!GetIsObjectValid(GetItemPossessedBy(oPC,"dmfi_pc_emote")))
CreateItemOnObject("dmfi_pc_emote", oPC);
if(!GetIsObjectValid(GetItemPossessedBy(oPC,"dmfi_pc_dicebag")))
CreateItemOnObject("dmfi_pc_dicebag", oPC);
if(!GetIsObjectValid(GetItemPossessedBy(oPC,"dmfi_pc_follow")))
CreateItemOnObject("dmfi_pc_follow", oPC);
int nDM=GetIsDM(oPC);
if(!GetIsObjectValid(GetItemPossessedBy(oPC,"dmfi_exploder")) &&
nDM ==TRUE)
CreateItemOnObject("dmfi_exploder", oPC);
HABDGetDBOnClientEnter(GetEnteringObject());
DelayCommand(6.0, HABDItemsOnClientEnter(GetEnteringObject()));
}