ID:270655
 
how can you use a macro to pick something up?
What exactly do you mean?
In your macros.dms file add:
macro
G return "GetItems"


Then create a verb that gets called whenever you use the macro:
mob/verb/GetItems
set hidden = 1
for(var/obj/O in src.loc)
O.Get(src)
// Or whatever...