| |
05-21-2008, 01:00 AM
|
#16 (permalink)
| | Banned I Modded My PSP
Join Date: Jun 2007
Posts: 178
Firmware Installed: 3.52 M33
| 
Winner of SOTW contest - Week 34: L33ttony
omg. i dont get it. the other peoples sigs looked like 3 y/o made them. Im not saying i dislike anybody here or anything im just saying my opinion i dont think he deserved it but its over now so i dont really care anymore |
| |
05-21-2008, 01:22 AM
|
#17 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Jun 2007 Location: PA
Posts: 4,172
Firmware Installed: It's broked...
| 
Winner of SOTW contest - Week 34: L33ttony
Quote:
Originally Posted by immortal7792 omg. i dont get it. the other peoples sigs looked like 3 y/o made them. Im not saying i dislike anybody here or anything im just saying my opinion i dont think he deserved it but its over now so i dont really care anymore | Next time, try to stick with some positive comments, okay?
__________________
What's that ringing? Do I have a tumor? |
| |
05-21-2008, 01:27 AM
|
#18 (permalink)
| | Banned I Modded My PSP
Join Date: Jun 2007
Posts: 178
Firmware Installed: 3.52 M33
| 
Winner of SOTW contest - Week 34: L33ttony
accually chriscyco i thought ur sig looked pretty nice. |
| |
05-24-2008, 03:06 AM
|
#19 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: May 2007
Posts: 4,074
Firmware Installed: 3.80M33-5
| 
Winner of SOTW contest - Week 34: L33ttony
I do agree, it's just a render with some lighting, and cropping, didn't look like he did anything besides that. I wouldn't have voted for him but anyway, congrats eight.
__________________ |
| |
05-24-2008, 06:05 AM
|
#20 (permalink)
| | Senior Member I Modded My PSP
Join Date: Aug 2007
Posts: 489
| 
Winner of SOTW contest - Week 34: L33ttony
Now actualy, I was Pretty Sure thats what it was too... But I gave him the Benifit of the doudt, The Clouds or whatevers through the gate there look like something I sometimes make in photoshop
Just goes to show you that sometimes the Best things are made by people who get paid $27 to make them |
| |
06-05-2008, 03:20 AM
|
#21 (permalink)
| | Senior Member I Modded My PSP
Join Date: Dec 2007 Location: Long Beach, Wa.
Posts: 436
Firmware Installed: 3.90 M33 2
| 
Winner of SOTW contest - Week 34: L33ttony
congrats on mz for winning a sotw. He is afterall the resident wallpaper master. |
| |
06-05-2008, 03:55 AM
|
#22 (permalink)
| | Senior Member I Modded My PSP
Join Date: Aug 2007
Posts: 489
| 
Winner of SOTW contest - Week 34: L33ttony
Yay! he won!
Now he says he wont enter another!
But whatever, Its all in the eye of the beholder, Eventualy even the Best artists will be outdone by a compleat noob in some ones opinion |
| |
06-05-2008, 04:07 AM
|
#23 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Oct 2007 Location: Hi, I'm Chris!
Posts: 2,153
Firmware Installed: Who the fuck cares?
| 
Winner of SOTW contest - Week 34: L33ttony
You just changed your sig a second ago. It was first Anime, and now it's Iron Man. |
| |
06-05-2008, 02:37 PM
|
#24 (permalink)
| | Super Moderator PSP Elite Hacker
Join Date: Feb 2007 Location: On a pirate ship, somewhere in the South Atlantic.
Posts: 3,168
Firmware Installed: Killed it
| 
Winner of SOTW contest - Week 34: L33ttony
Refresh the page, it's a script.
He's got a server that has a bunch of his sigs, all titled "sig.png", and then the script fetches a random image called "sig.png" to display.
See: The server, and then he's just displaying [img]sig.php[/img] |
| |
06-05-2008, 03:32 PM
|
#25 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Oct 2007 Location: Hi, I'm Chris!
Posts: 2,153
Firmware Installed: Who the fuck cares?
| 
Winner of SOTW contest - Week 34: L33ttony
wow, that's cool, how do you do that? Getting a free server and so-on... |
| |
06-05-2008, 06:21 PM
|
#26 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Feb 2008
Posts: 1,755
Firmware Installed: V3.90 M33-3
| 
Winner of SOTW contest - Week 34: L33ttony
I've got a server and would love to know how to do that. It supports php. Is this a freely available script? |
| |
06-05-2008, 09:10 PM
|
#27 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Dec 2006 Location: Cali Baby!!
Posts: 2,100
Firmware Installed: Support Single Moms
| 
Winner of SOTW contest - Week 34: L33ttony
Thank you sam31183, i guess i did kinda take over the Wallpapers thread...
Jazz, yeah your right... I'm out of the SOTW... i just wanted to win one... thats all... and i won the best one... a FREE GAME!! so... back to wallpapers... where i mostly get my requests from... i still make sig's here and there though...
i was trying to figure out how to do that script thing myself... sure would be nice if someone posted a lil Tut on it?
"wink, wink" |
| |
06-05-2008, 09:46 PM
|
#28 (permalink)
| | Super Moderator PSP Elite Hacker
Join Date: Feb 2007 Location: On a pirate ship, somewhere in the South Atlantic.
Posts: 3,168
Firmware Installed: Killed it
| 
Winner of SOTW contest - Week 34: L33ttony
Umm, just to help you guys out... 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); } }
?> And here's what he said to do... Quote:
Originally Posted by ProtoJazz 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 | I think I'm going to try this before I leave tomorrow...
Edit: Oh yeah, and make sure you put the following into your sig to get it to display properly Code: [img]http://www.SERVER-INFO-HERE.com/sig.php/sig.png[/img]
Last edited by Pirate-M.Lifnen : 06-05-2008 at 10:01 PM.
|
| |
06-05-2008, 09:53 PM
|
#29 (permalink)
| | Senior Member PSP Elite Hacker
Join Date: Feb 2008
Posts: 1,755
Firmware Installed: V3.90 M33-3
| 
Winner of SOTW contest - Week 34: L33ttony
I know I am going to try this as by the end opf the week. THANKS! |
| |
06-05-2008, 10:08 PM
|
#30 (permalink)
| | Super Moderator PSP Elite Hacker
Join Date: Feb 2007 Location: On a pirate ship, somewhere in the South Atlantic.
Posts: 3,168
Firmware Installed: Killed it
| 
Winner of SOTW contest - Week 34: L33ttony
I can't get it to work...maybe it's my host.. |
| | | 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 06:50 AM. |