What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

iMonitor

finality

New Member
Joined
Oct 21, 2010
Messages
85
Reaction score
1
I quit this project, cause of less time and not much interest in WoW anymore...

I've uploaded the current site, maybe someone need it.

Maybe I make in the future a new plugin maybe not :D

The current website will be online, until 01.02.2010.
 

Attachments

Last edited:
Use IP as primary key instead, safer than a random number imo, or just character name?
 
Ok IP is a good idear...but the Char name can be twice. Different Realms^^
I think I will use IP, thanks for it :) :D
 
Ok IP is a good idear...but the Char name can be twice. Different Realms^^
I think I will use IP, thanks for it :) :D
But you can also run several bots from the same IP. I don't know if HB know what realm the char is on, if it does, a combination of name and realm would be the best. I think... Haven't slept for days, lol.
 
I think... Haven't slept for days, lol.
Yeah thats my feelings, too...^^
I will have a look into the API with the Object inspector... Maybe i find something Unique :P
But I think it would be the best if it's not the Accountname or the realm... Some data should never been captured :D
 
Something went wrong with the host... I will fix it.. Sorry -.- Nice startup :(
 
Last edited:
Found a problem, It routed me to someone else's ID so I had to go in Imonitor.cs and edit Line 64-66
I
Code:
 Commented out those
//Random number = new Random(1337);
                
                //ident = number.Next(1, 9999999);
and then
ident = XXXXX;
Added my own number... Then I had space on the site you have.... For some reason it links everyone to ID 2088883
 
yeah i know i fixed that:D
But thx :)
I just fixed one thing in the index.php. So now the Search works...
 
Yeah I know... I must change something...but i can't find the answer...
if(is_numeric($_GET['id']))
{
$query = mysql_query("SELECT * FROM data WHERE charID = '".mysql_real_escape_string($_GET['id'])."'");
}else{
// Get charID by Name and the newest entry
$id = mysql_fetch_array(mysql_query("SELECT charID FROM data WHERE name = '".mysql_real_escape_string($_GET['id'])."' AND zeit = (SELECT MAX(zeit) FROM data)"));
$query = mysql_query("SELECT * FROM data WHERE charID = '".$id['charID']."'");
}

There's a fault I can't find...

Because if u search by ID u always get an result. But if u search by Name it's lucky to receive one...
 
Well I guess It's a good thing I set my own id huh :P I can just use that
 
I think i fixed this...
Noob mistake -.-
if(is_numeric($_GET['id']))
{
$query = mysql_query("SELECT * FROM data WHERE charID = '".mysql_real_escape_string($_GET['id'])."'");
}else{
// Get charID by Name and the newest entry
$id = mysql_fetch_array(mysql_query("SELECT charID FROM data WHERE name = '".mysql_real_escape_string($_GET['id'])."' AND zeit = (SELECT MAX(zeit) FROM data WHERE name = '".mysql_real_escape_string($_GET['id'])."')"));
$query = mysql_query("SELECT * FROM data WHERE charID = '".$id['charID']."'");
}
I compared wrong Data rows.....

So now it should works well... :D
 
Last edited:
If something went wrong, or u're data would'nt been captured report to me pls. :)
 
Looks good, is it me or have there been a ton of these popping up over the last month?
 
Just gave it a little test and it worked perfectly! Hope it carries on and thank you very much!
 
you might want to have a look a some mysql libs/class's for php ;)
 
What's the website to check? I had it but now it doesn't work.. Is it down or am I missing something
 
What's the website to check? I had it but now it doesn't work.. Is it down or am I missing something

Hm...I think the Freehoster is not glad about my Database.
Now I'm at work...I think I'm fix this this evening, and will move the Site to my own Webspace not a freehost.
 
Back
Top