Kibor Bot Autoclicker » Kibor - Integrated development environment for bots » About Kibor » Version 4.10 Modifying the findmemory functions findmemorymask codhexi. Increase the maximum value.

Страниц (1): [1]
 

1. Kibor - 24 Июля, 2018 - 03:28:43 - перейти к сообщению
Modification of findmemory and findmemorymask.

 Цитата:
int adr [1000000];
findmemory (-1, #poisk [0], 8, #adr [0], 25567892, prc);

The fourth parameter is a pointer to the variable int. The refinement is that you can specify a pointer not only to int but also to double
 Цитата:
double adr [1000000];
findmemory (-1, #poisk [0], 8, #adr [0], 25567892, prc);


 Цитата:
int adr [1000000];
findmemorymask (-1, #poisk [0], 46, #adr [0], 0, #poiskmask [0], 100, prc);

The fourth parameter is a pointer to the variable int. The refinement is that you can specify a pointer not only to int but also to double
 Цитата:
double adr [1000000];
findmemorymask (-1, #poisk [0], 46, #adr [0], 0, #poiskmask [0], 100, prc);


These improvements are due to the fact that the variable int can write a number in the range from -2,147,483,648 to 2,147,483,647. If the address found above this range, there was an error. In order to avoid it, you should use a double array.

================================================== ==

codhexi modified as well. its return value has increased to FF FF FF FF if the result is written to double.

Powered by ExBB FM 1.0 Final