| |
03-06-2008, 11:58 PM
|
#151 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Oct 2007 Location: Baltimore,MD
Posts: 2,322
Firmware Installed: 3.90 M33-2
| 
The Sig Thread - Request/Show Off Sigs
my newest sig.. 
__________________ |
| |
03-07-2008, 01:31 AM
|
#152 (permalink)
| | Senior Member I Modded My PSP
Join Date: Aug 2007
Posts: 467
| 
The Sig Thread - Request/Show Off Sigs
|
| |
03-09-2008, 10:58 PM
|
#153 (permalink)
| | Senior Member I Modded My PSP
Join Date: Nov 2007 Location: Cheese Island
Posts: 250
Firmware Installed: 3.52m33-4<-God Like
| 
The Sig Thread - Request/Show Off Sigs
How do you like my current Sig? It was a quick one. I tried to make it something else... but it didn't really work. sooo... anywayz, how is it? |
| |
03-09-2008, 10:59 PM
|
#154 (permalink)
| | Senior Member I Modded My PSP
Join Date: Nov 2007 Location: Cheese Island
Posts: 250
Firmware Installed: 3.52m33-4<-God Like
| 
The Sig Thread - Request/Show Off Sigs
sorry for double post but, I think the Font i used blands it out, Thats the ONLY thing i see. |
| |
03-09-2008, 11:15 PM
|
#155 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Oct 2007 Location: Baltimore,MD
Posts: 2,322
Firmware Installed: 3.90 M33-2
| 
The Sig Thread - Request/Show Off Sigs
its better than the other one, but the cloth style background blands it, and the font hurts it. good effort tho
__________________ |
| |
03-09-2008, 11:51 PM
|
#156 (permalink)
| | Senior Member I Modded My PSP
Join Date: Feb 2008 Location: PA
Posts: 418
Firmware Installed: 3.80m33-5 w/ TM
| 
The Sig Thread - Request/Show Off Sigs
looks pretty good m8. i think you should change the color of the text tho. |
| |
03-10-2008, 12:38 AM
|
#157 (permalink)
| | Junior Member PSP User
Join Date: Mar 2008 Location: north carolina
Posts: 21
Firmware Installed: 3.52 m33 bitches!
| 
The Sig Thread - Request/Show Off Sigs
Eh a while back i use to get into sig making.. but i settled for the ones that i have now. I use to have another account on another forum named "ownage w00t" heres the sig 
this was when i got into making sigs but i really don't care much for it anymore
__________________ My wonders~
If cocaine were legal, would they sell it in little packages like Sweet N' Low? Would they call it Sweet N' High?
If drinking and driving is illegal, why do bars have parking lots?
If a word in the dictionary were misspelled, how would we know?
Want to see my awesome customized psp? visit http://www.youtube.com/v/F2stkbkQfME |
| |
03-10-2008, 12:50 AM
|
#158 (permalink)
| | Senior Member I Modded My PSP
Join Date: Aug 2007
Posts: 467
| 
The Sig Thread - Request/Show Off Sigs
I made one like yesterday or so, But I didnt want to post one Right after my last one, So here it is
All of my sigs are in my sig, So to speak, They change on reload, So this one will pop up from time to time, I now have a good sized colletion that rotates, Though I might take out some of the old ones |
| |
03-10-2008, 12:54 AM
|
#159 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Oct 2007 Location: Baltimore,MD
Posts: 2,322
Firmware Installed: 3.90 M33-2
| 
The Sig Thread - Request/Show Off Sigs
protojazz how do you do the script?
__________________ |
| |
03-10-2008, 01:16 AM
|
#160 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Jul 2007 Location: South Eastern PA
Posts: 2,135
Firmware Installed: 371m33-4
| 
The Sig Thread - Request/Show Off Sigs
I made a sig yesterday. Its in my sig. lol.
__________________ |
| |
03-10-2008, 01:28 AM
|
#161 (permalink)
| | Senior Member I Modded My PSP
Join Date: Aug 2007
Posts: 467
| 
The Sig Thread - Request/Show Off Sigs
Quote:
Originally Posted by NuMB3Rs protojazz how do you do the script? | You need a Web Host that Will let you use PHP, but I can send the Script if you want, All you do is stick it in a folder, and Any Images in that Folder will be displayed Instead of the file |
| |
03-10-2008, 01:47 AM
|
#162 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Jul 2007 Location: South Eastern PA
Posts: 2,135
Firmware Installed: 371m33-4
| 
The Sig Thread - Request/Show Off Sigs
send me the script if you dont mind. 
__________________ |
| |
03-10-2008, 01:50 AM
|
#163 (permalink)
| | Senior Member I Modded My PSP
Join Date: Aug 2007
Posts: 467
| 
The Sig Thread - Request/Show Off Sigs
PHP Code: <?php
$extList = array();
$extList['gif'] = 'image/gif';
$extList['jpg'] = 'image/jpeg';
$extList['jpeg'] = 'image/jpeg';
$extList['png'] = 'image/png';
$img = null;
if (substr($folder,-1) != '/') {
$folder = $folder.'/';
}
if (isset($_GET['img'])) {
$imageInfo = pathinfo($_GET['img']);
if (
isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) &&
file_exists( $folder.$imageInfo['basename'] )
) {
$img = $folder.$imageInfo['basename'];
}
} else {
$fileList = array();
$handle = opendir($folder);
while ( false !== ( $file = readdir($handle) ) ) {
$file_info = pathinfo($file);
if (
isset( $extList[ strtolower( $file_info['extension'] ) ] )
) {
$fileList[] = $file;
}
}
closedir($handle);
if (count($fileList) > 0) {
$imageNumber = time() % count($fileList);
$img = $folder.$fileList[$imageNumber];
}
}
if ($img!=null) {
$imageInfo = pathinfo($img);
$contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
header ($contentType);
readfile($img);
} else {
if ( function_exists('imagecreate') ) {
header ("Content-type: image/png");
$im = @imagecreate (100, 100)
or die ("Cannot initialize new GD image stream");
$background_color = imagecolorallocate ($im, 255, 255, 255);
$text_color = imagecolorallocate ($im, 0,0,0);
imagestring ($im, 2, 5, 5, "IMAGE ERROR", $text_color);
imagepng ($im);
imagedestroy($im);
}
}
?> |
| |
03-10-2008, 01:58 AM
|
#164 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Jul 2007 Location: South Eastern PA
Posts: 2,135
Firmware Installed: 371m33-4
| 
The Sig Thread - Request/Show Off Sigs
very cool thanks!
__________________ |
| |
03-10-2008, 04:19 AM
|
#165 (permalink)
| | Senior Member I Modded My PSP
Join Date: Aug 2007
Posts: 467
| 
The Sig Thread - Request/Show Off Sigs
Theres a variation Im looking into soon, Where its just one image, But Random Text over it (I dont mean random as in "asdkasdfhkgsdqwerty9903490bown")
Just like a diffrent quote on Each page load |
| | | Thread Tools | | | | Display Modes | Linear Mode |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | All times are GMT. The time now is 11:10 AM. |