The source is that the color ID is 0 and you set it to say you cleared (id) bricks.I don't know how to go about making it say red, but you can figure that out, I'm sure. :)
Bump.Haylow? I still need halp.
%coloridx = -1;%color[%coloridx++] = "red";%color[%coloridx++] = "yellow";%color[%coloridx++] = "green";%color[%coloridx++] = "blue";%color[%coloridx++] = "white";
-stuff-
Kalph already explained this. You'll have to assign a name to every possible color starting at 0, which is red. The format is as follows.1 10 19 282 11 20 293 12 21 304 13 22 315 14 23 326 15 24 337 16 25 348 17 26 359 18 27 36So, basically:Code: [Select]%coloridx = -1;%color[%coloridx++] = "red";%color[%coloridx++] = "yellow";%color[%coloridx++] = "green";%color[%coloridx++] = "blue";%color[%coloridx++] = "white";Continue along the list going down each column one by one. I hope you understand
I never knew you registered an alt.
Assuming it's kalph's alt (based on his 4 posts so far)Kalphiter Plaz Kalphilaz Plaphiter
I know how to do that. I've already done it. My problem is that if I say "/clearcolorbricks 0" is says "Boom cleared 0 bricks" if I say "/clearcolorbricks 1" it says "Boom cleared 1 bricks". It needs to say "Boom cleared red bricks" and "Boom cleared yellow bricks", but it doesn't say that, and Kalphiter says his snippet of code would fix that, and so far it hasn't.
Slicksilver555.