Well First of all it takes time to become a scripter.
Be patient and work with it untill you get it.
but heres alittle help
Consts are like for public use, ill try to use an example to try and show you what i mean.
SCAR Code:
Program Consthelp;
{.include SRL/SRL.scar}
const
TreeColor = 34234234;
Begin
Findcolor(TreeColor,x,y,0,0,500,500)
// Instead of putting the color in it, i used "Treecolor"
// So anytime you put TreeColor in your script
// It will use that color you picked (The Numbers) in the const
end.
This is What it would look like without Const's
SCAR Code:
Program Consthelp;
{.include SRL/SRL.scar}
Begin
Findcolor(34234234,x,y,0,0,500,500)
end.
Ill help more later, but i gtg for now
Hope i help =\