The decompiled versions of all \domino\ scripts found in Watch_Dogs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

51 lines
1.1 KiB

-- {\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;