GammaAge/_module/nss/re_onunacquire.nss
Jaysyn904 b927d0faf8 File re-organization.
File re-organization.  Added module builder & hak builder.
2021-09-16 10:15:32 -04:00

39 lines
1.2 KiB
Plaintext

//:://////////////////////////////////////////////
//:: FileName re_moditemdrop.nss
//:: Copyright (c) 2002 Ray Miller
//:://////////////////////////////////////////////
/*
Note: This script goes in the OnUnAcquired
handler for the module object and is used to
stamp dropped items with a local time variable
for use with the "CleanHouse()" function of the
BESIE Random Encounter Package by Ray Miller.
*/
//:://////////////////////////////////////////////
//:: Created By: Ray Miller
//:: Created On: 7/6/2002
//:://////////////////////////////////////////////
void main()
{
int iMph;
if(!GetLocalInt(GetModule(), "re_iMph"))
{
iMph = 2;
}
else
{
iMph = GetLocalInt(GetModule(), "re_iMph");
}
int iMin = 60;
int iHr = iMin * iMph;
int iDay = iHr * 24;
int iMth = iDay * 28;
int iYr = iMth * 12;
object oAmIDroppedLoot = GetModuleItemLost();
if(GetIsObjectValid(oAmIDroppedLoot))
{
SetLocalInt(oAmIDroppedLoot, "re_bDroppedItem", TRUE);
SetLocalInt(oAmIDroppedLoot, "re_iDropTime", (GetCalendarYear() * iYr) + (GetCalendarMonth() * iMth) + (GetCalendarDay()* iDay) + (GetTimeHour()* iHr) + (GetTimeMinute() * iMin) + GetTimeSecond());
}
}