Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

New php web option for game masters!!

Newbie Spellweaver
Joined
Jul 19, 2005
Messages
32
Reaction score
1
if u want to search for accounts that have been used by some ip thats the files for that just put them in the website folder and link your web to them.
the method:
you're typing the ip then your acc (with gm) then gm's name then the password.
after that all u need to do is press submit and u will have the info you are looking for.
 

Attachments

You must be registered for see attachments list
---
Loyal Member
Joined
Aug 18, 2004
Messages
641
Reaction score
3
So basically it just IP search ? Mutoolz already included that stuff..
 
Newbie Spellweaver
Joined
Jul 19, 2005
Messages
32
Reaction score
1
yeah but this is not at every website...some Gm's doesn't know how to make it :)
 
Newbie Spellweaver
Joined
Jun 5, 2005
Messages
8
Reaction score
0
Thx it is good.
but I have a question.
How Gms can know the Hacker Ip?
sry for my bad english...
bye
 
Newbie Spellweaver
Joined
Apr 23, 2005
Messages
23
Reaction score
0
XD-DRAGON chaos said:
Thx it is good.
but I have a question.
How Gms can know the Hacker Ip?
sry for my bad english...
bye

U can see on the mu editor...

sry for my english...
 
Newbie Spellweaver
Joined
Jul 19, 2005
Messages
32
Reaction score
1
if u have a good firewall ~(sygate)~ it tells u the ip of the Ducking port scanner....because this firewall get the port scanners....even nobady can blast with this firewall u can know who tries to hack...
(sygate)!!
 
Newbie Spellweaver
Joined
Jul 19, 2005
Messages
32
Reaction score
1
Enjoy man!:)
_____________
go
!!!!:)
 
Custom Title Activated
Loyal Member
Joined
Dec 31, 2004
Messages
4,091
Reaction score
25
Nice one, though i dont really like the layout :s
 
Newbie Spellweaver
Joined
Sep 23, 2006
Messages
14
Reaction score
0
Re: [Release] New php web option for game masters!!

Erm... :) Nice Dude!
 
Initiate Mage
Joined
Jul 24, 2005
Messages
1
Reaction score
0
Re: [Release] New php web option for game masters!!

sorry wrong post.....T_T
 
Junior Spellweaver
Joined
Jun 27, 2006
Messages
108
Reaction score
0
Re: [Release] New php web option for game masters!!

there is better way... You enter character name that have broken rules and script result is others character with which was played on same ip.. how?

<?php

$alogin = "mssql_login";
$apass = "mssql_psw";
$host = "127.0.0.1";
$db="MuOnline"; //have another?:)

//Lines above you can add to config.php and then add there:
//require 'config.php';

if (!empty($_GET['char'])){
$name = $_GET['char'];
$msconnect=mssql_connect("$host","$alogin","$apass");
$msdb=mssql_select_db("$db",$msconnect);

$result = mssql_query("select accountid from character where name LIKE '%$name%'");
$row = mssql_fetch_row($result);
$result = mssql_query("select IP from memb_stat where memb___id = '$row[0]'");
$roww = mssql_fetch_row($result);

echo '
<table height=30 cellspacing=0 cellpadding=8 width=250 border=1 bgcolor="#000000" bordercolor="#000000" align="center">
<tbody>';
echo "
<tr>
<td valign=top align=center colspan=5><strong><font color=Blue>Searched Character: $name</td>
</tr>
<tr>
<td valign=top align=center colspan=5><strong><font color=red>Account ID: $row[0]</td>
</tr>
<tr>
<td valign=top align=center colspan=5><strong><font color=red>IP: $roww[0]</td>
</tr>
<tr>
<td valign=top align=center colspan=5><strong><font color=yellow>Accounts with same ip:</td>
</tr>
<td valign=top align=center><strong><font color=yellow>Account ID</td>
<td valign=top align=center><strong><font color=red>Characters</td>
<td valign=top align=center><strong><font color=yellow>Status</td>
<td valign=top align=center><strong><font color=red>Has Blocked<br>Characters?</td>
<td valign=top align=center><strong><font color=blue>Is Account<br>Blocked?</td>
</tr>";

$result = mssql_query("select memb___id, ConnectStat from memb_stat where ip = '$roww[0]'");

for($i=0;$i < mssql_num_rows($result);++$i)
{
$row = mssql_fetch_row($result);

$result2 = mssql_query("Select bloc_code from memb_info where memb___id = '$row[0]'");
$row2 = mssql_fetch_row($result2);

$result3 = mssql_query("Select GameID1, GameID2, GameID3, GameID4, GameID5 from AccountCharacter where Id = '$row[0]'");
$row3 = mssql_fetch_row($result3);

$result4 = mssql_query("Select accountid from character where accountid = '$row[0]' and CtlCode = '1'");
$row4 = mssql_fetch_row($result4);

$blocked = '<font color=green>No</font>';
$chars= '<font color=green>No</font>';
$status = '<font color=red>OffLine</font>';
if ($row2[0] == 1){
$blocked = '<font color=red>Yes</font>';
}
if ($row4[0] == $row[0]){
$chars = '<font color=red>Yes</font>';
}
if ($row[1] == 1){
$status = '<font color=green>OnLine</font>';
}

echo "<tr>
<td valign=top align=center><strong><font color=yellow>$row[0]</td>
<td valign=top align=center><strong><font color=blue>$row3[0] $row3[1] $row3[2] $row3[3] $row3[4]</td>
<td valign=top align=center><strong><font color=red>$status</td>
<td valign=top align=center><strong><font color=yellow>$chars</td>
<td valign=top align=center><strong><font color=red>$blocked</td>

</tr>";
}

} else {
echo '<strong><font color=red>Link should look like: http://127.0.0.1/script_file.php?char=MyNick</strong>';
}
?>

that's easy script.. made it about in 10 minutes.. it displays first character that is like %word% and gives you account id, ip of that character, other accounts that has been used with that ip, their characters, does they have blocked characters, are they blocked, and their connection status.. i hope it would be usefull for some1..

btw, lafter you add this script to php file link should look like:


well give a rank.. -_-
 
Back
Top