peace :)Quote:
peace
(hope ya still got a kick out of my joke)
Printable View
peace :)Quote:
peace
(hope ya still got a kick out of my joke)
Ok, I want to make one thing clear.
I dont dont DONT make sigs for people.
Especially not for free! OK?
If you want a sig made by me, then ure going to have to do something pretty amazingly nice to me to deserve it. It takes me alot of time to make a sig, and 99% of your guys arent worth it, no offence, but I don't personally know any of you.
With that said, mamouth snuck in before I closed the gates (that were never open...)
http://farm2.static.flickr.com/1257/...3b69297e_o.jpg
You joined this month and you have 500 posts :(
I joined last year and have barely any more than that
wow dude that is so awsome!
Wow, your good. Especially love Tim's and Crossback's. Quick question, how did you do the reflection effect in Tim's? I've always wanted to know :).
1. Dunceiam
2. I have a strange fasination with technology/techno/electricity. Probably a light-blue neon glow, anything with the theme of electricity.
3. Could I get the .psd so I can see the layers? (Merge the text layer saying, "Here" with the background in case you think I want to edit that out :))
4. Once again, anything you like. I'm not picky.
5. See #4.
If you need more specifications I can, but I still want to give you a lot of freedom. Anything you think would look good, go for it.
Thanks.
-Dunceiam
Shes still waiting on her labtop to be fixed I think?
lap top is fixed.
Flatten all the visible layers into one . then, lower thee opacasy, and use the manipulation tool to flip it upside down and make it small. Set it to screen, and mabey add a light gausian blur to it.Quote:
Originally Posted by Dunceiam
Oo. Fancy. Ty
-Dunce
Ok, Lord Greg, you whiney baby, here it is.
http://itsat.tehintar.net/share/Lordgregsig.png
Here what's your sig? I can't tell what it says on the truck
EDIT: My sig is awsome (fellow CS'ers would agree) even though I didn't make it. IT'S ANIMATED.
It says Here.
Also, I like the LoTR MMORPG one better.
lord greg you sig looks awsome now. Also here i liked your old sig better but this one cool to.
Yeah, defanitly like you old one better.
Now, asside form making my sig work hypocritic.
I present to you,
The ONE
The ONLY
Criteria for judging a sigs awesome ness.
First, add up the number of pixcels.
Then, for each pixel, get the amount of R in its (R,G,B)
add up all the R's and divind by the number of pixels.
mutiply by 100
That! will you give you the percent awesomeness of the signature.
No arguments you know its true, look into your heart!
(yes, the ideal sig is nothing but red...but few are powerfull enough to pull it off)
lol wow im so confuse now all i understude was red is the awsomeist color everer!
You know what, mabey I am crazy.. but I really think that is worthy of a scar script :P
Gregs signature aawesomeness detector...
hmmmm.... that would be pretty difficult to make no? but it would be hilarious to see.
Suggestion for Greg, instead of having 2 sigs connected. If possible, make the right sig, (The one with the eyes) in the back of the left sig. Making the face behind the warriors or whatever they are. Probably impossible, but still :p.
-Dunceiam :)
I consider that a chalenge :) Check this out, il start working on nusting one out right now...
Oh, yeah, i am absolutly huminitaed by my attempt to comnbine these sigs. i did a horible job. Feel free to try yourself.
Dunceiman, ill try ure idea
but right now im in a race against myself to make that sig judger
It is finished!
After the update
CrossBacks Sig is 48.0442005332736% Awesome!
Heres Sig is 44.245159284836% Awesome!
Mamouths Sig is 65.2224532224532% Awesome!
My Sig is 66.3714976384818% Awesome!
Dont talk about this here (how it works, etc) this is Here's thread, talk about it
Here
This is on a 100% scale, and the judgement is flawless :)
I hope you enjoy it
SCAR Code:PROGRAM GregsSigAwesomenessDetection;
{.include srl/srl.scar}
VAR
x1, y1, x2, y2,R,G,B,points: INTEGER;
RedCount:Extended;
// makeGregForm variables.
EndmakeGregForm: BOOLEAN;
GregsForm: TForm;
Label1, Label2, Label3, Label4, Label5, Label6,
Label7: TLabel;
Bevel1, Bevel2: TBevel;
Edit1, Edit2, Edit4, Edit3: TEdit;
Button1, Button2, Button3, Button4: TButton;
tcolor: LONGINT;
PROCEDURE Clear(Sender: TObject);
BEGIN
Edit1.Text := IntToStr(0);
Edit2.Text := IntToStr(0);
Edit3.Text := IntToStr(0);
Edit4.Text := IntToStr(0);
label7.Caption := '0% Awesome';
END;
PROCEDURE Judge(Sender: TObject);
BEGIN
x2:=strtoint(edit3.text);
y2:=strtoint(edit4.text);
points:=0;
RedCount:=0;
for x1:=strtoint(edit1.text) to x2 do
for y1:=strtoint(edit2.text) to y2 do
begin
points:=points+1;
ColortoRGB(getColor(x1,y1),R, G, B);
//if(NOT (((((R)-((G+B)/2))))=255))then
//writeln('R'+inttostr(R)+' G'+inttostr(G)+'B'+inttostr(R));
RedCount:= RedCount+((((R)-((G+B)/2))));
if(points mod 1000 = 0) then
begin
Button3.Caption:='Red is :'+floattostr(RedCount);
Button4.refresh;
end
end;
Button3.Caption:='Judge Sig';
writeln('Red Count was '+floatTostr(redCount));
writeln('points was '+floatTostr(points));
writeln('red over p was '+floatTostr(redCount/points));
label7.caption:=floattostr((((RedCount*100)/(points*255))+100)/2)+'% Awesome!';
addToReport('Sig is '+floattostr((((RedCount*100)/(points*255))+100)/2)+'% Awesome!');
END;
PROCEDURE clicked1(Sender: TObject);
BEGIN
REPEAT
wait(1);
UNTIL (NOT (ismousebuttondown(True)));
tColor := edit1.Color;
edit1.Color := clRed;
edit2.Color := clRed;
REPEAT
wait(1);
getmousepos(x, y);
Edit1.Text := IntToStr(x);
Edit1.refresh;
Edit2.Text := IntToStr(y);
Edit2.refresh;
UNTIL (ismousebuttondown(True));
BEGIN
getmousepos(x, y);
wait(10);
Edit1.Text := IntToStr(x);
Edit2.Text := IntToStr(y);
edit1.Color := tColor;
edit2.Color := tColor;
END;
END;
PROCEDURE clicked2(Sender: TObject);
BEGIN
REPEAT
wait(1);
UNTIL (NOT (ismousebuttondown(True)));
tColor := edit3.Color;
edit3.Color := clRed;
edit4.Color := clRed;
REPEAT
wait(1);
getmousepos(x, y);
Edit3.Text := IntToStr(x);
Edit3.refresh;
Edit4.Text := IntToStr(y);
Edit4.refresh;
UNTIL (ismousebuttondown(True));
BEGIN
getmousepos(x, y);
wait(10);
Edit3.Text := IntToStr(x);
Edit4.Text := IntToStr(y);
edit3.Color := tColor;
edit4.Color := tColor;
END;
END;
// When the form is closed, this code will be executed.
PROCEDURE makeGregFormOnClose(Sender: TObject;
VAR Action: TCloseAction);
BEGIN
IF (NOT (GregsForm.ModalResult = 1)) THEN
EndmakeGregForm := True;
END;
// This form was parsed using: DFM Form Parser v.23 by Ron.
PROCEDURE makeGregForm;
VAR
TimemakeGregForm: INTEGER;
BEGIN
TimemakeGregForm := GetSystemTime;
GregsForm := CreateForm;
WITH GregsForm DO
BEGIN
OnClose := @makeGregFormOnClose;
Position := poScreenCenter;
BorderStyle := bsSingle;
BorderIcons := [biMinimize, biSystemMenu];
ClientWidth := 211;
ClientHeight := 197;
Caption := 'Greg'#39's Judge';
Color := clWhite;
Font.Color := clWindowText;
Font.Height := -11;
Font.Name := 'MS Sans Serif';
Font.Style := [];
ShowHint := True;
PixelsPerInch := 96;
END;
Label1 := TLabel.Create(GregsForm);
WITH Label1 DO
BEGIN
Parent := GregsForm;
Left := 36;
Top := 32;
Width := 124;
Height := 16;
Caption := 'Sig Awesomeness Detector';
Color := clMaroon;
Font.Color := clMaroon;
Font.Height := -13;
Font.Name := 'Nyala';
Font.Style := [];
ParentColor := False;
ParentFont := False;
END;
Label2 := TLabel.Create(GregsForm);
WITH Label2 DO
BEGIN
Parent := GregsForm;
Left := 71;
Top := 4;
Width := 48;
Height := 28;
Caption := 'Greg'#39's';
Font.Color := clMaroon;
Font.Height := -24;
Font.Name := 'Perpetua';
Font.Style := [fsItalic];
ParentFont := False;
END;
Label3 := TLabel.Create(GregsForm);
WITH Label3 DO
BEGIN
Parent := GregsForm;
Left := 6;
Top := 57;
Width := 50;
Height := 13;
Caption := 'Top Left X';
Font.Color := clMaroon;
Font.Height := -11;
Font.Name := 'MS Sans Serif';
Font.Style := [];
ParentFont := False;
END;
Label4 := TLabel.Create(GregsForm);
WITH Label4 DO
BEGIN
Parent := GregsForm;
Left := 96;
Top := 57;
Width := 7;
Height := 13;
Caption := 'Y';
Font.Color := clMaroon;
Font.Height := -11;
Font.Name := 'MS Sans Serif';
Font.Style := [];
ParentFont := False;
END;
Label5 := TLabel.Create(GregsForm);
WITH Label5 DO
BEGIN
Parent := GregsForm;
Left := 3;
Top := 89;
Width := 71;
Height := 13;
Caption := 'Bottom Right X';
Font.Color := clMaroon;
Font.Height := -11;
Font.Name := 'MS Sans Serif';
Font.Style := [];
ParentFont := False;
END;
Label6 := TLabel.Create(GregsForm);
WITH Label6 DO
BEGIN
Parent := GregsForm;
Left := 107;
Top := 89;
Width := 7;
Height := 13;
Caption := 'Y';
Font.Color := clMaroon;
Font.Height := -11;
Font.Name := 'MS Sans Serif';
Font.Style := [];
ParentFont := False;
END;
Bevel1 := TBevel.Create(GregsForm);
WITH Bevel1 DO
BEGIN
Parent := GregsForm;
Left := 1;
Top := 49;
Width := 192;
Height := 28;
END;
Bevel2 := TBevel.Create(GregsForm);
WITH Bevel2 DO
BEGIN
Parent := GregsForm;
Left := 1;
Top := 81;
Width := 195;
Height := 32;
END;
Label7 := TLabel.Create(GregsForm);
WITH Label7 DO
BEGIN
Parent := GregsForm;
Left := 6;
Top := 146;
Width := 166;
Height := 35;
Hint := 'How Awesome Your Signature is';
Caption := '0% Awesome!';
Font.Color := clMaroon;
Font.Height := -24;
Font.Name := 'Jokerman';
Font.Style := [];
ParentFont := False;
ParentShowHint := False;
ShowHint := True;
END;
Edit1 := TEdit.Create(GregsForm);
WITH Edit1 DO
BEGIN
Parent := GregsForm;
Left := 61;
Top := 53;
Width := 34;
Height := 21;
TabOrder := 8;
Text := '0';
END;
Edit2 := TEdit.Create(GregsForm);
WITH Edit2 DO
BEGIN
Parent := GregsForm;
Left := 104;
Top := 53;
Width := 32;
Height := 21;
TabOrder := 9;
Text := '0';
END;
Edit4 := TEdit.Create(GregsForm);
WITH Edit4 DO
BEGIN
Parent := GregsForm;
Left := 114;
Top := 85;
Width := 30;
Height := 21;
TabOrder := 10;
Text := '0';
END;
Button1 := TButton.Create(GregsForm);
WITH Button1 DO
BEGIN
Parent := GregsForm;
Left := 136;
Top := 51;
Width := 49;
Height := 25;
Caption := 'Choose';
Font.Color := clMaroon;
Font.Height := -11;
Font.Name := 'Lucida Handwriting';
Font.Style := [];
ParentFont := False;
TabOrder := 11;
Onclick := @clicked1;
END;
Button2 := TButton.Create(GregsForm);
WITH Button2 DO
BEGIN
Parent := GregsForm;
Left := 144;
Top := 83;
Width := 49;
Height := 25;
Caption := 'Choose';
Font.Color := clMaroon;
Font.Height := -11;
Font.Name := 'Lucida Handwriting';
Font.Style := [];
ParentFont := False;
TabOrder := 12;
onclick := @clicked2;
END;
Edit3 := TEdit.Create(GregsForm);
WITH Edit3 DO
BEGIN
Parent := GregsForm;
Left := 76;
Top := 85;
Width := 30;
Height := 21;
TabOrder := 13;
Text := '0';
END;
Button3 := TButton.Create(GregsForm);
WITH Button3 DO
BEGIN
Parent := GregsForm;
Left := 11;
Top := 116;
Width := 91;
Height := 25;
Caption := 'Judge This Sig';
TabOrder := 14;
onclick := @judge;
END;
Button4 := TButton.Create(GregsForm);
WITH Button4 DO
BEGIN
Parent := GregsForm;
Left := 110;
Top := 116;
Width := 63;
Height := 25;
Caption := 'Clear';
TabOrder := 15;
Onclick := @Clear;
END;
WriteLn('makeGregForm compiled in ' +
IntToStr(GetSystemTime - TimemakeGregForm) +
' milliseconds!');
END;
PROCEDURE SafemakeGregForm;
VAR
V: TVariantArray;
BEGIN
SetArrayLength(V, 0);
ThreadSafeCall('makeGregForm', V);
END;
PROCEDURE ShowmakeGregFormModal;
BEGIN
GregsForm.ShowModal;
END;
PROCEDURE SafeShowmakeGregFormModal;
VAR
V: TVariantArray;
BEGIN
SetArrayLength(V, 0);
ThreadSafeCall('ShowmakeGregFormModal', V);
END;
PROCEDURE MainmakeGregForm;
BEGIN
SafemakeGregForm;
SafeShowmakeGregFormModal;
FreeForm(GregsForm);
END;
BEGIN
ClearDebug;
ClearReport;
ActivateClient;
GetSelf.WindowState := wsMinimized;
MainmakeGregForm;
GetSelf.WindowState := wsNormal;
IF (EndmakeGregForm) THEN
TerminateScript;
END.
ye it would look better with the face behind the warrior guys but slightly faded.
Thread Hijacker!
I was mearly making a point :P About my property of a sigs aweosmeness.
I tried to lead them away too !
sorry
*runs*
lolpie, you're in the wrong thread.
can u make me 1 that says 'Seriously Ruined Laxatives' not all at once like one after the other in different spots, then with a cool picture in the background
or whatever u can think of
zomg! finally back on topic?!
Oh, dan, why would you want.. actually never mind.
Here (on the first post) made a little info form you need to fill out if you want a sig, go do that.
1. Dan Cardin(dont put my name in...cept maybe at the top right and small)
2. 'Seriously Ruined Laxatives' not all at once like one after the other in different spots, then with a cool picture in the background(and i want cool fonts that are animated)
3. the only 1 i didnt like was the 1 that was all black(but i think thats what he wanted)
4. http://www.webspice.com/content/samples/free/toilet.gif something like that
5. the motto is in the other part "Seriously Ruined Laxatives"
Here does animation?
That's easy animation. But I'm not doing sigs right now.
darn....everyone is quitting...and i dont have photoshop atm
I'm back in business. But you guys'll have to find me the images. Dial-up isn't optimal for browsing.
Glad to here it. I have taken the signature you made and turned it into my winamp skin :D
http://farm3.static.flickr.com/2120/...3629d0_o_d.jpg
Name: Tazzie 02
Type: Black and white or red
Comments: They look awesome :)
Picture: Masterchief from Halo3 with a huge storm (clouds/lightening/sand storm) in the background
Thankyou :)
Tazzie