Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server
You last visited: Today at 01:56

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



v15 Ranking script funktioniert nicht

Discussion on v15 Ranking script funktioniert nicht within the Flyff Private Server forum part of the Flyff category.

Closed Thread
 
Old   #1
 
Natem's Avatar
 
elite*gold: 0
Join Date: Nov 2010
Posts: 153
Received Thanks: 16
v15 Ranking script funktioniert nicht

Hi leute habe mal das ranking script von dem Theard homepage tools genommen doch als ich alles konfiguiert habe kommt nur configuration incorecta... was kann ich da tun leigt dass am script??
Natem is offline  
Old 11/21/2010, 14:13   #2
 
elite*gold: 0
Join Date: Aug 2009
Posts: 825
Received Thanks: 400
Ich kann mal meine "Test HP" uploaden da isn funktionierendes Ranking dabei aber da steht dann nur:

Spielername: Level: Job:

Nilsator 200 H-Blade
Nilsator2 is offline  
Old 06/14/2011, 11:23   #3
 
elite*gold: 0
Join Date: Apr 2011
Posts: 6
Received Thanks: 1
suche wen der mir ne php homepager erstellen könnte.
danielx9 is offline  
Old 06/14/2011, 14:53   #4
 
elite*gold: 0
Join Date: Oct 2007
Posts: 491
Received Thanks: 732
Habe mir das "New good ranking Skript" nun selbst nochmal runtergeladen und angeschaut und ich stellte fest, dass die Fehlermeldung, die du dort oben nanntest, dort gar nicht drinsteht.

Gut, wenn man seinen Kopf anstrengt, liegt der Schluss nahe, dass du das andere Rankingskript nutzt, und siehe da:
PHP Code:
    require('./configs/rank_conf.php');
    if(!
$link){
        echo 
'configuracion incorrecta';}

// Anmerkung: Ein 'Hoch' auf die international gültige Websprache... 
Bedeutet: Schau' mal in die rank_conf.php, dort wirst du fündig werden (nehme an, dass du keine Verbindungsdaten dort eingetragen hast)
Marv!n is offline  
Old 06/16/2011, 23:18   #5
 
elite*gold: 0
Join Date: Apr 2010
Posts: 427
Received Thanks: 86
also ich hab die von hyper flyff

Schau mal ob du die auch so hast:

rank_conf.php
Quote:
<?php
$link = @mssql_connect("ICH-PC\SQLEXPRESS", "", "meinpasswort") ;
$db = @mssql_select_db("CHARACTER_01_DBF");
?>
ranking.php
Quote:
<p><?php
function quetrabajo($job){
if ($job == '0'){
echo "Vagrant";
}
if ($job == '1'){
echo "Mercenary";
}
if ($job == '2'){
echo "Acrobat";
}
if ($job == '3'){
echo "Assist";
}
if ($job == '4'){
echo "Magician";
}
if ($job == '5'){
echo "Puppeter";
}
if ($job == '6'){
echo "Knight";
}
if ($job == '7'){
echo "Blade";
}
if ($job == '8'){
echo "Jester";
}
if ($job == '9'){
echo "Ranger";
}
if ($job == '10'){
echo "Ringmaster";
}
if ($job == '11'){
echo "billposter";
}
if ($job == '12'){
echo "Psykeeper";
}
if ($job == '13'){
echo "Elementor";
}
if ($job == '14'){
echo "Gatekeeper";
}
if ($job == '15'){
echo "Doppler";
}
if ($job == '16'){
echo "M-Knight";
}
if ($job == '17'){
echo "M-Blade";
}
if ($job == '18'){
echo "M-Jester";
}
if ($job == '19'){
echo "M-Ranger";
}
if ($job == '20'){
echo "M-Ringmaster";
}
if ($job == '21'){
echo "M-Billposter";
}
if ($job == '22'){
echo "M-Psykeeper";
}
if ($job == '23'){
echo "M-Elementor";
}
if ($job == '24'){
echo "H-Knight";
}
if ($job == '25'){
echo "H-Blade";
}
if ($job == '26'){
echo "H-Jester";
}
if ($job == '27'){
echo "H-Ranger";
}
if ($job == '28'){
echo "H-Ringmaster";
}
if ($job == '29'){
echo "H-Billposter";
}
if ($job == '30'){
echo "H-Psykeeper";
}
if ($job == '31'){
echo "H-Elementor";
}
}

