Quote:
Originally Posted by Visualboy
Blue, Sorry. I downloaded Windows Xp from this thread's 1st message (Your). Now, what to do with that folder? I'm confused.
[Only registered and activated users can see links. Click Here To Register...] (screen)
|
you need to instal vmware, find some tutorials about it...
--------------------------------------------------------------------------------------
mysql version of bot, feel free to test it and report bugs:
(don't use same BOTS folder, make new one)
Bot still need those files from BOTS folder so copy them from downloaded .rar on webpage
[Only registered and activated users can see links. Click Here To Register...]
copy bot and .dll file to your VM's
copy mysql.ini to BOTS folder and edit it
copy updater and .dll file to BOTS folder in you main desktop
make some .txt file with your account list (same formal like always), name it with your order name (client will need it for live tracking)
run updater and point to that .txt file, you will update accounts to database
now just run bots (might take some time before it will start patcher)
.php file for live tracking:
PHP Code:
<style>table {display: table;border-collapse: separate;border-spacing: 2px;border-color: gray;font-size: 10px;color: #000000;color: #404040;border:1px solid black;height:30px}table.reference tr:nth-child(odd) {background-color: #F6F4F0;border:1px solid black;}table.reference th {color: #ffffff;background-color: #555555;border: 1px solid #555555;padding: 3px;vertical-align: top;text-align: center;border:1px solid black;}table.reference td {padding: 3px;vertical-align: top;text-align: center;border:1px solid black;}body, p, h1, h2, h3, h4, table, td, th, ul, ol, textarea, input {font-family: verdana,helvetica,arial,sans-serif;}table.reference, table.tecspec {border-collapse: collapse;border-spacing: 2px;border:1px solid black;}</style><center>
<h2>Check your referrals</h2>
<form name="search" method="post" action="<?=$PHP_SELF?>">
<input type="text" name="find" />
<input type="submit" class="button2 scrolly" name="submit" id="button submit" value="Search" />
</form>
<?php
if (isset($_POST['submit'])) {
$con=mysqli_connect("host", "user", "pass", "db");
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();}
$r2 = $_POST['find'];
if ($r2 == "") {
echo "Enter you order number";
exit;
}
$result = mysqli_query($con,"SELECT * FROM `live_tracking` WHERE `Order`='".$r2."'");
$anymatches=mysqli_num_rows($result); if ($anymatches == 0) {
echo "Sorry, but we can not find your order<br><br>";
exit;
}
?>
<table class="reference" style="width:auto"><tbody><tr><th>No.</th><th>Account</th><th>Name</th><th>Level</th></tr>
<?php
$No = 0 ;
while($row = mysqli_fetch_array($result)) {
++$No;
echo "<tr>";
echo "<td>" . $No . "</td>";
echo "<td>" . $row['Login'] . "</td>";
echo "<td><a href=http://www.elophant.com/league-of-legends/search?query=" . $row['Name'] . "®ion=" . $row['Server'] . " target=_blank>" . $row['Name'] . "</a></td>";
echo "<td>" . $row['Level'] . "</td>";
echo "</tr>";
$Level = $Level + $row['Level'];
}
$Level_max = $No * 10;
$comp = ($Level / $Level_max) * 100;
echo "</table>";
echo "<tr><br>Referrals compleated : " .$comp. "%</tr>";
}
?>