// DMFI MP Starter Mod // sm_on_client_ent // // Goes in the module's OnClientEnter event, or copy it into your own OnClientEnter script // DMFI tool support #include "dmfi_init_inc" // HABD support #include "habd_include" // Horses support #include "x3_inc_horse" void main() { // Following is HABD support HABDGetDBOnClientEnter(GetEnteringObject()); // Uncomment the below if you want to give players the HABD bandages item on entry // DelayCommand(6.0, HABDItemsOnClientEnter(GetEnteringObject())); object oPC=GetEnteringObject(); // ** Player Strip Settings ** // To implement equipment stripping of entering PCs, set nStrip to TRUE // and edit the levels of starting gold and XP as desired int nStrip = FALSE; int nStartingGold = 400; int nStartingXP = 1; // ** DM on module entry section ** // Checks if entering person is a DM and what DM items are in inventory // Provides BESIE widget and the DMFI wands exploder if not there // Note that the DM Book of Journal Entries is not automatically given out // Uncomment the line below for it, if you want that to occur int bBESIEWidget; int bDMFIExploder; int bDMbook; if(GetIsDM(oPC)) { SetLocalInt(GetModule(), "re_" + GetPCPlayerName(oPC), TRUE); object oItem = GetFirstItemInInventory(oPC); while(GetIsObjectValid(oItem)) { if(GetTag(oItem) == "BESIEWidget") bBESIEWidget = TRUE; if(GetTag(oItem) == "dmfi_exploder") bDMFIExploder = TRUE; if(GetTag(oItem) == "DMBookofJournalEntries") bDMbook = TRUE; oItem = GetNextItemInInventory(oPC); } if(!bBESIEWidget) CreateItemOnObject("besiewidget", oPC); // Creates Besie widget if(!bDMFIExploder) CreateItemOnObject("dmfi_exploder", oPC); // Creates DMFI Exploder // if(!bDMbook) CreateItemOnObject("dmbookofjournale", oPC); // Creates DM Book of Journal Entries } // Initializes DMFI if (GetIsDM(oPC)) { dmfiInitialize(oPC); return; } // ** Player on module entry section ** // Checks to see if item stripping is enabled from above // If so, strips equipped items and inventory of entering players // strip script borrowed from Hard Core Modular if (nStrip) { // Exits if the PC was previously stripped int nStripped=GetLocalInt(GetModule(), "nStripped"+GetPCPlayerName(oPC)); if (nStripped) return; // Now let's take all their stuff and destroy it object oGear; int nCt; for(nCt=0;nCt