Reply to Re: Different default text color for Dink -- is it possible?
If you don't have an account, just leave the password field blank.
int &red = 255;
int &green = 132;
int &blue = 132;
set_font_color(14, &red, &green, &blue);
(Updated to add & before variable names, oops!)
int &green = 132;
int &blue = 132;
set_font_color(14, &red, &green, &blue);
(Updated to add & before variable names, oops!)