Added things for testing mapobjs.

This commit is contained in:
Filip Maj 2017-05-05 02:37:01 -04:00
parent 9505cd71be
commit 08b3564d7e
7 changed files with 280 additions and 20 deletions

View file

@ -0,0 +1,16 @@
require("global");
properties = {
permissions = 0,
parameters = "d",
description = "Spawns a actor",
}
function onTrigger(player, argc, actorName)
if (actorName ~= nil) then
zone = player:GetZone();
actor = zone:DespawnActor(actorName);
end
end;