Advertisement
cnl_cnl_cnl

Untitled

May 27th, 2023
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. auto help
  2.  
  3. usage:
  4.  
  5.  
  6. auto - show current config
  7. auto [on|off] - master switch auto on/off
  8. auto[task|spin|drop|junk] [on|off] - specified auto on/off
  9. example:
  10. auto
  11. auto off
  12. autojunk on
  13.  
  14. auto[task|spin|drop|junk]+ {item} {cmd} - add item to auto-type
  15. {item} - in-game handle of item
  16. eg:
  17. note
  18. orange-potion
  19. {cmd} - command to submit to expandAlias
  20. Only valid for task
  21. $handle will first subst for item handles
  22. $name will first subst for item name
  23. eg:
  24. quaff $handle
  25. stashshard $handle
  26. example:
  27. autotask+ orange quaff $handle
  28. (add new auto task to quaff orange by handle)
  29. autojunk+ teeth (add new auto junk for teeth)
  30.  
  31. auto? {pattern} - find items in any auto-type
  32. auto[task|spin|drop|junk]? {pattern} - find items in auto-type
  33. {pattern} - regex pattern compared to item names
  34. example:
  35. auto? . (list all autos)
  36. autojunk? page (list all autojunk of "page")
  37.  
  38. auto- {pattern} - delete items in any auto-type
  39. auto[task|spin|drop|junk]- {pattern} - delete items in in auto-type
  40. {pattern} - regex pattern compared to item names
  41. example:
  42. auto- . (delete all autos)
  43. autojunk- page (delete all autojunk of "page")
  44.  
  45. auto clean - run autos against inventory
  46.  
  47. If item exists in multiple auto-types it execute first match in order:
  48. task,
  49. spin,
  50. drop,
  51. junk
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement