Subscribe to RSS Feed

Author Archive

Väntar man på nått gått väntar man aldrig för länge,

here you go pepole the new MrFishIt.

Got some bugs fixed too, eg; the bot won’t try to relure if ure out of lures so it won’t go afk also fixed the chatreader and some other stuff

MrFishIt 4.2.9

Continue Reading »
80 Comments 77 Comments

Here you go pepole, no major changes just updated it  :)

Download: MrFishIt 4.2.8

Continue Reading »
24 Comments

Updated for 3.3.2.11403 and changed the antiakf, shouldn’t freeze you or do anything other stupid

Enjoy!

MrFishIt 4.2.6a

Continue Reading »
78 Comments

MrFishIt 4.2.5 – Plugins

January 29, 2010 by Nesox

So yesterday i did a new release, i didn’t have much to do so i removed the dynamic compilation of states. IMO it just makes thing messier and harder to debug, here i will show you what is new and how to write a plugin for MrFishIt to make it do what you want !

So here’s the example. Im gonna use. It’s a simple one that accepts the WG port, it only works on english clients tho but i posted a link at mmowned for one that should work on all :)
using System;
using Medusa.Helpers;
using Medusa.Memory_Read_Write_Inject.Lua;
using Medusa.Object_Dumping_Enumeration;
using Medusa.Plugin;

namespace WG_Botter
{
public class WGBotter : Extension
{
#region Overrides of Extension

private byte FrameLimiter { get; set; }

public override void Pulse()
{
if (++FrameLimiter % 10 == 0)
{
if (ObjectManager.Me != null && ObjectManager.Me.ZoneId == 4197)
{
Lua.DoString(“StaticPopup1Button1:Click() StaticPopup2Button1:Click() LeaveParty()”);
}

FrameLimiter = 0;
}
}

public override string Name
{
get { return “Wg Botter”; }
}

public override string Author
{
get { return “Nesox”; }
}

public override Version Version
{
get { return new Version(1, 0, 0); }
}

#endregion
}
}
pretty simple right? All you need to do is to reference Medusa and Medusa.Plugin in a new project and off you go i also included a small documentation for Medusa and you of course use the object browser here’s the WG Botter plugin template if you are unsure how to get started
Template/WG Botter

And let’s not forget the actual download!

MrFishIt 4.2.5


Continue Reading »
44 Comments

Silly blizzard keeps me at work lol, but anyways here’s the updated version :)

MrFishIt 4.2.4a

Continue Reading »
50 Comments

Here you go pepole, the wait is over ! :D

No major changes, re-luring should work alot better and for all poles.

MrFishIt 4.2.4

Continue Reading »
16 Comments

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 »
34 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 »
25 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 »
7 Comments

Recent Comments