Advertisement
Andersfc

Mods-for the server i host

Dec 8th, 2012
537
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 11.15 KB | None | 0 0
  1. --My Server mods and links, also (use the FTB-beta modpack and you should have any mods, not listed) so people who play on my server can get them fast:
  2. s-http://dl.dropbox.com/u/861751/Mods/miscperipherals/miscperipherals-1.3b1.zip
  3. s-http://ci.thezorro266.com/job/LogisticsPipes/5/
  4. s-http://www.chickenbones.craftsaddle.org/Files/Old_Versions/
  5. Ender storage version 1.4.2-1.2.1.5
  6. Your configs for logistics should be changed to this:
  7. # Configuration file
  8. # Generated on 08-12-12 12:50
  9.  
  10. ####################
  11. # block
  12. ####################
  13.  
  14. block {
  15.    logisticsSignId=1100
  16.    logisticsSolidBlockId=1101
  17. }
  18.  
  19. ####################
  20. # detectioncount
  21. ####################
  22.  
  23. detectioncount {
  24.    # The maximum number of buildcraft pipees (including forks) between logistics pipes. This is an indicator of the maximum ammount of nodes the recursion algorithm will visit before giving up. As it is possible to fork a pipe connection using standard BC pipes the algorithm will attempt to discover all available destinations through that pipe. Do note that the logistics system will not interfere with the operation of non-logistics pipes. So a forked pipe will usually be sup-optimal, but it is possible. A low value might reduce CPU usage, a high value will be able to handle more complex pipe setups. If you never fork your connection between the logistics pipes this has the same meaning as detectionLength and the lower of the two will be used
  25.    general=100
  26. }
  27.  
  28. ####################
  29. # detectionfrequency
  30. ####################
  31.  
  32. detectionfrequency {
  33.    # The amount of time that passes between checks to see if it is still connected to its neighbours. A low value will mean that it will detect changes faster but use more CPU. A high value means detection takes longer, but CPU consumption is reduced. A value of 20 will check about every second
  34.    general=20
  35. }
  36.  
  37. ####################
  38. # detectionlength
  39. ####################
  40.  
  41. detectionlength {
  42.    # The maximum shortest length between logistics pipes. This is an indicator on the maxim depth of the recursion algorithm to discover logistics neighbours. A low value might use less CPU, a high value will allow longer pipe sections
  43.    general=50
  44. }
  45.  
  46. ####################
  47. # displaypopup
  48. ####################
  49.  
  50. displaypopup {
  51.    # Set the default configuration for the popup of the Orderer Gui. Should it be used?
  52.    general=true
  53. }
  54.  
  55. ####################
  56. # general
  57. ####################
  58.  
  59. general {
  60.    detectionCount=500
  61.    detectionFrequency=20
  62.    detectionLength=250
  63.    displayPopup=true
  64.    ordererCountInvertWheel=false
  65.    ordererPageInvertWheel=false
  66. }
  67.  
  68. ####################
  69. # hudrenderdistance
  70. ####################
  71.  
  72. hudrenderdistance {
  73.    # The max. distance between a player and the HUD that get's shown in blocks.
  74.   general=15
  75. }
  76.  
  77. ####################
  78. # item
  79. ####################
  80.  
  81. item {
  82.   logisticDestination.id=6895
  83.   logisticEntrance.id=6894
  84.   logisticInvSysCon.id=6893
  85.   logisticItemCard.id=6869
  86.   logisticsCraftingSignCreator.id=6900
  87.   logisticsDisk.id=6870
  88.   logisticsHUD.id=6868
  89.   logisticsHUDParts.id=6867
  90.   logisticsModules.id=6871
  91.   logisticsNetworkMonitor.id=6873
  92.   logisticsPipe.id=6874
  93.   logisticsPipeApiaristAnalyser.id=6891
  94.   logisticsPipeApiaristSink.id=6892
  95.   logisticsPipeBuilderSupplier.id=6880
  96.   logisticsPipeChassi1.id=6881
  97.   logisticsPipeChassi2.id=6882
  98.   logisticsPipeChassi3.id=6883
  99.   logisticsPipeChassi4.id=6884
  100.   logisticsPipeChassi5.id=6885
  101.   logisticsPipeCrafting.id=6877
  102.   logisticsPipeCraftingMK2.id=6887
  103.   logisticsPipeLiquidSupplier.id=6886
  104.   logisticsPipeProvider.id=6876
  105.   logisticsPipeProviderMK2.id=6890
  106.   logisticsPipeRemoteOrderer.id=6889
  107.   logisticsPipeRequester.id=6875
  108.   logisticsPipeRequesterMK2.id=6888
  109.   logisticsPipeSatellite.id=6878
  110.   logisticsPipeSupplier.id=6879
  111.   logisticsRemoteOrderer.id=6872
  112. }
  113.  
  114. ####################
  115. # logisticdestination.id
  116. ####################
  117.  
  118. logisticdestination.id {
  119.   # The item id for the logistics system destination pipe
  120.   item=6895
  121. }
  122.  
  123. ####################
  124. # logisticentrance.id
  125. ####################
  126.  
  127. logisticentrance.id {
  128.   # The item id for the logistics system entrance pipe
  129.   item=6894
  130. }
  131.  
  132. ####################
  133. # logisticinvsyscon.id
  134. ####################
  135.  
  136. logisticinvsyscon.id {
  137.   # The item id for the inventory system connector pipe
  138.   item=6893
  139. }
  140.  
  141. ####################
  142. # logisticitemcard.id
  143. ####################
  144.  
  145. logisticitemcard.id {
  146.   # The item id for the logistics item card
  147.   item=6869
  148. }
  149.  
  150. ####################
  151. # logisticscraftingsigncreator.id
  152. ####################
  153.  
  154. logisticscraftingsigncreator.id {
  155.   # The item id for the crafting sign creator
  156.   item=6900
  157. }
  158.  
  159. ####################
  160. # logisticsdisk.id
  161. ####################
  162.  
  163. logisticsdisk.id {
  164.   # The item id for the disk
  165.   item=6870
  166. }
  167.  
  168. ####################
  169. # logisticshud.id
  170. ####################
  171.  
  172. logisticshud.id {
  173.   # The item id for the Logistics HUD glasses
  174.   item=6868
  175. }
  176.  
  177. ####################
  178. # logisticshudparts.id
  179. ####################
  180.  
  181. logisticshudparts.id {
  182.   # The item id for the Logistics item parts
  183.   item=6867
  184. }
  185.  
  186. ####################
  187. # logisticsmodules.id
  188. ####################
  189.  
  190. logisticsmodules.id {
  191.   # The item id for the modules
  192.   item=6871
  193. }
  194.  
  195. ####################
  196. # logisticsnetworkmonitor.id
  197. ####################
  198.  
  199. logisticsnetworkmonitor.id {
  200.   # The item id for the network monitor
  201.   item=6873
  202. }
  203.  
  204. ####################
  205. # logisticspipe.id
  206. ####################
  207.  
  208. logisticspipe.id {
  209.   # The item id for the basic logistics pipe
  210.   item=6874
  211. }
  212.  
  213. ####################
  214. # logisticspipeapiaristanalyser.id
  215. ####################
  216.  
  217. logisticspipeapiaristanalyser.id {
  218.   # The item id for the apiarist logistics analyser pipe
  219.   item=6891
  220. }
  221.  
  222. ####################
  223. # logisticspipeapiaristsink.id
  224. ####################
  225.  
  226. logisticspipeapiaristsink.id {
  227.   # The item id for the apiarist logistics sink pipe
  228.   item=6892
  229. }
  230.  
  231. ####################
  232. # logisticspipebuildersupplier.id
  233. ####################
  234.  
  235. logisticspipebuildersupplier.id {
  236.   # The item id for the builder supplier pipe
  237.   item=6880
  238. }
  239.  
  240. ####################
  241. # logisticspipechassi1.id
  242. ####################
  243.  
  244. logisticspipechassi1.id {
  245.   # The item id for the chassi1
  246.   item=6881
  247. }
  248.  
  249. ####################
  250. # logisticspipechassi2.id
  251. ####################
  252.  
  253. logisticspipechassi2.id {
  254.   # The item id for the chassi2
  255.   item=6882
  256. }
  257.  
  258. ####################
  259. # logisticspipechassi3.id
  260. ####################
  261.  
  262. logisticspipechassi3.id {
  263.   # The item id for the chassi3
  264.   item=6883
  265. }
  266.  
  267. ####################
  268. # logisticspipechassi4.id
  269. ####################
  270.  
  271. logisticspipechassi4.id {
  272.   # The item id for the chassi4
  273.   item=6884
  274. }
  275.  
  276. ####################
  277. # logisticspipechassi5.id
  278. ####################
  279.  
  280. logisticspipechassi5.id {
  281.   # The item id for the chassi5
  282.   item=6885
  283. }
  284.  
  285. ####################
  286. # logisticspipecrafting.id
  287. ####################
  288.  
  289. logisticspipecrafting.id {
  290.   # The item id for the crafting logistics pipe
  291.   item=6877
  292. }
  293.  
  294. ####################
  295. # logisticspipecraftingmk2.id
  296. ####################
  297.  
  298. logisticspipecraftingmk2.id {
  299.   # The item id for the crafting logistics pipe MK2
  300.   item=6887
  301. }
  302.  
  303. ####################
  304. # logisticspipecraftingmk3.id
  305. ####################
  306.  
  307. logisticspipecraftingmk3.id {
  308.   # The item id for the crafting logistics pipe MK3
  309.   item=6896
  310. }
  311.  
  312. ####################
  313. # logisticspipeliquidsupplier.id
  314. ####################
  315.  
  316. logisticspipeliquidsupplier.id {
  317.   # The item id for the liquid supplier pipe
  318.   item=6886
  319. }
  320.  
  321. ####################
  322. # logisticspipeprovider.id
  323. ####################
  324.  
  325. logisticspipeprovider.id {
  326.   # The item id for the providing logistics pipe
  327.   item=6876
  328. }
  329.  
  330. ####################
  331. # logisticspipeprovidermk2.id
  332. ####################
  333.  
  334. logisticspipeprovidermk2.id {
  335.   # The item id for the provider logistics pipe MK2
  336.   item=6890
  337. }
  338.  
  339. ####################
  340. # logisticspiperemoteorderer.id
  341. ####################
  342.  
  343. logisticspiperemoteorderer.id {
  344.   # The item id for the remote orderer logistics pipe
  345.   item=6889
  346. }
  347.  
  348. ####################
  349. # logisticspiperequester.id
  350. ####################
  351.  
  352. logisticspiperequester.id {
  353.   # The item id for the requesting logistics pipe
  354.   item=6875
  355. }
  356.  
  357. ####################
  358. # logisticspiperequestermk2.id
  359. ####################
  360.  
  361. logisticspiperequestermk2.id {
  362.   # The item id for the requesting logistics pipe MK2
  363.   item=6888
  364. }
  365.  
  366. ####################
  367. # logisticspipesatellite.id
  368. ####################
  369.  
  370. logisticspipesatellite.id {
  371.   # The item id for the crafting satellite pipe
  372.   item=6878
  373. }
  374.  
  375. ####################
  376. # logisticspipesupplier.id
  377. ####################
  378.  
  379. logisticspipesupplier.id {
  380.   # The item id for the supplier pipe
  381.   item=6879
  382. }
  383.  
  384. ####################
  385. # logisticsremoteorderer.id
  386. ####################
  387.  
  388. logisticsremoteorderer.id {
  389.   # The item id for the remote orderer
  390.   item=6872
  391. }
  392.  
  393. ####################
  394. # logisticssignid
  395. ####################
  396.  
  397. logisticssignid {
  398.   # The ID of the LogisticsPipes Sign
  399.   block=1112
  400. }
  401.  
  402. ####################
  403. # logisticssolidblockid
  404. ####################
  405.  
  406. logisticssolidblockid {
  407.   # The ID of the LogisticsPipes Solid Block
  408.   block=1111
  409. }
  410.  
  411. ####################
  412. # orderercountinvertwheel
  413. ####################
  414.  
  415. orderercountinvertwheel {
  416.   # Inverts the the mouse wheel scrolling for remote order number of items
  417.   general=false
  418. }
  419.  
  420. ####################
  421. # ordererpageinvertwheel
  422. ####################
  423.  
  424. ordererpageinvertwheel {
  425.   # Inverts the the mouse wheel scrolling for remote order pages
  426.   general=false
  427. }
  428.  
  429. ####################
  430. # powerusagedisabled
  431. ####################
  432.  
  433. powerusagedisabled {
  434.   # Diable the power usage trough LogisticsPipes
  435.   general=false
  436. }
  437.  
  438. ####################
  439. # tilereplacedisabled
  440. ####################
  441.  
  442. tilereplacedisabled {
  443.   # Diable the Replacement of the TileGenericPipe trough the LogisticsTileGenericPipe
  444.   general=false
  445. }
  446.  
  447. s-http://www.computercraft.info/forums2/index.php?/topic/5875-cc-147mc-144turtle-item-analyzer/
  448. s-http://www.computercraft.info/forums2/index.php?/topic/2942-cc-146-mc-144-aperture-science-turtle-upgrades-added-fishing-turtles-advanced-solar-turtles-and-furnace-turtles/
  449. your configs should be like this, also its ASTU version 1.0 :
  450. # Configuration file
  451. # Generated on 08-12-12 13:00
  452.  
  453. ####################
  454. # database
  455. ####################
  456.  
  457. database {
  458.   EnableItemDetectionForDatabaseTurtles=true
  459.   EnableRedPowerRecipes=false
  460. }
  461.  
  462. ####################
  463. # idetector
  464. ####################
  465.  
  466. idetector {
  467.   AllowMetaDetection=true
  468.   # Change whether turtles need fuel to IDetect
  469.   ConsumerFuel=true
  470.   ReturnNames=true
  471. }
  472.  
  473. ####################
  474. # items
  475. ####################
  476.  
  477. items {
  478.   ChunkLoaderID=19993
  479.   EnderLinkCardID=19999
  480. }
  481.  
  482. ####################
  483. # turtles
  484. ####################
  485.  
  486. turtles {
  487.   EnableChunkLoadingTurtles=true
  488.   EnableDatabaseTurtles=true
  489.   EnableEnderTurtles=true
  490.   EnableIDetectingTurtles=true
  491.   EnableSilkTouchTurtles=true
  492.   EnableSolarTurtles=true
  493.   EnableSonarTurtles=true
  494.   EnableSpeakingTurtles=false
  495. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement