From 263ede579c7a6189a8f20ec34fade42d70b2b807 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Mon, 17 May 2021 15:23:48 -0500 Subject: [PATCH] Remove some unneeded files --- new.masm | 27 ------------------------ new.org | 63 -------------------------------------------------------- 2 files changed, 90 deletions(-) delete mode 100644 new.masm delete mode 100644 new.org diff --git a/new.masm b/new.masm deleted file mode 100644 index 169b84d..0000000 --- a/new.masm +++ /dev/null @@ -1,27 +0,0 @@ -draw image x y image size rotation 0 -control shootp obj unit shoot 0 0 -control configure obj configure 0 0 0 -control color obj r g b 0 -ubind type -ucontrol move x y 0 0 0 -ucontrol idle x y 0 0 0 -ucontrol stop 0 0 0 0 0 -ucontrol approach x y radius 0 0 -ucontrol boost enable y radius 0 0 -ucontrol pathfind enable y radius 0 0 -ucontrol target x y shoot 0 0 -ucontrol targetp unit shoot shoot 0 0 -ucontrol itemDrop obj amount shoot 0 0 -ucontrol itemTake obj item amount 0 0 -ucontrol payDrop obj item amount 0 0 -ucontrol payTake takeUnits item amount 0 0 -ucontrol mine x y amount 0 0 -ucontrol flag value y amount 0 0 -ucontrol build x y block rotation configure -ucontrol getBlock x y type building configure -ucontrol within x y radius result configure -uradar any any any distance 0 order result -ulocate building core enemy @copper outx outy found building -ulocate ore core enemy ore outx outy found building -ulocate spawn core enemy ore outx outy found building -ulocate damaged core enemy ore outx outy found building diff --git a/new.org b/new.org deleted file mode 100644 index ef58da0..0000000 --- a/new.org +++ /dev/null @@ -1,63 +0,0 @@ -:PROPERTIES: - :header-args: :tangle new.masm :comments link :noweb yes - :END: -* manual -#+begin_src masm -ubind type -#+end_src -* template -#+begin_src masm - control shootp obj unit shoot 0 0 - control configure obj configure 0 0 0 - control color obj r g b 0 -#+end_src -** toggles/set - #+begin_src masm - ucontrol boost enable 0 0 0 0 - ucontrol flag value 0 0 0 0 - #+end_src -** direct commands - #+begin_src masm - ucontrol idle 0 0 0 0 0 - ucontrol stop 0 0 0 0 0 - ucontrol pathfind 0 0 0 0 0 - ucontrol payDrop 0 0 0 0 0 - #+end_src -** direct with bool - #+begin_src masm - ucontrol payTake takeUnits 0 0 0 0 - #+end_src -** xy-direct - #+begin_src masm - ucontrol move x y 0 0 0 - ucontrol mine x y 0 0 0 - #+end_src -** xy-param-set - #+begin_src masm - ucontrol approach x y r 0 0 - control target x y shoot 0 0 - #+end_src -** xy-param-get - #+begin_src masm - ucontrol within x y raduis result 0 - ucontrol getBlock x y type building 0 - #+end_src -** other - #+begin_src masm - ucontrol targetp unit shoot 0 0 0 - ucontrol itemDrop to amount 0 0 0 - ucontrol itemTake from item amount 0 0 - ucontrol build x y block rotation config - #+end_src -* subclass -** radar, no 'from' param - #+begin_src masm - uradar boss boss player armor 0 order result - #+end_src -** manual - #+begin_src masm - ulocate ore core enemy @copper outx outy found building - ulocate building core enemy @copper outx outy found building - ulocate spawn core enemy @copper outx outy found building - ulocate damaged core enemy @copper outx outy found building - #+end_src