Interesting suggestion for sure, but i want it to look as legit as possible, i dont mind waiting a bit until i get my cella, i just need a program/a bot that does it for me, i dont really want to sit there for hours til my stacks of gillis got used up
Interesting suggestion for sure, but i want it to look as legit as possible, i dont mind waiting a bit until i get my cella, i just need a program/a bot that does it for me, i dont really want to sit there for hours til my stacks of gillis got used up
BladeTiger12's packetlogger. With it can do a loop of packets (you can do other things and the packetlogger craft the item in background)
Just use the macro function of any "gaming" device, boud the key you put the cella in game and activate the macro, and look the magic !
I did it for my X * 999 cellas slots, works well (but not a background thing)
hey,
i can just give you the advice to google how tools like keypressers work.
I assume you use windows then you can use WINAPI (I think you know what that is).
Next you need to know how to write some code in C (works with almost any other language to) but C is easy to undestand.
Since this is my first post I dont know exactly how to post code maybe this works:
Quote:
#include <Windows.h>
// Virtual-Key Codes = key (can be found via google)
void press_key(HWND hwnd, int key)
{
::PostMessage(hwnd, WM_KEYDOWN, key, 0);
Sleep(50);
::PostMessage(hwnd, WM_KEYUP, key, 0);
}
int main()
{
// this is used to find the window and get its handle(HWND)
// use the WINDOW TITLE not the process name!!!
HWND hwnd = FindWindow(0, L"NosByte"); // <- this is the WINDOW TITLE
// to toggle the loop off
bool run = 1;
// the loop to keep the code alive
while (run)
{
// if you press F_12 this happens
if (GetKeyState(VK_F12) & 0x8000)
{
run = 0; // stop the loop and kill the programm
}
press_key(hwnd, 0x35); // 0x35 -> key 5
Sleep(200); // this is used to decrease CPU usage
}
}
Looking simple for simple ESP cheat 04/06/2021 - Rainbow Six Siege Trading - 7 Replies Dear ElitePVPers,
Writing there because really got tired playing this game since some last months.
Decided to make it easier using some software.
Im looking for a legit rainbow six siege cheat provider,
Im not interested in any months subscriptions (because got scammed already twice, regarding this stuff.)
simple bot using Yuumi ? 06/08/2019 - League of Legends - 2 Replies Hey.
Does anyone know/create a yuumi leveling bot ? that just queues up, and attaches to someone in bot games? (re-attaching after they recall/die ofc)
Idk much about making bots but i could imagine it would be easy to make? possibly harder to detect and get banned (idk how riot detects bots though)