Private Server Info and Support Thread

11/05/2014 05:33 Requi#1126
Quote:
Originally Posted by bobn171 View Post
Guys, i need some help..

i'm developing a server from 0, and i've a problem... I need to the exact position of each player to check if is in portal range, or atack range, whatever... I mean, i need to know the position every 0.5 sec (for example) while the player is flying..
There is a packet or something that returns to the server the posision of each player?
Add me on skype please. Will help you logical. Because there is no need to check it all the time.
11/05/2014 10:13 bobn171#1127
Quote:
Originally Posted by Requi View Post
Add me on skype please. Will help you logical. Because there is no need to check it all the time.
Thank you requi :D
11/05/2014 21:28 YURI-ELIADE.ITALY#1128
please someone has code to set the maps on aurora cms oneultimate?

[Only registered and activated users can see links. Click Here To Register...]
11/06/2014 22:36 Puma<3#1129
[Only registered and activated users can see links. Click Here To Register...]
11/06/2014 22:43 shooteram#1130
Quote:
Originally Posted by Puma<3 View Post
[Only registered and activated users can see links. Click Here To Register...]
The backlink to elitepvpers isn't set.
Your actual html code:
Code:
<a href="#"><div class="epvp_logo"></div></a>
The code that you should have to respect the rules of elitepvpers:
Code:
<a href="http://www.elitepvpers.com/forum" target="_blank"><div class="epvp_logo"></div></a>
11/07/2014 03:56 MS-Colder#1131
link for statu server
11/07/2014 05:20 Requi#1132
[Only registered and activated users can see links. Click Here To Register...]
If anybody needs an Vector class in Java. quickly threw that stuff in np++. Probably some things are wrong. If you're familiar with Java. Correct it :p
11/07/2014 09:55 bobn171#1133
Quote:
Originally Posted by Requi View Post
[Only registered and activated users can see links. Click Here To Register...]
If anybody needs an Vector class in Java. quickly threw that stuff in np++. Probably some things are wrong. If you're familiar with Java. Correct it :p
I think that i correct it right [Only registered and activated users can see links. Click Here To Register...]
11/07/2014 10:24 Luffa#1134
I repost this here, cause the other so called thread about it should be closed:
[Only registered and activated users can see links. Click Here To Register...]

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...]

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);
?>

I nearly forgot all about this gg thing i had going.

Best Regards Bau
11/07/2014 10:50 bobn171#1135
Thanks Bau, i seen that post before but i didn't tell you, good job, as always
11/07/2014 15:28 steppdroid#1136
How Add img Rank in hall of fame?

PHP Code:
<?php
                    $i 
0;
                    foreach (
$this->hall_of_fame as $key => $value) {
                        
$i++;
                        echo 
'<tr>';
                        echo 
'<td class="id">'.$i.'.</td>';
                        echo 
'<td class="username">'.$this->hall_of_fame[$key]['username'].'</td>';
                        echo 
'<td class="point">'.$this->hall_of_fame[$key]['user_kill'].'</td>';
                        echo 
'</tr>';
                    }

                
?>
the variable rank is "grade" .
11/07/2014 17:25 ioryblood70#1137
alguno me ayudaria a montarlo en version latina lo e echo con otros tutos pero el pack viene con demaciados errores si alguien tiene los files mejor me comentan porfa [Only registered and activated users can see links. Click Here To Register...]
11/07/2014 17:56 manulaiko3.0#1138
Quote:
Originally Posted by ioryblood70 View Post
alguno me ayudaria a montarlo en version latina lo e echo con otros tutos pero el pack viene con demaciados errores si alguien tiene los files mejor me comentan porfa [Only registered and activated users can see links. Click Here To Register...]
Aprende a programar y corrige los errores por tu cuenta, nada es gratis

Quote:
Originally Posted by steppdroid View Post
How Add img Rank in hall of fame?

PHP Code:
<?php
                    $i 
0;
                    foreach (
$this->hall_of_fame as $key => $value) {
                        
$i++;
                        echo 
'<tr>';
                        echo 
'<td class="id">'.$i.'.</td>';
                        echo 
'<td class="username">'.$this->hall_of_fame[$key]['username'].'</td>';
                        echo 
'<td class="point">'.$this->hall_of_fame[$key]['user_kill'].'</td>';
                        echo 
'</tr>';
                    }

                
?>
the variable rank is "grade" .
PHP Code:
<?php
                    $i 
0;
                    foreach (
$this->hall_of_fame as $key => $value) {
                        
$i++;
                        echo 
'<tr>';
                        echo 
'<td class="id">'.$i.'.</td>';
                        echo 
'<td class="username">'.$this->hall_of_fame[$key]['username'].'</td>';
                        echo 
'<td class="point">'.$this->hall_of_fame[$key]['user_kill'].'</td>';
                        echo 
'<td class="rank"><img src="do_img/global/ranks/rank_'.$this->hall_of_fame[$key]["grade"].'.gif" /></td>';
                        echo 
'</tr>';
                    }

                
?>
Isn't really hard -.-
11/07/2014 18:22 steppdroid#1139
Quote:
Originally Posted by manulaiko3.0 View Post
Aprende a programar y corrige los errores por tu cuenta, nada es gratis



PHP Code:
<?php
                    $i 
0;
                    foreach (
$this->hall_of_fame as $key => $value) {
                        
$i++;
                        echo 
'<tr>';
                        echo 
'<td class="id">'.$i.'.</td>';
                        echo 
'<td class="username">'.$this->hall_of_fame[$key]['username'].'</td>';
                        echo 
'<td class="point">'.$this->hall_of_fame[$key]['user_kill'].'</td>';
                        echo 
'<td class="rank"><img src="do_img/global/ranks/rank_'.$this->hall_of_fame[$key]["grade"].'.gif" /></td>';
                        echo 
'</tr>';
                    }

                
?>
Isn't really hard -.-
no work..
Notice: Undefined index: grade in C:\wamp\www\views\internalStart\index.php
11/07/2014 18:29 manulaiko3.0#1140
Quote:
Originally Posted by steppdroid View Post
no work..
Notice: Undefined index: grade in C:\wamp\www\views\internalStart\index.php
You should learn programming before making a private server
Change
PHP Code:
$this->hall_of_fame[$key]["grade"
with the name of the rank variable