Author Topic: Red_Guy's Unlimited Mining Color Numbers?  (Read 426 times)

I don't understand what these numbers mean i want to make my own ores but i don't know what a certain color is, Can someone perhaps say the color code for this mod or give me a tip or two?

 new ScriptObject(MineDirt) { name="Dirt";            value=0;     color=54; minPercent=0;    MaxPercent=100;  depth=0;     };
       new ScriptObject(MineOre) { name="Einsteinium";      value=5;     color=4;  minPercent=87;   maxpercent=89;   depth=-15;   veinLength=8; };
       new ScriptObject(MineOre) { name="Gold";             value=30;    color=3;  minPercent=83;   maxPercent=84;   depth=0;   veinLength=10; };
       new ScriptObject(MineOre) { name="Silver";           value=15;    color=30; minPercent=84;   maxPercent=85;   depth=0;   veinLength=11; };
       new ScriptObject(MineOre) { name="Diamond";          value=100;   color=17; minPercent=85;   maxPercent=86;   depth=0;   veinLength=5;  };
       new ScriptObject(MineOre) { name="Platinum";         value=50;    color=44; minPercent=86;   maxPercent=87;   depth=0;   veinLength=10; };
       new ScriptObject(MineOre) { name="Epicness";        value=1000000; color=7; minPercent=0.1;  maxPercent=0.2;  depth=5000;veinLength=2; NoBomb=1;minPick=1000; };
      };

look at your colorset.  The very first color in the upper left hand corner, probably red, is color 0.  The color below that is 1.  Below that is 2.  When you get to the bottom, you continue this pattern from the top of the next column.  I do not think color FX's count, but I could be mistaken.

look at your colorset.  The very first color in the upper left hand corner, probably red, is color 0.  The color below that is 1.  Below that is 2.  When you get to the bottom, you continue this pattern from the top of the next column.  I do not think color FX's count, but I could be mistaken.
Thanks it worked =D