MY COMPONENT PORTALES GATE

11/06/2014 21:38 YURI-ELIADE.ITALY#1
[Only registered and activated users can see links. Click Here To Register...] :handsdown: :handsdown:
11/06/2014 23:03 Real.epvp#2
So you made a new thread why?
11/06/2014 23:10 YURI-ELIADE.ITALY#3
thread because they are two separate and distinct
11/07/2014 00:44 melikhan#4
Congratulations. So... What now? :/
11/07/2014 01:05 Real.epvp#5
The image that you had to make a thread about the gg images have already been posted on epvp by Bau...But if you think your the only one that has it look again xD
11/07/2014 10:15 Luffa#6
So from where did you download this? xD

I would love to know the path you took to get all images?


My last post about it:

Quote:
Originally Posted by Βau View Post
To all the hard working developers.

I've ripped of all GG parts, and here is the result.

[Only registered and activated users can see links. Click Here To Register...]
If you don't know how to use them, then don't ask -.-

Best Regards Bau
Found here: [Only registered and activated users can see links. Click Here To Register...]

Also seems like they are sorted on OP's image as they are sorted in my downloadable file.


Simple Gate Script for making the parts look like the gate.
If you don't know how to use it or do php just don't copy it nor ask about it.

PHP Code:
<?php
header
('Content-Type: image/png');
if(isset(
$_GET['gate']) && !empty($_GET['gate'])){
    
$id $_GET['gate'];
}else{
    
$id 1;
}
if(isset(
$_GET['p']) && !empty($_GET['p'])){    
    
$a $_GET['p'];;
}else{
    
$a 0;
}
$width 235;
$height 290;


$img imagecreatetruecolor($width$height);
imagesavealpha($imgtrue);
$color imagecolorallocatealpha($img000127);
imagefill($img00$color);

for(
$i =1$i<$a$i++){        
    
$top_image imagecreatefrompng("gates/gate".$id."/gate_".$id."_".$i.".png"); // edit the url so it fits your image location
    
imagecopy($img$top_image0000$width$height);
}

imagepng($img);
imagedestroy($img);
?>
Best Regards Bau
11/07/2014 20:47 Arby#7
#closed