Advertisement
Guest User

ae.txt

a guest
Jun 24th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.42 KB | None | 0 0
  1. aemultipart     dfb8104a-3f0d-4707-9328-9517f42a8d53
  2.   condenseItems                   function() -- Condense and tidy the stacks in an inventory
  3.   destroyStack                    function(slotNumber:number) -- Destroy a stack
  4.   doc                             function(method:string):string -- Brief description of method
  5.   expandStack                     function(stack:{id:string,dmg:number?,qty:number?,...}):table -- Get full stack information from id and/or damage
  6.   getAdvancedMethodsData          function(method:string?):table -- Get a complete table of information about all available methods
  7.   getAllStacks                    function(proxy:boolean?):table -- Get a table with all the items of the chest
  8.   getAvailableItems               function(details:string{NONE,PROXY,ALL}?):table -- Get a list of the stored and craftable items in the network.
  9.   getAvgPowerInjection            function():number -- Get the average power injection into the network
  10.   getAvgPowerUsage                function():number -- Get the average power usage of the network.
  11.   getCraftingCPUs                 function():table -- Get a list of tables representing the available CPUs in the network.
  12.   getDemandedEnergy               function():number -- Get the maximum safe EU input
  13.   getEUSinkTier                   function():number -- Determine the tier of this energy sink (1 = LV, 2 = MV, 3 = HV, 4 = EV)
  14.   getEUSourceTier                 function():number -- Determine the tier of this energy source (1 = LV, 2 = MV, 3 = HV, 4 = EV)
  15.   getEnergyStored                 function([direction:number=6]):number -- Returns the amount of stored energy for the given side.
  16.   getIdlePowerUsage               function():number -- Get the idle power usage of the network.
  17.   getInventoryName                function():string -- Get the name of this inventory
  18.   getInventorySize                function():number -- Get the size of this inventory
  19.   getItemDetail                   function(item:{id:string,dmg:number?,nbt_hash:string?},proxy:boolean?):object -- Retrieves details about the specified item from the ME Network.
  20.   getMaxEnergyStored              function([direction:number=6]):number -- Returns the maximum amount of stored energy for the given side.
  21.   getMaxStoredPower               function():number -- Get the maximum stored power in the network.
  22.   getOfferedEnergy                function
  23.   getSinkTier                     function
  24.   getStackInSlot                  function(slotNumber:number,proxy:boolean?):object -- Get details of an item in a particular slot
  25.   getStoredPower                  function():number -- Get the stored power in the network.
  26.   getTankInfo                     function(direction:string{DOWN,UP,NORTH,SOUTH,WEST,EAST,UNKNOWN}?):table -- A table of tanks will be returned, each with a table of information
  27.   isEnergyProvider                function():number -- Returns whether this component can provide energy.
  28.   isEnergyReceiver                function():number -- Returns whether this component can receive energy.
  29.   listMethods                     function(filterSource:string?):string -- List all the methods available
  30.   listSources                     function():table -- List all method sources
  31.   pullItem                        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
  32.   pullItemIntoSlot                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.   pushItem                        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
  34.   pushItemIntoSlot                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
  35.   swapStacks                      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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement