Back to "b" tags

Switching between Weapon and Tool by tang_67330

1//switching pickaxe (tool) with mace (weapon)
2if findtype "pickaxe" hand
3
4   if findtype "war mace" backpack as a 
5
6       dclick a
7    
8    endif
9   
10   else
11       
12   if findtype "pickaxe" backpack as a 
13
14    dclick a
15    
16   endif
17
18endif