wtf, why do i care that u wanna use mutoolz... mod pls delete that post!
Printable View
THX FANTASTIC WEB!!
But i have a problem, my databases are Not-MD5... and i cant create accounts. I've downloaded the Non-Md5 Version. But the problem still. HELP! :technolog
3...
MuOnline , Ranking and Mu2003_event_server
This is the error:
Warning: mssql_query(): message: Infracci
works with md5 and without gj ;)
9/10
[quote=DOGWARMAN;2517703]3...
MuOnline , Ranking and Mu2003_event_server
This is the error:
Warning: mssql_query(): message: Infracci
I solved that problem!!!
You need to desactivate the principal key from memb_guid in your Memb_info table of your MuOnline Database.
BYE!!
okey dude ... IT'S COOL ... but how do i add music ? .. it doesn't work ... try explaining
can someone giwe me includes of nightmare event and i can't log to account
this its when i login
http://img206.imageshack.us/img206/1706/strona1dp5.jpg
and i need this
http://img213.imageshack.us/img213/4417/strona2kg5.jpg
the login option is not supported in this version of dwt web, as for the nightmare event, there is no english guide yet :P
RisingKing
when you finish [DWT] Site ver 3 ???
en will be next relase and it will by can log in web ??
hi someone can fix this login hey RisingKing2010 u wroking at this web
P.S sory if this its duble post
Please Add To Ranking Dark Lord because Ranking Normally not work
how to add something like this
http://img525.imageshack.us/img525/3226/strona3jy1.jpg
P.S RisingKing2010 u working at this web ??
Thanks For Post!!!
very good 9/10
Nice 9/10
hi i have problem i fix register but this web need fix add stats (i'm using nonmd5) when i try add 100 ptk(or more) and i have 16000 ptk then when i click ok the stat or reset to 100 (from 16000 to 100 not 16100)
sory for my english
Good looking good but is only MD5 :raincloud 9/10
How can I put the FckEditor in this web?
I'm fixing the add stat option (But in spanish)
axxxxx not bad but i give you 4/10
DOGWARMAN when u fix this stats can u send me i wll translate for english :)
Hi! This is the Add stat option fixed by me and translated to English
(i'm chilean)
Bye! :native:Code:<? if (isset($_POST['new_name']))
{
$name = stripslashes($_POST['new_name']);
$idlogin = stripslashes($_POST['idlogin']);
$oldpwd = stripslashes($_POST['oldpwd']);
$strength = stripslashes($_POST['strength']);
$vitality = stripslashes($_POST['vitality']);
$dexterity = stripslashes($_POST['dexterity']);
$mana = stripslashes($_POST['mana']);
$cmd = stripslashes($_POST['cmd']);
require 'config/config.php';
include_once('includes/sql_check.php');
check_inject();
$msconnect=mssql_connect("$dbhost","$dbuser","$dbpasswd");
$msdb=mssql_select_db($db,$msconnect);
require_once "includes/sql_inject.php";
$bDestroy_session = TRUE;
$url_redirect = 'index.php';
$sqlinject = new sql_inject('./log_file_sql.log',$bDestroy_session,$url_redirect) ;
if ((eregi("[^a-zA-Z0-9_-]", $name)) || (eregi("[^a-zA-Z0-9_-]", $idlogin)) || (eregi("[^a-zA-Z0-9_-]", $oldpwd)) || (eregi("[^a-zA-Z0-9_-]", $strength)) || (eregi("[^a-zA-Z0-9_-]", $vitality)) || (eregi("[^a-zA-Z0-9_-]", $dexterity)) || (eregi("[^a-zA-Z0-9_-]", $mana)) || (eregi("[^a-zA-Z0-9_-]", $cmd)))
{
echo("SQL Injection Detected - Remember, only use numbers and letters!");
exit();
}
$sql_username_check = mssql_query("SELECT memb___id FROM MEMB_INFO WHERE memb___id='$idlogin'");
$username_check = mssql_num_rows($sql_username_check);
$sql_name_check = mssql_query("SELECT Name FROM Character WHERE Name='$name' and AccountID = '$idlogin'");
$name_check = mssql_num_rows($sql_name_check);
$sql_pw_check = mssql_query("SELECT memb__pwd FROM MEMB_INFO WHERE memb__pwd='$oldpwd' and memb___id='$idlogin'");
$pw_check = mssql_num_rows($sql_pw_check);
$sql_online_check = mssql_query("SELECT ConnectStat FROM MEMB_STAT WHERE memb___id='$idlogin'");
$row2 = mssql_fetch_row($sql_online_check);
$result = mssql_query("Select Strength,Dexterity,Vitality,Energy,Leadership,Class,Money,LevelUpPoint From Character where Name='$name'");
$row = mssql_fetch_row($result);
$str=$row[0]+$strength;
$dex=$row[1]+$dexterity;
$vit=$row[2]+$vitality;
$man=$row[3]+$mana;
$dl=$row[4]+$cmd;
$moeny=$row[6]-($addzen);
$points=$strength + $dexterity + $vitality + $mana + $cmd;
$pt=$row[7] - ($points);
$pt2=$row[7];
$class=$row[5];
if (empty($name) || empty($idlogin) || empty($oldpwd)){
echo "Error: Some fields were left blank. Please go back and try again.<br>";}
elseif (empty($dl) && $class!='64'){
echo "$general";}
elseif ($pt<=0){
echo "Error: You do not have points, you only have " . $pt2 . " level up points. Please distribute them evenly.";}
elseif ($username_check <= 0){
echo "Error: Your idlogin does not exist in the " . $servername . " databases. Please go back and try again.<br>";}
elseif ($name_check <= 0){
echo "Error: Your character does not exist in your account or in $servername database. Please go back and try again.<br>"; }
elseif ($pw_check <= 0){
echo "Error: The password you entered is incorrect.<br>"; }
elseif ($row2[0] != 0){
echo "Error: Please logoff before Add Stats.<br>"; }
elseif ($cmd>'0' && $class!='64'){
echo "Error: Remember that only Dark Lords can add points to Command.<br>";}
elseif ($resetmoeny < 0){
echo "Error: You don't have enough money in inventory to addstats, you need $addzen zen.<br>"; }
else {
$general =
"
UPDATE dbo.Character SET money = '$moeny'
WHERE Name = '$name'
UPDATE dbo.Character SET LevelUpPoint = '$pt'
WHERE Name = '$name'
UPDATE dbo.Character SET Strength = '$str'
WHERE Name = '$name'
UPDATE dbo.Character SET Vitality = '$vit'
WHERE Name = '$name'
UPDATE dbo.Character SET Dexterity = '$dex'
WHERE Name = '$name'
UPDATE dbo.Character SET Energy = '$man'
WHERE Name = '$name'
UPDATE dbo.Character SET Leadership = '$dl'
WHERE Name = '$name'
";
$sqlinject->test($general);
$msgeneral = mssql_query($general);
echo "<b><font color='red'>$name</font> is becoming stronger, because he has new Powers with his new Stats </b>.";
}
}
else
{
echo '<form name="form2" method="post" action="">
<table>
<tr>
<td>Account Name: </td>
<td><input name="idlogin" type="text" id="idlogin" maxlength="10"></td>
</tr>
</table>
<table>
<tr>
<td>Password:</td>
<td><input name="oldpwd" type="password" id="oldpwd" maxlength="10"></td>
</tr>
</table>
<table>
<tr>
<td>Character:</td>
<td><input name="new_name" type="text" id="name" maxlength="10"></td>
</tr>
</table>
<table>
<tr>
<td>Strength: </td>
<td><input name="strength" type="text" id="strength"></td>
</tr>
<tr>
<td>Vitality:</td>
<td><input name="vitality" type="text" id="vitality"></td>
</tr>
<tr>
<td>Agility:</td>
<td><input name="dexterity" type="text" id="dexterity"></td>
</tr>
<tr>
<td>Energy:</td>
<td><input name="mana" type="text" id="mana"></td>
</tr>
<tr>
<td>Command:</td>
<td><input name="cmd" type="text " id="cmd"></td>
</tr>
</table>
<b> Remember, only the Dark Lords can add points to Command </b>
<p>
<input type="submit" name="Submit" value="Add stats">
<input type="reset" name="Submit2" value="Clean">
</p>
</form>';
} ?>