Advertisement
Guest User

output

a guest
Sep 25th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.16 KB | None | 0 0
  1. getAdvancedMethodsData:
  2. function(method:string?):table -- Get a complete table of information about all available methods
  3.  
  4. getStackInSlot:
  5. function(slotNumber:number,proxy:boolean?):object -- Get details of an item in a particular slot
  6.  
  7. getInventorySize:
  8. function():number -- Get the size of this inventory
  9.  
  10. pullItemIntoSlot:
  11. function(direction:string{DOWN,UP,NORTH,SOUTH,WEST,EAST,UNKNOWN},slot:number,maxAmount:number?,intoSlot:number?):number -- Pull an item from a slot in another inventory into a slot in this one. Returns the amount of items moved
  12.  
  13. address:
  14. 2d913e19-fc01-4831-b8ec-3904fbde5e59
  15.  
  16. pushItem:
  17. function(direction:string{DOWN,UP,NORTH,SOUTH,WEST,EAST,UNKNOWN},slot:number,maxAmount:number?,intoSlot:number?):number -- Push an item from the current inventory into pipe or slot on the other inventory. Returns the amount of items moved
  18.  
  19. getAllStacks:
  20. function(proxy:boolean?):table -- Get a table with all the items of the chest
  21.  
  22. getInventoryName:
  23. function():string -- Get the name of this inventory
  24.  
  25. doc:
  26. function(method:string):string -- Brief description of method
  27.  
  28. swapStacks:
  29. function(from:number,to:number,fromDirection:string{DOWN,UP,NORTH,SOUTH,WEST,EAST,UNKNOWN}?,fromDirection:string{DOWN,UP,NORTH,SOUTH,WEST,EAST,UNKNOWN}?) -- Swap two slots in the inventory
  30.  
  31. pullItem:
  32. function(direction:string{DOWN,UP,NORTH,SOUTH,WEST,EAST,UNKNOWN},slot:number,maxAmount:number?,intoSlot:number?):number -- Pull an item from a slot in another inventory into a slot in this one. Returns the amount of items moved
  33.  
  34. condenseItems:
  35. function() -- Condense and tidy the stacks in an inventory
  36.  
  37. listSources:
  38. function():table -- List all method sources
  39.  
  40. pushItemIntoSlot:
  41. function(direction:string{DOWN,UP,NORTH,SOUTH,WEST,EAST,UNKNOWN},slot:number,maxAmount:number?,intoSlot:number?):number -- Push an item from the current inventory into pipe or slot on the other inventory. Returns the amount of items moved
  42.  
  43. listMethods:
  44. function(filterSource:string?):string -- List all the methods available
  45.  
  46. destroyStack:
  47. function(slotNumber:number) -- Destroy a stack
  48.  
  49. slot:
  50. -1
  51.  
  52. type:
  53. chest
  54.  
  55. expandStack:
  56. function(stack:{id:string,dmg:number?,qty:number?,...}):table -- Get full stack information from id and/or damage
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement