[C++] Timecyc Rainbow - source code

CreativeAdv

New member
Joined
Aug 8, 2018
Messages
4
Reaction score
0
To get the link to the source you have to fill in some tasks, more specifically to subscribe and like.
The link to the source is valid for 24 hours.

Fill the tasks
 

ini

Well-known member
Joined
Sep 28, 2015
Messages
321
Reaction score
115
Thx bro very usefull for cpast thx
 

monday

Expert
Joined
Jun 23, 2014
Messages
1,127
Solutions
1
Reaction score
158
https://pastebin.com/v0sQsuq7
C++:
if (g_Options.Rainbow.bRainbow && g_Options.Rainbow.bRainbowSky)
    {
        *(byte*)(0x561760) = 0xC3;
        *(byte*)(0xB7C4C4) = (BYTE)round(vars->dwRGBColor.x * 255.f);
        *(byte*)(0xB7C4C6) = (BYTE)round(vars->dwRGBColor.y * 255.f);
        *(byte*)(0xB7C4C8) = (BYTE)round(vars->dwRGBColor.z * 255.f);
 
        *(byte*)(0xB7C4CA) = (BYTE)round(vars->dwRGBColor.x * 255.f);
        *(byte*)(0xB7C4CC) = (BYTE)round(vars->dwRGBColor.y * 255.f);
        *(byte*)(0xB7C4CE) = (BYTE)round(vars->dwRGBColor.z * 255.f);
    }
    else
    {
        *(BYTE *)0x561760 = 0xA1;
    }
 
Top