From a0d0416d832adf5741124fec2bfd8b72c09ae1d9 Mon Sep 17 00:00:00 2001 From: Ciscoh Bellic Date: Sun, 16 Jul 2023 08:31:48 -0400 Subject: [PATCH] add basic evoker --- scripts/1467-ciscoh-basic.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 scripts/1467-ciscoh-basic.lua diff --git a/scripts/1467-ciscoh-basic.lua b/scripts/1467-ciscoh-basic.lua new file mode 100644 index 0000000..fa23994 --- /dev/null +++ b/scripts/1467-ciscoh-basic.lua @@ -0,0 +1,15 @@ +local Tinkr, Bastion = ... + +local Ciscoh1467 = Bastion.Module:New('ciscoh_dev_evoker') +local Evaluator = Tinkr.Util.Evaluator +local Player = Bastion.UnitManager:Get('player') +local None = Bastion.UnitManager:Get('none') +local Target = Bastion.UnitManager:Get('target') + +local DefaultAPL = Bastion.APL:New('default') + +Ciscoh1467:Sync(function() + DefaultAPL:Execute() +end) + +Bastion:Register(Ciscoh1467) \ No newline at end of file