Post: [RELEASE] RGB editors
02-22-2012, 05:40 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); here they are hope you like.



credit to mikeeey <3 he helped me alot

thread it like this: [ATTACH=CONFIG]15794[/ATTACH]
    self thread colorEditor(<hud here>Winky Winky;


    colorEditor(sHud)
{
self endon("death");
self endon("disconnect");
for(k = 0; k < 3; k++)
{
curs["slide"][k] = 0;
curs["coll"][k] = 0;
}
curs["scroll"] = 0;
color["scrollBar"] = createRectangle("","",0,((curs["scroll"]*2Cool Man (aka Tustin)+30),230,24,(0,0,0),"white",20,1);
color["backGround"] = createRectangle("","",0,0,1000,720,(0,0,0),"white",10,(1/2.40));
for(k = 0; k < 3; k++)
{
color["slide"][k] = createRectangle("","",(((curs["slide"][curs["scroll"]]*10)/5)-(100)),((28*k)+30),3,17,(1,1,1),"white",200,1);
color["bar"][k] = createRectangle("","",0,((28*k)+30),200,2,(1,1,1),"white",150,.9);
}
for(k = 0; k < 3; k++)
color["value"][k] = createValue("default",1.9,"","",((k*70)-70),((color["slide"][1].y)-65),1,13,0);

color["foreground"] = createRectangle("","",0,color["slide"][1].y,230,94,(0,0,0),"white",11,(1/3.20));
color["preview"] = createRectangle("","",0,((color["slide"][1].y)-65),230,30,(0,0,0),"white",12,1);
wait .2;
while(1)
{
self freezeControls(true);
if(self attackButtonPressed() || self adsButtonPressed())
{
curs["slide"][curs["scroll"]] -= self adsButtonPressed();
curs["slide"][curs["scroll"]] += self attackButtonPressed();
if(curs["slide"][curs["scroll"]] > 100)
curs["slide"][curs["scroll"]] = 0;

if(curs["slide"][curs["scroll"]] < 0)
curs["slide"][curs["scroll"]] = 100;

color["slide"][curs["scroll"]] setPoint("","",(((curs["slide"][curs["scroll"]]*10)/5)-(100)),color["slide"][curs["scroll"]].y);
curs["coll"][curs["scroll"]] = ((curs["slide"][curs["scroll"]]*2.55)/255);
for(k = 0; k < color["value"].size; k++)
color["value"][k] setValue(int(color["preview"].color[k]*255));

color["preview"].color = (curs["coll"][0], curs["coll"][1], curs["coll"][2]);
}
if(self fragButtonPressed() || self secondaryOffHandButtonPressed())
{
curs["scroll"] -= self secondaryOffHandButtonPressed();
curs["scroll"] += self fragButtonPressed();
if(curs["scroll"] >= color["slide"].size)
curs["scroll"] = 0;

if(curs["scroll"] < 0)
curs["scroll"] = color["slide"].size-1;

color["scrollBar"].y = color["bar"][curs["scroll"]].y;
wait .2;
}
if(self meleeButtonPressed())
break;

if(self useButtonPressed())
{
sHud.color = color["preview"].color;
break;
}
wait .05;
}
self freezeControls(false);
keys = getArrayKeys(color);
for(k = 0; k < keys.size; k++)
if(isDefined(color[keys[k]][0]))
for(r = 0; r < color[keys[k]].size; r++)
color[keys[k]][r] destroy();
else
color[keys[k]] destroy();
}



you will need these again.


    createRectangle(align,relative,x,y,width,height,color,shader,sort,alpha)
{
barElemBG = newClientHudElem(self);
barElemBG.elemType = "bar";
barElemBG.width = width;
barElemBG.height = height;
barElemBG.align = align;
barElemBG.relative = relative;
barElemBG.xOffset = 0;
barElemBG.yOffset = 0;
barElemBG.children = [];
barElemBG.sort = sort;
barElemBG.color = color;
barElemBG.alpha = alpha;
barElemBG setParent(level.uiParent);
barElemBG setShader(shader, width, height);
barElemBG.hidden = false;
barElemBG setPoint(align, relative, x, y);
thread destroyElemOnDeath(barElemBG);
return barElemBG;
}
createValue(font,fontscale,align,relative,x,y,alpha,sort,value)
{
hudValue = createFontString(font,fontscale,self);
hudValue setPoint(align,relative,x,y);
hudValue.alpha = alpha;
hudValue.sort = sort;
hudValue setValue(value);
thread destroyElemOnDeath(hudValue);
return hudValue;
}
destroyElemOnDeath(elem)
{
self waittill("death");
if(isDefined(elem.bar))
elem destroyElem();
else
elem destroy();
}
(adsbygoogle = window.adsbygoogle || []).push({});

The following 10 users say thank you to IELIITEMODZX for this useful post:

1337HaXaLoT, BlazingDope, Correy, ImDUB, iPROFamily, Karoolus, Taylor, ThePhantom410., x_DaftVader_x
02-24-2012, 10:14 AM #29
1337HaXaLoT
Bounty hunter
Originally posted by IVI40A3Fusionz View Post
People call their patches BLABLASNAME Private Patch v1.0 but if it were private they wouldn't release or give it a name Winky Winky. You didn't exactly come up with your patch name yourself? :love:
no i named it Winky Winky
02-24-2012, 02:57 PM #30
Originally posted by IVI40A3Fusionz View Post
Ima call my Sooooo Waaaasted :carling: joke.


Sooooooooo Carrrrrrrrrrling :carling:
02-24-2012, 05:27 PM #31
IVI40A3Fusionz
Former Gaming Squad Member
Originally posted by 1337HaXaLoT View Post
no i named it Winky Winky


Doesn't mean a thing just means you don't have good original patch name ideas Winky Winky, I mean you took Craig's patch name and changed 1 word.
02-24-2012, 05:47 PM #32
Originally posted by IVI40A3Fusionz View Post
Doesn't mean a thing just means you don't have good original patch name ideas Winky Winky, I mean you took Craig's patch name and changed 1 word.
i asked craig if i was allowed to remake his menu on cod4(he seid yes), i needed a name like soooo stoned but not sooo stoned, so he told me that new name, and it was good Happy, he had alot ov other good names for my menu but i wanted it to be like craigs.
02-24-2012, 05:56 PM #33
IVI40A3Fusionz
Former Gaming Squad Member
Originally posted by IELIITEMODZX View Post
i asked craig if i was allowed to remake his menu on cod4(he seid yes), i needed a name like soooo stoned but not sooo stoned, so he told me that new name, and it was good Happy, he had alot ov other good names for my menu but i wanted it to be like craigs.


Still, i want to know why you don't want a unique name :/. I bet So Wasted or whatever it's called has been used before.
02-24-2012, 05:59 PM #34
Originally posted by IVI40A3Fusionz View Post
Still, i want to know why you don't want a unique name :/. I bet So Wasted or whatever it's called has been used before.


no the name has never been used, i am the 1st.
02-24-2012, 06:04 PM #35
IVI40A3Fusionz
Former Gaming Squad Member
Originally posted by IELIITEMODZX View Post
no the name has never been used, i am the 1st.


How are you 100% sure? There are hundreds of thousands of coders that make patches someone may have the same name just typing in So Wasted into Google or YouTube won't always get you the result you want, I mean i typed in 'So Wasted COD' i didn't get anything to do with patches, other than your So Wasted posted on 5*Gz, didn't get a NGU result.
02-24-2012, 06:10 PM #36
Originally posted by IVI40A3Fusionz View Post
How are you 100% sure? There are hundreds of thousands of coders that make patches someone may have the same name just typing in So Wasted into Google or YouTube won't always get you the result you want, I mean i typed in 'So Wasted COD' i didn't get anything to do with patches, other than your So Wasted posted on 5*Gz, didn't get a NGU result.


trust me you will not find a menu with the name soooo wasted. that was posted befor mine Happy
02-24-2012, 06:12 PM #37
IVI40A3Fusionz
Former Gaming Squad Member
Originally posted by IELIITEMODZX View Post
trust me you will not find a menu with the name soooo wasted. that was posted befor mine Happy


I still reckon someone has a menu called 'So Wasted' Winky Winky never know COD4 was released like 5 years ago this year, they could not have released it alot of good coders don't release stuff no more they keep it private.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo