Files
dsrc/sku.0/sys.server/compiled/game/script/item/special/block_open.script
T
2013-09-10 23:17:15 -07:00

11 lines
236 B
Plaintext

trigger OnAboutToOpenContainer(obj_id who)
{
if(isGod(who))
{
sendSystemMessageTestingOnly(who, "GOD MODE: You are able to open this container because you are in God Mode!");
return SCRIPT_CONTINUE;
}
return SCRIPT_OVERRIDE;
}