hm don`t know...to me works, maybe is db...
Printable View
hm don`t know...to me works, maybe is db...
But U dont know how to fix it, because If i use the muweb 0.8 includes and modules it work, but when I copy ur files it dont work. U know how to fix, I want that my ranking show 3rd class
great release 10/10 :)
@bauru: You are calling yourself a coder?
@gocho07: JESUS... dont listen to him.. he even doesnt know the problem solve.. maybe DB.. ROFL
what did he released? DB or php scripts? ^^ what's the matter? Best working of stuff is own made up stuff..
Gz
Just open includes/character_manager.php
CTRL+G , Find 30 Line.. There you see Classes numbers and what is going to be changed if class = @class..
$row[1] is Class,, by this:
if $row[1] would be changed to $row[2] it would calculate by lvl by this:Code:$query = "SELECT Name,Class,cLevel,Resets,Strength.....
0 1 2 3 4
If your level is 1 you are SM if lvl 64 you are DL and smth..
** OK.. Guide how to not Break up your web with his addon: **
this means that if [DB.MuOnline][Character] Class=0 so the name in Class Field will be DW and not 0.. if you would delete these lines you would get after login in website your class in numbers. this simple renaming script is changing your class number to sometghing Else.. just copy lines like that:Code:if($row[1] == 0){ $row[1] ='DW';}
if($row[1] == 1){ $row[1] ='SM';}
if($row[1] == 0){ $row[1] ='DW';}
if($row[1] == 1){ $row[1] ='SM';}
if($row[1] == 0){ $row[1] ='DW';}
And change from if($row[1] == 0){ $row[1] ='DW';} to:
if($row[1] == 2){ $row[1] ='GM';}
And all is going to look like this:
one thing.. Dark Wizard is 0, his class turns to SM and gets +1 = 1Code:if($row[1] == 0){ $row[1] ='DW';}
if($row[1] == 1){ $row[1] ='SM';}
if($row[1] == 2){ $row[1] ='GM';}
and Grand Master = SM+1 = 1+1 = 2
DW=0
SM=1
GM=2
You just need to know name of classes... its here :
DW=0 SM=1 GM=2
DK=16 BK=17 BM=18
ELF=32 ME=33 H.ELF=34
MG=48 DM=49
DL=64 LE=65
SUM=80 BSUM=81 D.M=82
Other else do the same thing..
One thing that i'm approving in this work is Rankings modded..
it has some minutes to deal with ^^Code:<option value="allclass">All Characters</option>
<option value="bs">Only Bloody Summoner's</option>
<option value="bm">Only Blade Master's</option>
<option value="gm">Only Grand Master's</option>
<option value="he">Only High Elf's</option>
<option value="dm">Only Duel Master's</option>
<option value="le">Only Lord Emperor's</option>
<option value="dim">Only Dimension Master's</option>
<option value="gms">Game Masters</option>
<option value="ban">Banned Characters</option>
<option value="ban_acc">Banned Accounts</option>
<option value="guilds">Guilds</option>
<option value="str">Who has the Most Strength</option>
<option value="agg">Who has the Most Agility</option>
<option value="vit">Who has the Most Vitality</option>
<option value="enr">Who has the Most Energy</option>
<option value="life">Who has the Most Life</option>
<option value="mana">Who has the Most Mana</option>
<option value="zen">Who has the Most Zen</option>
I hope this small info will add new php masters ^^
Good Luck.. :sweatdrop
thank you man very good.
@DarkerLT, don`t know for me works :) => isn`t php script it`s db...You are verry smart are you...pff... If it`s not that it`s another.... good luck :)
I`m not a coder for now I only learn php...but you can`t call yourself something more then me :)
I wrote that in my profil, becouse i don`t do only php and another thinks a little :P
gocho07 just open includes/character_manager.php
find 30 line with CTRL+G
and do the lines to look like this.. :
if($row[1] == 0){ $row[1] ='DW';}
if($row[1] == 1){ $row[1] ='SM';}
if($row[1] == 16){ $row[1] ='DK';}
if($row[1] == 17){ $row[1] ='BK';}
if($row[1] == 32){ $row[1] ='ELF';}
if($row[1] == 33){ $row[1] ='ME';}
if($row[1] == 48){ $row[1] ='MG';}
if($row[1] == 64){ $row[1] ='DL';}
if($row[1] == 2){ $row[1] ='GM';}
if($row[1] == 18){ $row[1] ='BM';}
if($row[1] == 34){ $row[1] ='HE';}
if($row[1] == 49){ $row[1] ='DM';}
if($row[1] == 65){ $row[1] ='LE';}
if($row[1] == 80){ $row[1] ='SUM';}
if($row[1] == 81){ $row[1] ='B.SUM';}
if($row[1] == 82){ $row[1] ='D.SUM';}
I see that gocho07 edited his web manually..
Your Script don't read his DB. You want to say by that?
Without your scripts, his web is working fine. you have added some shit to web like Sessions destroying, sql inject.. release your web, then it is going to work fine of course. it has been edited not little but much.. i think ppl need only names and $top rank counting by zen, by stats. it's so simple to add.. but you have added some shit more.. and it has been BOOOMED :D
Ranking.php :
<option value="allclass">All Characters</option>
<option value="bs">Only Bloody Summoner's</option>
<option value="bm">Only Blade Master's</option>
<option value="gm">Only Grand Master's</option>
<option value="he">Only High Elf's</option>
<option value="dm">Only Duel Master's</option>
<option value="le">Only Lord Emperor's</option>
<option value="dim">Only Dimension Master's</option>
<option value="gms">Game Masters</option>
<option value="ban">Banned Characters</option>
<option value="ban_acc">Banned Accounts</option>
<option value="guilds">Guilds</option>
<option value="str">Who has the Most Strength</option>
<option value="agg">Who has the Most Agility</option>
<option value="vit">Who has the Most Vitality</option>
<option value="enr">Who has the Most Energy</option>
<option value="life">Who has the Most Life</option>
<option value="mana">Who has the Most Mana</option>
<option value="zen">Who has the Most Zen</option>
elseif($_POST['race_']==str){
include("modules/rankings/Strength.php"); }
elseif($_POST['race_']==agg){
include("modules/rankings/Agility.php"); }
elseif($_POST['race_']==vit){
include("modules/rankings/Vitality.php"); }
elseif($_POST['race_']==enr){
include("modules/rankings/Energy.php"); }
elseif($_POST['race_']==life){
include("modules/rankings/Life.php"); }
elseif($_POST['race_']==mana){
include("modules/rankings/Mana.php"); }
elseif($_POST['race_']==zen){
include("modules/rankings/Zen.php"); }
elseif($_POST['race_']==ban_acc){
include("modules/rankings/ban_acc.php"); }
?>
and rankings/docharacter and smth else.. i think your web don't have default theme ^^ it's edited.. that's the problem. gocho if you dont understant my post earlier.. don't f**k with web or read my post carefully..
About smart.. i really can call myself smarter than you. it's the fact that you have been added shit in forms.. ROFL.. text color is guilty ^^ without any character shown..
Hm... so how to me works ?Quote:
About smart.. i really can call myself smarter than you. it's the fact that you have been added shit in forms.. ROFL.. text color is guilty ^^ without any character shown..
http://images.tribalonline.net/pics/...d43d05cbcc.PNG
http://images.tribalonline.net/pics/...7fc57beb7d.JPG
To me works perfect... :)
But i don`t release this ranking :) release the base of this ranking
Hey i haven't been around for long, but here is what i have made:
http://mu-bulgaria.com/downloads/Summoner.rar
The only problem is that i cant made it to Show only Summoners but they are shown in rankings so if anyone knows how plss share afterwards !!!
http://mu-bulgaria.com/downloads/Ranking.bmp
Everywhere else it shown if you are SU BS or DM !!!
simple but nice
Ok.. i'm pissed off.. here is my RANKING.. it's for Original MuWeb08 [Not For only.. but can be added in other templates..]
Dedicated to Gocho07..
* Show all classes.
* Show Banned Accounts.
* Show stats, and etc ranking
I'm only didn't did
if($muweb['gm']=='no'){ ; if($muweb['gm']=='yes'){
in Zen, Life, Mana, Stats. docharacter including GM works xD
who wants, they has.. who wants, they will do it for themselves.
Ok here it is.. enjoy..
Credits :
Bauru - Text.
=Master= - original script.
Darker - Moded Script
Good Luck ^^ Owned Bauru :SniperHea :D