View Single Post
bl4nk
SourceMod Developer
Join Date: Jul 2007
Old 05-15-2012 , 15:07   Re: [INC] More Colors (1.0.0BETA)
Reply With Quote #14

Thought this might come of use to some people:
PHP Code:
stock GetRandomRGB() {
    
SetRandomSeed(RoundFloat(GetEngineTime()));
    return (((
GetRandomInt(0,255) & 0xFF) << 16) | ((GetRandomInt(0,255) & 0xFF) << 8) | ((GetRandomInt(0,255) & 0xFF) << 0));

bl4nk is offline