Posts by DreamMasterXXL
-
-
Btw, Ultimoos do you plan on continuing on this greggy job? If not I can "pass" the thread ownership to @dreammaster which seems to be more active (and even has the github thingy).
I'm just saying this to benefit the community more.I ask him via Private Message to post the link from the Github in his first Post but he didn't answer me.
If i get a script from People i try to post it so quickly i can.
Not using the old satanicsanta Github Project i forked it.Scripts are posted in :
https://github.com/Dream-Master/Mods-Get-GreggedIf some one have a Custom Modpack i can make a folder and post all scripts in this folder.
-
-
-
-
Why you using this instead of this?
Codevar pulveriser = <ThermalExpansion:Machine:1>.withTag({Level: 0 as byte, Augments: [{id: 4757 as short, Damage: 0 as short, Count: 1 as byte, Slot: 0}, {id: 4757 as short, Damage: 32 as short, Count: 1 as byte, Slot: 1}, {id: 4757 as short, Damage: 16 as short, Count: 1 as byte, Slot: 2}]}); var pulveriser = <ThermalExpansion:Machine:1>;
What this code add?
i know this are the Plates from Railcraft.
Dosen´t work because you can´t use Ordict for the machines.
Code#Macerator.addRecipe(<IC2:itemCrushedOre:1> * 3, <ore:oreCopper>); Doesn't work #Macerator.addRecipe(<IC2:itemCrushedOre:3> * 3, <ore:oreTin>); due to API limitations
What this code do ?
Codefor item in <ore:gearIron>.items { <ore:gearIron>.remove(item); } for item in <ore:gearGold>.items { <ore:gearGold>.remove(item); }
On the beginning using val instead of var:
better
-
Still crashing, I even deleted the whole script... Should I redownload MineTweaker and modTweaker ?
About what script you talking exactly?
I think if you crash dont need to download Mod/Minetweaker again.
You posted the Crashlog inside the Minetweaker forum or on Github already?
You can post it here to and i will do. -
Some Thaumcraft work:
https://github.com/Dream-Master/M…t/Thaumcraft.zs
Code
Display More//Created by DreamMasterXXL //import Mods import mods.thaumcraft.Arcane; import mods.gregtech.Assembler; import mods.ic2.Compressor; import mods.ic2.Macerator; //remove Recipes //Thaumometer recipes.remove(<Thaumcraft:ItemThaumometer>); //Iron Wand Cap recipes.remove(<Thaumcraft:WandCap>); //Gold Wand Cap mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:WandCap:1>); //Copper Wand Cap mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:WandCap:3>); //Silver Wand Cap mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:WandCap:5>); //Thaumium Wand Cap mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:WandCap:6>); //Thaumium Ingot recipes.remove(<ore:ingotThaumium>); //Wooden Wand recipes.remove(<Thaumcraft:WandCasting>); //Thauimum Block recipes.remove(<Thaumcraft:blockCosmeticSolid:4>); //Arcane Stone mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:blockCosmeticSolid:6>); //Arcane Pedstal mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:blockStoneDevice:1>); //Arcan Stone Bricks recipes.remove(<Thaumcraft:blockCosmeticSolid:7>); //Runic Matrix mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:blockStoneDevice:2>); //Goggles of Revealing mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:ItemGoggles>); //Table recipes.remove(<Thaumcraft:blockTable>); //Phials recipes.remove(<Thaumcraft:ItemEssence>); //Enchanted Fabric mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:ItemResource:7>); //Greatwood Rood mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:WandRod>); //Magic Crowbar mods.thaumcraft.Arcane.removeRecipe(<Railcraft:tool.crowbar.magic>); //Amber mods.thaumcraft.Crucible.removeRecipe(<Thaumcraft:ItemResource:6>); //Order Shards mods.thaumcraft.Crucible.removeRecipe(<Thaumcraft:ItemShard:4>); //Entropy Shards mods.thaumcraft.Crucible.removeRecipe(<Thaumcraft:ItemShard:5>); //Air Shards mods.thaumcraft.Crucible.removeRecipe(<Thaumcraft:ItemShard>); //Earth Shards mods.thaumcraft.Crucible.removeRecipe(<Thaumcraft:ItemShard:3>); //Water Shards mods.thaumcraft.Crucible.removeRecipe(<Thaumcraft:ItemShard:2>); //Fire Shards mods.thaumcraft.Crucible.removeRecipe(<Thaumcraft:ItemShard:1>); //Remove Furnace Recipes Shrads //Shrads furnace.remove(<Thaumcraft:ItemShard:*>); //Amber furnace.remove(<Thaumcraft:ItemResource:6>); //add Recipes //Thaumometer recipes.addShaped(<Thaumcraft:ItemThaumometer>, [ [<Thaumcraft:ItemShard>, <Thaumcraft:ItemShard:1>, <Thaumcraft:ItemShard:2>], [<IC2:itemCasing:3>, <ore:lensDiamond>, <IC2:itemCasing:3>], [<Thaumcraft:ItemShard:3>, <Thaumcraft:ItemShard:4>, <Thaumcraft:ItemShard:5>]]); //Gold Wand Cap mods.thaumcraft.Arcane.addShaped("CAP_gold", <Thaumcraft:WandCap:1>, "ordo 8, ignis 8, aer 8", [ [null, <ore:foilGold>, null], [<ore:foilGold>, <ore:ringGold>, <ore:foilGold>], [null, <ore:foilGold>, null]]); //Copper Wand Cap mods.thaumcraft.Arcane.addShaped("CAP_copper", <Thaumcraft:WandCap:3>, "ordo 12, ignis 12, aer 12", [ [null, <ore:foilCopper>, null], [<ore:foilCopper>, <ore:ringCopper>, <ore:foilCopper>], [null, <ore:foilCopper>, null]]); //Silver Wand Cap mods.thaumcraft.Arcane.addShaped("CAP_silver", <Thaumcraft:WandCap:5>, "ordo 16, ignis 16, aer 16", [ [null, <ore:foilSilver>, null], [<ore:foilSilver>, <ore:ringSilver>, <ore:foilSilver>], [null, <ore:foilSilver>, null]]); //Thaumium Wand Cap mods.thaumcraft.Arcane.addShaped("CAP_thaumium", <Thaumcraft:WandCap:6>, "ordo 24, ignis 24, aer 24", [ [null, <ore:foilThaumium>, null], [<ore:foilThaumium>, <ore:ringThaumium>, <ore:foilThaumium>], [null, <ore:foilThaumium>, null]]); //Thaumic Crowbar mods.thaumcraft.Arcane.addShaped("RC_Crowbar", <Railcraft:tool.crowbar.magic>, "ordo 24, ignis 24, aer 24", [ [<ore:craftingToolHardHammer>, <ore:dyeRed>, <ore:stickThaumium>], [<ore:dyeRed>, <ore:stickThaumium>, <ore:dyeRed>], [<ore:stickThaumium>, <ore:dyeRed>, <ore:craftingToolFile>]]); //Wooden Wand recipes.addShaped(<Thaumcraft:WandCasting>, [ [<TwilightForest:item.trophy:1>.reuse(), <TwilightForest:item.nagaScale>, <ore:ringIron>], [<TwilightForest:item.nagaScale>, <Forestry:oakStick>, <TwilightForest:item.nagaScale>], [<ore:ringIron>, <TwilightForest:item.nagaScale>, <ore:craftingToolHardHammer>]]); //Thaumium Block Compressor.addRecipe(<Thaumcraft:blockCosmeticSolid:4>, <Thaumcraft:ItemResource:2> * 9); //Thaumium Dust Macerator.addRecipe(<gregtech:gt.metaitem.01:2330> * 9, <Thaumcraft:blockCosmeticSolid:4>); //Arcane Stone mods.thaumcraft.Arcane.addShaped("ARCANESTONE", <Thaumcraft:blockCosmeticSolid:6> * 9, "aer 9, terra 9, ignis 9, aqua 9, ordo 9, perditio 9",[ [<ore:stone>, <ore:stone>, <ore:stone>], [<ore:stone>, <Thaumcraft:ItemShard:*>, <ore:stone>], [<ore:stone>, <ore:stone>, <ore:stone>]]); //Arcane Pedstal mods.thaumcraft.Arcane.addShaped("INFUSION", <Thaumcraft:blockStoneDevice:1> , "aer 8" ,[ [<Thaumcraft:blockCosmeticSolid:6>, <Thaumcraft:blockCosmeticSolid:6>, <Thaumcraft:blockCosmeticSolid:6>], [null, <Thaumcraft:blockCosmeticSolid:6>, null], [<Thaumcraft:blockCosmeticSolid:6>, <Thaumcraft:blockCosmeticSolid:6>, <Thaumcraft:blockCosmeticSolid:6>]]); //Runic Matrix mods.thaumcraft.Arcane.addShaped("INFUSION", <Thaumcraft:blockStoneDevice:2> , "aer 40, terra 40, ignis 40, aqua 40, ordo 40, perditio 40" ,[ [<Thaumcraft:blockCosmeticSolid:7>, <Thaumcraft:blockCrystal:6>, <Thaumcraft:blockCosmeticSolid:7>], [<Thaumcraft:blockCrystal:6>, <minecraft:ender_eye>, <Thaumcraft:blockCrystal:6>], [<Thaumcraft:blockCosmeticSolid:7>, <Thaumcraft:blockCrystal:6>, <Thaumcraft:blockCosmeticSolid:7>]]); //Gogle of Revealing mods.thaumcraft.Arcane.addShaped("GOGGLES", <Thaumcraft:ItemGoggles> , "aer 10, terra 10, ignis 10, aqua 10, ordo 10, perditio 10" ,[ [<Backpack:tannedLeather>, <Backpack:tannedLeather>, <Backpack:tannedLeather>], [<ore:ringGold>, null, <ore:ringGold>], [<Thaumcraft:ItemThaumometer>, <ore:stickGold>, <Thaumcraft:ItemThaumometer>]]); //Table recipes.addShaped(<Thaumcraft:blockTable>, [ [<ore:slabWood>, <ore:slabWood>, <ore:slabWood>], [<ore:stickWood>, <ore:screwAnyIron>, <ore:stickWood>], [<ore:slabWood>, <ore:craftingToolScrewdriver>, <ore:slabWood>]]); //Phials recipes.addShapeless(<Thaumcraft:ItemEssence>, [<minecraft:glass_bottle>, <ore:roundRubber>]); //Enchanted Fabric mods.thaumcraft.Arcane.addShaped("ENCHFABRIC", <Thaumcraft:ItemResource:7> , "aer 5, terra 5, ignis 5, aqua 5, ordo 5, perditio 5" ,[ [<minecraft:string>, <minecraft:string>, <minecraft:string>], [<minecraft:string>, <harvestcraft:wovencottonItem>, <minecraft:string>], [<minecraft:string>, <minecraft:string>, <minecraft:string>]]); //Greatwood Rood mods.thaumcraft.Arcane.addShaped("ROD_greatwood", <Thaumcraft:WandRod> , "terra 10, aqua 10, perditio 10" , [ [null, null, <Thaumcraft:blockMagicalLog>], [null, <Thaumcraft:blockMagicalLog>, null], [<Thaumcraft:blockMagicalLog>, null, null]]); //Amber mods.thaumcraft.Crucible.addRecipe("GT_CRYSTALLISATION", <Thaumcraft:ItemResource:6>, <gregtech:gt.metaitem.01:2514>, "perditio 3, vinculum 6, vitreus 13"); //Order Shards mods.thaumcraft.Crucible.addRecipe("GT_CRYSTALLISATION", <Thaumcraft:ItemShard:4>, <gregtech:gt.metaitem.01:2545>, "ordo 6, perditio 3, praecantatio 3, vitreus 10"); //Entropy Shards mods.thaumcraft.Crucible.addRecipe("GT_CRYSTALLISATION", <Thaumcraft:ItemShard:5>, <gregtech:gt.metaitem.01:2544>, "perditio 9, praecantatio 3, vitreus 10"); //Air Shards mods.thaumcraft.Crucible.addRecipe("GT_CRYSTALLISATION", <Thaumcraft:ItemShard>, <gregtech:gt.metaitem.01:2540>, "aer 6, perditio 3, praecantatio 3, vitreus 10"); //Earth Shards mods.thaumcraft.Crucible.addRecipe("GT_CRYSTALLISATION", <Thaumcraft:ItemShard:3>, <gregtech:gt.metaitem.01:2542>, "perditio 3, praecantatio 3, terra 6, vitreus 10"); //Water Shards mods.thaumcraft.Crucible.addRecipe("GT_CRYSTALLISATION", <Thaumcraft:ItemShard:2>, <gregtech:gt.metaitem.01:2543>, "aqua 6, perditio 3, praecantatio 3, vitreus 10"); //Fire Shards mods.thaumcraft.Crucible.addRecipe("GT_CRYSTALLISATION", <Thaumcraft:ItemShard:1>, <gregtech:gt.metaitem.01:2541>, "ignis 6, perditio 3, praecantatio 3, vitreus 10"); //Assembler Recipes //Arcan Stone Bricks Assembler.addRecipe(<Thaumcraft:blockCosmeticSolid:7>, <Thaumcraft:blockCosmeticSolid:6> * 4, <gregtech:gt.integrated_circuit:4> * 0, 160, 40); //refresh Recipes //Thaumometer mods.thaumcraft.Research.refreshResearchRecipe("THAUMOMETER"); //Iron Wand Cap mods.thaumcraft.Research.refreshResearchRecipe("BASICTHAUMATURGY"); //Gold Wand Cap mods.thaumcraft.Research.refreshResearchRecipe("CAP_gold"); //Copper Wand Cap mods.thaumcraft.Research.refreshResearchRecipe("CAP_copper"); //Silver Wand Cap mods.thaumcraft.Research.refreshResearchRecipe("CAP_silver"); //Thaumium Wand Cap mods.thaumcraft.Research.refreshResearchRecipe("CAP_thaumium"); //Thaumic Crowbar mods.thaumcraft.Research.refreshResearchRecipe("RC_Crowbar"); //Arcane Stone mods.thaumcraft.Research.refreshResearchRecipe("ARCANESTONE"); //Pedstal and Runic Matrix mods.thaumcraft.Research.refreshResearchRecipe("INFUSION"); //Goggles of Revealing mods.thaumcraft.Research.refreshResearchRecipe("GOGGLES"); //Artifice mods.thaumcraft.Research.refreshResearchRecipe("ARTIFICE"); //Enchanted Fabric mods.thaumcraft.Research.refreshResearchRecipe("ENCHFABRIC"); //Greatwood Rod mods.thaumcraft.Research.refreshResearchRecipe("ROD_greatwood"); //Amber and Shards mods.thaumcraft.Research.refreshResearchRecipe("GT_CRYSTALLISATION");
-
-
Arch
Scripts are on Github now.
Thanks -
-
-
@ Arch
Not forget who started the shit storm first. You leaving our Project not me.
Yes you make own scripts and yes you farmating a lot of my scripts.
But you told me that i have to delete your Name from every Script since you not work longer on our Server Project.
So i will redo every of my scripts soon.Btw you can make a pull request on the Github Project so i can add it.
so i did you pull request -
-
-
I didn't see the error but some times its helps when you get the broken code out, reload it and test it again and after this make a new file add the broken code and load it again(or load it alone). Many times i get wired errors and it is much more easy to find errors when you have small files. Sometimes restart minecraft without any scripts and put theme later back.
-
Use my script on Github it works perfect:
Code// --- Rebar --- mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 2); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 4); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 4); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 8); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 8); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 16); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 16); mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar> * 48);
-
-
-