$contadorn=1;
$contadorm=1;
$contadorh=1;
$normal = array();
$master = array();
$hero = array();
require('./configs/rank_conf.php');
if(!$link){
echo 'configuracion incorrecta';
}else{
if(!db){
echo ' la base de datos no existe';
}else{
$sql = "SELECT * FROM CHARACTER_TBL ORDER BY m_nLevel DESC";
$result = mssql_query($sql);
while($consulta = mssql_fetch_array($result)) {
if($consulta['m_nJob']<=15){
$normal[$contadorn]=$consulta['m_szName'];
$normal[$contadorn+1]=$consulta['m_nLevel'];
$normal[$contadorn+2]=$consulta['m_nJob'];
$contadorn= $contadorn+3;
}else{
if($consulta['m_nJob']<=15){
$master[$contadorm]=$consulta['m_szName'];
$master[$contadorm+1]= $consulta['m_nLevel'];
$master[$contadorm+2]=$consulta['m_nJob'];
$contadorm= $contadorm+3;
}else{
$hero[$contadorh]=$consulta['m_szName'];
$hero[$contadorh+1]=$consulta['m_nLevel'];
$hero[$contadorh+2]=$consulta['m_nJob'];
$contadorh= $contadorh+3;
}
}
}

//empezamos a contar los Masters
echo '<div align="center"><table width="100%" border="0" cellspacing="0" cellpadding="0";"><tr>';
echo '<td width="37%" style="padding-left:12px;"><b><u>Username</td>';
echo '<td width="16%" style="padding-left:12px;"><b><u>Level</td>';
echo '<td width="47%" style="padding-left:12px;"><b><u>Job</u></b></td>';
echo'</tr>';
echo'<tr>';
for($i=1;$i<$contadorm;$i=$i+1){
echo '<td style="padding-left:12px;">';
if($i>1 and $i%3==0){
quetrabajo($master[$i]);
echo "</td></tr><tr>";
}else{
echo $master[$i]."</td>";
}

}
//acabamos

//empezamos a contar los heroes
for($i=1;$i<$contadorh;$i=$i+1){
echo '<td style="padding-left:12px;">';
if($i>1 and $i%3==0){
quetrabajo($hero[$i]);
echo "</td></tr><tr>";
}else{
echo $hero[$i]."</td>";
}

}
//acabamos

//empezamos a contar los Masters
for($i=1;$i<$contadorn;$i=$i+1){
echo '<td style="padding-left:12px;">';
if($i>1 and $i%3==0){
quetrabajo($normal[$i]);
echo "</td></tr><tr>";
}else{
echo $normal[$i]."</td>";
}

}
echo '</tr>';
//acabamos
}
}
mssql_close();

?>
<tr><td></td><td><br><br><div align="center" style="font-size:12;font-color:#666;"></div></td></tr></table></div></p>
19Dani92 is offline  
Old 06/17/2011, 01:25   #6
 
elite*gold: LOCKED
The Black Market: 116/0/3
Join Date: May 2011
Posts: 3,618
Received Thanks: 2,007
Thread ist Uralt x.x siehe Datum....

#Closerequest
Kurosaki' is offline  
Closed Thread


Similar Threads Similar Threads
Ranking Script v15
06/26/2010 - Flyff Private Server - 4 Replies
Hi, Hat hier vielleicht wer ne voll funktionstüchtige Ranking script für v15.? Danke schon mal^^
kleines autoit script funktioniert nicht
06/07/2010 - AutoIt - 5 Replies
Hallo, ich versuche jetzt seit ca 1 oder 2 stunden dieses dämliche script zum laufen zu bringen was einfach nicht funktioniert -.- es lässt sich auch compilieren aber öffnet sich dann einfach nicht :facepalm: hier mal der source teilweise #include <IE.au3> HotKeySet ("{F8}", "_start") HotKeySet ("{F9}", "_ende") HotKeySet ("{F7}", "pause") Func pause() MsgBox (0, "lol", "Bot wurde Angehalten!")
[Help] AutoIt 3 Script funktioniert nicht
02/15/2010 - AutoIt - 5 Replies
hi, habe ein Script geschrieben, aber irgendwie beendet sich das immer von selbst. Script: #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3>
Ranking Script!
01/24/2010 - Metin2 Private Server - 38 Replies
Hallo, ich hab eine Problem bei meiner Rangliste... Ich will, das das Reich auch angezeigt wird jedoch habe ich keine ahnung wie man das macht das dann ein bild kommt und wo das überhaupt stehe in welchem reich man ist. MfG Drake
Request: New Eudemons Ranking Script
02/17/2009 - EO PServer Hosting - 3 Replies
like the title says i need a new Script for eudemons ranking theat can support Pixie and other new eudemons



All times are GMT +2. The time now is 01:56.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.