mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-28 22:15:54 -04:00
12 lines
226 B
Plaintext
12 lines
226 B
Plaintext
|
|
trigger OnTheaterCreated(obj_id[] objects, obj_id player, obj_id creator)
|
|
{
|
|
if (objects != null)
|
|
{
|
|
for (int i = 0; i < objects.length; i++)
|
|
setObjVar(objects[i], "quest.owner", player);
|
|
}
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|