RoT2_PRC8/_module/nss/pws_onunacquire.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

28 lines
552 B
Plaintext

#include "pws_nodropunique"
void main()
{
//
// DMs are allowed to drop ANY item (including no-drop)
//
object oPC = GetModuleItemLostBy();
if (GetIsObjectValid(oPC) == TRUE) {
if (GetIsDM(oPC)) return;
//
// DMs are allowed to take ANY item (including no-drop)
//
object oItemLost = GetModuleItemLost();
object oItemPossessor = GetItemPossessor(oItemLost);
if (GetIsDM(oItemPossessor)) return;
//
// Non-DMs
//
CheckForNoDrop();
}
}