Back to "shift" tags

Shelf Shifter by sifMoo

Description: Targets a source and destination shelf and moves contents from one to another.

Just set your loadout with a tick of everything you want to move then press play.

1# Source Shelf
2if not varexist source_shelf
3    headmsg '- Target the Source Shelf -'
4  setvar! source_shelf
5endif
6# Destination Shelf
7if not varexist destination_shelf
8    headmsg '- Target the Desintation Shelf -'
9  setvar! destination_shelf
10endif
11
12# Resupply from source_shelf
13   menu source_shelf 1
14   pause 200
15# Restock to destination_shelf
16   menu destination_shelf 0
17   waitfortarget 1000
18   target 'self'
19   pause 1000
20loop