Earlier today, RSBuddy released their legal game client for runescape
It does not yet support RS 07
http://rsbuddy.com/
Printable View
Earlier today, RSBuddy released their legal game client for runescape
It does not yet support RS 07
http://rsbuddy.com/
Interesting. It was supposed to be released back in November! It's taken them ages!
Ps. It's run by Jacmob so be careful of using it on a computer with botting software.
Be safe and stay away from it. Jacmob sold out once, the second time is easier.
Sold out? He got offered a great job. Lets see, make bots for a game for little to no profit, or start a career in the gaming industry? Hmmmmmmm. Jacmob is very good at programming, and as such he got offered a good job using those skills. I don't know of anyone that would turn down a job at a multi-million dollar company so they can dink around on Runescape.
So...What exactly does the RsBuddy client do? I'm too lazy to click on the link :p
@Noob King:
He actually did make quite a large amount of profit off the scripts hosted in his bot, because from what I heard he was entitle to X% of ever script sold, and because iDungeon sold hundreds of thousands he made quite a bit, even just from that script. He made much more than you would probably imagine.
About the client; as Benny said I'd steer clear of this program for the obvious reasons. Jacmob already has files downloaded through Runescape on your computer. For information on those and what they do specifically you should read up on Mopar's forums.
Flight - can you post link to that forum by chance or PM it to me?
Thx!!
@Flight:
I know a fair amount about the financial part of RSBuddy. I know Jacmob quite well also. I was the one who first promoted Jacmob on Powerbot after recognizing his skills. I was there for many of his projects before RSBuddy as well. As for the financial part of RSBuddy, it did really well no doubt. Also the site staff was paid, unlike most sites. I'm not saying Jacmob didn't profit at all, but it wasn't ever going to be something to live off of long term. As for the selling out thing, What I'm saying is its not like botting is some secret organization that jagex has no clue about. Jacmob was hired for his skills, not because he has some secrets or something on the botting community.
I think they would have hired multiple other people had they showed up for Jagfest (if that's spelled right), as there were multiple reflection clients up-and-running shortly after the nuke, not just RSBuddy.
Wasn't Jacmob amed for the mass Free-trade hacking from the lowerbot / RSBuddy clients? Also, where is Arbi nowadays?
I didn't and I don't after he sold out. That's why I asked you.
At that MouseHook.. Can you not just write your own wrapper for JacLib and remove the flag altogether? Should work? Not too sure, but it can worth a shot if it stops speculation.. I wouldn't worry though but meh I like posting code..
C++ Code:typedef HHOOK (__stdcall *ptr_SetWindowsHook) (int, HOOKPROC, HINSTANCE, DWORD);
typedef LRESULT (__stdcall *ptr_MouseHookProc) (int, WPARAM, LPARAM);
ptr_SetWindowsHook optr_SetWindowsHook;
ptr_MouseHookProc optr_MouseHookProc;
HHOOK MouseHook = {0};
ptr_MouseHookProc JagexProc = nullptr;
LRESULT __stdcall Detour_MouseHookProc(int Code, WPARAM wParam, LPARAM lParam)
{
if (Code == HC_ACTION)
{
switch(wParam) //Any type of mouse movement or clicking or anything at all.. Can probably modify the timings and the mouse points too.
{
case WM_RBUTTONDOWN:
case WM_RBUTTONDBLCLK:
case WM_RBUTTONUP:
case WM_LBUTTONDOWN:
case WM_LBUTTONDBLCLK:
case WM_LBUTTONUP:
case WM_MOUSEWHEEL:
case WM_MOUSEMOVE:
case WM_MOUSEHOVER:
{
MSLLHOOKSTRUCT* Info = reinterpret_cast<MSLLHOOKSTRUCT*>(lParam);
if ((Info->flags & LLMHF_INJECTED) == LLMHF_INJECTED) //Flag is set to 0x000001 if not hardware input..
{
Info->flags = 0; //Modify flags.. Legit hardware input faked?
}
lParam = reinterpret_cast<LPARAM>(Info); Cast it back and pass it to the original hook..
}
break;
default:
return JagexProc(Code, wParam, lParam); //Give the modified shit to jagex's MouseProc.
}
}
return JagexProc(Code, wParam, lParam);
}
extern "C" HHOOK __stdcall Detour_SetWindowsHook(int HookID, HOOKPROC lpfn, HINSTANCE hMod, DWORD dwThreadId)
{
JagexProc = lpfn; //Store pointer to their mousehook callback.. Our callback will modify flags and call theirs using modified flags..
return (MouseHook = (*optr_SetWindowsHook) (HookID, Detour_MouseHookProc, hMod, dwThreadId)); //Pass our callback instead..
}
Meh.. never tested it.. oh well back to silently stalking the forums..