-- {\v/} Domino auto-generated LUA script file
|
|
--
|
|
-- Script document: domino/user/windycity/dlc_sidemissions/driving_escort/escort_sharedscripts/aimanager.domino.xml
|
|
-- User graph: Escort_Felony
|
|
--
|
|
--
|
|
-- DO NOT EDIT MANUALLY THIS FILE OR YOUR CHANGES WILL BE LOST!
|
|
-- Please modify the original Domino script instead. You have been warned.
|
|
|
|
-- *** SCRIPT INPUT REFLECTION ***
|
|
--[[
|
|
<InputReflection>
|
|
<DataIn Name="FelonyType" Type="Nomad|customList{FelonyType}" />
|
|
<DataIn Name="ChaseLevel" Type="Core|int" />
|
|
</InputReflection>
|
|
]]--
|
|
-- *** END OF SCRIPT INPUT REFLECTION ***
|
|
|
|
|
|
export = {
|
|
};
|
|
|
|
|
|
function export:LuaDependencies()
|
|
return {
|
|
};
|
|
end;
|
|
|
|
function export:Create(cbox)
|
|
|
|
end;
|
|
|
|
function export:Init(cbox)
|
|
self.Evaded = DummyFunction;
|
|
self.Started = DummyFunction;
|
|
self.PlayerEntity = nil;
|
|
self.Level = 0;
|
|
end;
|
|
|
|
function export:ShutDown()
|
|
for k,v in pairs(self) do if type(v) == "table" and v.ShutDown ~= self.ShutDown and v ~= self._graph and v.ShutDown ~= nil then v:ShutDown() end end;
|
|
end;
|
|
|
|
-- Empty out anchor definitions
|
|
function export:Evaded()
|
|
|
|
end;
|
|
function export:Started()
|
|
|
|
end;
|
|
_compilerVersion = 4;
|