mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-08-02 03:16:51 -04:00
11 lines
236 B
Plaintext
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;
|
|
}
|