viewing paste Unknown #19518 | C

Posted on the
1 2 3 4 5 6 7 8 9
BUILDIN(color2hex) {
    int color = script->get_num(st, 2);
    char *colorstring;
 
    sprintf(colorstring, "%06X", color);
 
    my_pushstrcopy(st,colorstring);
    return true;
}
Viewed 661 times, submitted by Guest.