Subscribe to RSS Feed

Author Archive

Oh hai thar everybody! was kinda bored this weekend not much to do with HB at them moment, just some minor stuff anyways,
out boredom i wrote some new stuff on MrFishIt for a change, i have been kinda busy the last months so i haven’t been able to code a lot on MrFishIt :)

What does this mean?
You can customize all and or load new states into the engine and it will run them accordingly eg. StateCast;
using System;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using Medusa.Finite_State_Machine;
using Medusa.Helpers;
using Medusa.Logic.Combat;
using Medusa.Memory_Read_Write_Inject.Lua;
using Medusa.Object_Dumping_Enumeration;

namespace MrFishIt.States
{
public class StateCast : IState
{
#region Implementation of IState

public string StatusText { get { return “Cast”; } }

public int Priority { get { return 4; } }

public bool NeedToRun
{
get
{
return !Medusa.Logic.Fishing.Fishing.IsFishing;
}
}

public void Run()
{
// Adding some lua just for fun, like DoEmote(“Dance”);
Lua.DoString(“DoEmote(\”Dance\”)”);
Thread.Sleep(1000);

var spell = (from b in ObjectManager.Me.KnownSpells.Values
where
b.ID == 7620 ||
b.ID == 7731 ||
b.ID == 7732 ||
b.ID == 18248 ||
b.ID == 33095 ||
b.ID == 51294 ||
b.ID == 62734

select b).FirstOrDefault();

if (spell != null)
{
Logging.Write(“: Casting”);
SpellManager.CastSpellById(spell.ID);

var rand = new Random();
int waitTime = rand.Next(500, 1500);

var watch = new Stopwatch();
watch.Start();

while (ObjectManager.Me.ChanneledCasting == 0 &&
watch.ElapsedMilliseconds <= waitTime)
Thread.Sleep(1);

watch.Reset();
}
}

#endregion
}
}
notice line 32? Some random ass lua i added and now it will start dancing and then wait one second before casting ! how kewl is that ? o_O

And here’s the download :)

MrFishIt 4.2.3

Continue Reading »
46 Comments

Here you go people, because I’m lazy i won’t have MrTrackIt in a separate project any more too much updating and uploading and crap each patchday will start moving all my projects into MrFishIt.

Next up is NMorpher and then MrAntiAfk

Enjoy!

MrFishIt 4.2.2

Continue Reading »
39 Comments
How to disable the mother fucking picture sharing in MSN!

So i got really tired of this new and fancy feature added with the new msn client, i used Google and my brain and i found this fine link :)

http://www.withinwindows.com/2009/04/18/photo-sharing-feature-in-live-messenger-kill-it-dead/

I got happy opened a hex editor but my current build was higher ( 14.0.8089.726 ) than that one so i had to update it !

Before

After

If ure interested, open the new msn client in IDA, go to sub_564C2A + EE

notice the evil conditional jump ? jnz shot loc_xxxxxx We are gonna change that into: jmp short loc_xxxxxx

So open ure favorite hex editor, go to fileoffset 0×164118 or if you want to try it with a debugger first 0x564D18 :)

now change the conditional jump (0×74) into a relative jump (0xEB)

And voila after that it should work perfectly sending images as files, Hurr Durr !

Continue Reading »
9 Comments

Here you go pepole, this one should never go afk ;)

MrFishIt 4.2.1a

Continue Reading »
34 Comments

MrFishIt 4.2.1 Released

September 27, 2009 by Nesox

So after long wait ive finally updated MrFishIt for 3.2.2.10505 :)

Didn’t change alot just updated all the offsets ran it some to make sure it works. I noticed however that it crashes on Lua_DoString sometimes gonna fix that when i get some spare time. Pretty busy at the moment there’s also a problem with UpdateLastHardwareAction. Seems like the GetTimeStamp function always returns 0 dunno why but it’s pretty serious so i have to fix that soon, (one of the main reason that you might get disconnected / logged out)

You can grab it here or from the Mediafire link on mmowned,
MrFishIt 4.2.1

Continue Reading »
12 Comments

Oh hai thar evrybody!

September 27, 2009 by Nesox

Ive finally scrapped the old site and decided to start blogging instead, seems like a fun and creative way of doing things if ure bored or something.

This blog will mainley contain information about programming (C#) and reverse engineering of World of Warcraft.

I hope that anyone who reads or follows this blog will learn alot and or start trying out this stuff by themself. If you have any questions feel free to PM me at http://www.mmowned.com or just leave a post here ;)

Continue Reading »
3 Comments