Advertisement
Daraketh

meIntAPI openP

Jul 6th, 2014
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.00 KB | None | 0 0
  1. getPreformattedItems:
  2. returnTypes:
  3. 1: TABLE
  4. description: Get a list of the preformatted items
  5. args:
  6.  
  7. ------------------------------------------------------------
  8.  
  9. isPreformatted:
  10. returnTypes:
  11. 1: BOOLEAN
  12. description: Is preformatted
  13. args:
  14.  
  15. ------------------------------------------------------------
  16.  
  17. getAdvancedMethodsData:
  18. returnTypes:
  19. 1: TABLE
  20. description: Get a complete table of information about all available methods
  21. args:
  22. isValid:
  23. returnTypes:
  24. 1: BOOLEAN
  25. description: Is block valid
  26. args:
  27.  
  28. ------------------------------------------------------------
  29.  
  30. getUnusedItemCount:
  31. returnTypes:
  32. 1: NUMBER
  33. description: Get the unused item count
  34. args:
  35.  
  36. ------------------------------------------------------------
  37.  
  38. extractItem:
  39. returnTypes:
  40. 1: NUMBER
  41. description: Extract an item
  42. args:
  43. 1:
  44. type: TABLE
  45. description: A table representing the item stack
  46. name: stack
  47. 2:
  48. type: STRING
  49. description: The direction of the chest relative to the wrapped peripheral
  50. name: direction
  51.  
  52. ------------------------------------------------------------
  53.  
  54. getName:
  55. returnTypes:
  56. 1: STRING
  57. description: Get the name of this cell
  58. args:
  59.  
  60. ------------------------------------------------------------
  61.  
  62. listMethods:
  63. returnTypes:
  64. 1: STRING
  65. description: List all the methods available
  66. args:
  67.  
  68. ------------------------------------------------------------
  69.  
  70. canHoldNewItem:
  71. returnTypes:
  72. 1: NUMBER
  73. description: Can this machine hold any new items?
  74. args:
  75.  
  76. ------------------------------------------------------------
  77.  
  78. containsItemType:
  79. returnTypes:
  80. 1: BOOLEAN
  81. description: Check to see if the network contains an item type
  82. args:
  83. 1:
  84. type: NUMBER
  85. description: The item id
  86. name: itemId
  87. 2:
  88. type: NUMBER
  89. description: The item dmg value
  90. name: dmgValue
  91.  
  92. ------------------------------------------------------------
  93.  
  94. getStoredItemTypes:
  95. returnTypes:
  96. 1: NUMBER
  97. description: Get the amount of stored item types
  98. args:
  99.  
  100. ------------------------------------------------------------
  101.  
  102. getPriority:
  103. returnTypes:
  104. 1: NUMBER
  105. description: Get the priority of this machine
  106. args:
  107.  
  108. ------------------------------------------------------------
  109.  
  110. getRemainingItemTypes:
  111. returnTypes:
  112. 1: NUMBER
  113. description: Get the remaining item type count
  114. args:
  115.  
  116. ------------------------------------------------------------
  117.  
  118. isFuzzyPreformatted:
  119. returnTypes:
  120. 1: BOOLEAN
  121. description: Is fuzzy preformatted
  122. args:
  123.  
  124. ------------------------------------------------------------
  125.  
  126. insertItem:
  127. returnTypes:
  128. 1: NUMBER
  129. description: Insert an item back into the system
  130. args:
  131. 1:
  132. type: NUMBER
  133. description: The slot you wish to send
  134. name: slot
  135. 2:
  136. type: NUMBER
  137. description: The amount you want to send
  138. name: amount
  139. 3:
  140. type: STRING
  141. description: The direction of the chest relative to the wrapped peripheral
  142. name: direction
  143.  
  144. ------------------------------------------------------------
  145.  
  146. getRemainingItemCount:
  147. returnTypes:
  148. 1: NUMBER
  149. description: Get the remaining item count
  150. args:
  151.  
  152. ------------------------------------------------------------
  153.  
  154. getTotalItemTypes:
  155. returnTypes:
  156. 1: NUMBER
  157. description: Get the total total item types stored
  158. args:
  159.  
  160. ------------------------------------------------------------
  161.  
  162. getAvailableItems:
  163. returnTypes:
  164. 1: TABLE
  165. description: Get a list of the available items
  166. args:
  167.  
  168. ------------------------------------------------------------
  169.  
  170. getUnusedBytes:
  171. returnTypes:
  172. 1: NUMBER
  173. description: Get the unused bytes
  174. args:
  175.  
  176. ------------------------------------------------------------
  177.  
  178. getFreeBytes:
  179. returnTypes:
  180. 1: NUMBER
  181. description: Get the amount of free bytes
  182. args:
  183.  
  184. ------------------------------------------------------------
  185.  
  186. getTotalBytes:
  187. returnTypes:
  188. 1: NUMBER
  189. description: Get the total bytes
  190. args:
  191.  
  192. ------------------------------------------------------------
  193.  
  194. countOfItemType:
  195. returnTypes:
  196. 1: NUMBER
  197. description: Count the amount of a certain item type
  198. args:
  199. 1:
  200. type: NUMBER
  201. description: The item id
  202. name: itemId
  203. 2:
  204. type: NUMBER
  205. description: The item dmg value
  206. name: dmgValue
  207.  
  208. ------------------------------------------------------------
  209.  
  210. requestCrafting:
  211. returnTypes:
  212. 1: VOID
  213. description: Request crafting of a specific item
  214. args:
  215. 1:
  216. type: TABLE
  217. description: A table representing the item stack
  218. name: stack
  219.  
  220. ------------------------------------------------------------
  221.  
  222. getStoredItemCount:
  223. returnTypes:
  224. 1: NUMBER
  225. description: Get the amount of stored items
  226. args:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement