mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -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;
|
|
}
|