Looking for free, simple item using bot :)

06/27/2021 12:43 Chriser52#1
Hey there!

Im on the search for a quick and easy bot that continuously uses items to get that sweet sweet cella

Most bots ive found simply dont work anymore or are barred behind a fee
Obviously common macros cant do their job aswell, so im looking for your help :D

Anything obvious that i missed?
06/27/2021 14:19 ZroIsHere#2
Quote:
Originally Posted by Chriser52 View Post
Hey there!



Im on the search for a quick and easy bot that continuously uses items to get that sweet sweet cella



Most bots ive found simply dont work anymore or are barred behind a fee

Obviously common macros cant do their job aswell, so im looking for your help :D



Anything obvious that i missed?
You can use the item without cd with the packet. Use a packetlogger and can use it fast, dont need a bot for it

Enviado desde mi M2003J15SC mediante Tapatalk
06/27/2021 14:37 Chriser52#3
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
06/27/2021 15:04 ZroIsHere#4
Quote:
Originally Posted by Chriser52 View Post
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)

Enviado desde mi M2003J15SC mediante Tapatalk
06/27/2021 15:12 Digitalis87#5
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)
06/27/2021 17:38 Chriser52#6
Hm, alright i guess ill look into that packetlogger

About macro function on any "gaming" device: i have a laptop which does not look like it has a configurable keyboard or anything like that
06/27/2021 19:45 ZroIsHere#7
Quote:
Originally Posted by Chriser52 View Post
Hm, alright i guess ill look into that packetlogger

About macro function on any "gaming" device: i have a laptop which does not look like it has a configurable keyboard or anything like that
But not work in NosWings, Eastmile and NosByte because they have an actual .dll hooking the game :/
06/28/2021 01:11 JONNST4R#8
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
}
}