Changed folder name.
Changed folder name.
This commit is contained in:
21
_module/nss/barrelcheck2.nss
Normal file
21
_module/nss/barrelcheck2.nss
Normal file
@@ -0,0 +1,21 @@
|
||||
//Prevent others from opening the door (in this case barrel)
|
||||
//Put this script OnOpen
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = GetLastOpenedBy();
|
||||
object oSelf = OBJECT_SELF;
|
||||
|
||||
|
||||
if (!GetIsPC(oPC)) return;
|
||||
|
||||
//If you don't have the key go away!
|
||||
if (GetItemPossessedBy(oPC, "barrel2")!= OBJECT_INVALID)
|
||||
return;
|
||||
{
|
||||
AssignCommand(oPC, ClearAllActions());
|
||||
AssignCommand(oPC, ActionMoveAwayFromObject(oSelf));
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user