luajit + luaxx.dllкак инжектить в процесс gta_sa.exe через exe file код на lua или же файл lua
ток хз что тебе даст голое луа в гташке, разве что подключить какие-то либы на работу с памятью и сделать свое крутое апи как у мунлоадера..
luajit + luaxx.dllкак инжектить в процесс gta_sa.exe через exe file код на lua или же файл lua
Если ты открываешь чат с помощью имитации нажатия клавиши, в чем проблема с помощью имитаций напечатать текст?1) Вопрос:
Приветствую.
Возник вопрос касательно C++, очень желаю получить ответ с прикрепленными строчками кода и требуемыми инклудами. Смотрите.
Мне нужно сделать так, чтобы в игровой чат вместо меня писала программа. Я уже научился открывать и закрывать чат (имитация нажатия клавиши), так же у меня есть строка (string) с текстом. Надо, чтобы оно типо вводило этот текст, не смотря на текущий язык на моей клавиатуре. ЭТО НЕОБЯЗАТЕЛЬНО ДЛЯ САМПА, НЕ НАДО МНЕ КИДАТЬ ССЫЛКУ НА САМПФУНКС С УЖЕ ГОТОВОЙ ВСТРОЕННОЙ ФУНКЦИЕЙ ОТПРАВКИ СООБЩЕНИЯ.
Hi there, such a cool question. Basically, have to distinguish what does "best & safest" mean in that contextWhat is the best & safest way to clean std::string from memory ?
std::string example;
1. example.clear();
2. example.resize(0);
3. std::fill(example.begin(), example.end(), 0);
{
std::string my_string { "String!" };
// ...
// std::basic_string::~basic_string will be called
}
#define __STDC_WANT_LIB_EXT1__ 1
#include <string.h>
// available to use function
// errno_t memset_s(void * restrict s, rsize_t smax, int c, rsize_t n)
void zerofill(void *data, size_t size) {
for (auto p = reinterpret_cast<volatile char*>(data); size; size--) {
*(p + size) = 0;
}
}
#include <iostream>
#include <string>
#include <memory>
#include <functional>
#include <cstddef>
#include <utility>
#include <cstdint>
char* get_string_data(std::string& str) {
if constexpr (!std::is_const<decltype(std::declval<std::string>().data())>())
return str.data();
else
return &str[0];
}
namespace secure {
static void safe_clear(void *data, size_t size) {
for (auto p = reinterpret_cast<volatile char*>(data); size; size--) {
*(p + size) = 0;
}
}
static void string_clear(std::string* str) {
safe_clear(reinterpret_cast<void *>(get_string_data(*str)), str->capacity());
str->~basic_string();
::operator delete(str);
}
}
struct dump {
std::unique_ptr<uint8_t[]> buf;
char* block;
size_t block_size;
dump(std::string& str) {
block = get_string_data(str);
block_size = str.capacity();
buf = std::make_unique<uint8_t[]>(block_size);
std::copy(block, block + block_size, buf.get());
}
static void print_block(const char* dd, size_t size) {
for (const char* p = dd - size; p != dd; p++) {
const auto c = *(p + size);
std::cout << static_cast<int>(static_cast<unsigned char>(c)) << '(' << c << ')' << ' ';
}
std::cout << std::endl;
}
};
template <char... c>
using str_seq = std::integer_sequence<char, c...>;
template <typename T, T... c>
constexpr str_seq<c...> operator""_s() {
return { };
}
template <typename>
struct dump_var;
template <char... name_c>
struct dump_var<str_seq<name_c...>> {
static constexpr char name[sizeof...(name_c) + 1] = { name_c..., '\0' };
dump_var(std::function<dump (const char*)> f) {
auto dumper = f(name);
if (std::all_of(dumper.block, dumper.block+dumper.block_size, [](auto v){ return v == 0; }))
std::cout << "Test {" << name << "} passed!" << std::endl;
else {
std::cout << "Test {" << name << "} NOT passed!" << std::endl;
std::cout << "Memory block before" << std::endl;
dump::print_block(reinterpret_cast<const char*>(dumper.buf.get()), dumper.block_size);
std::cout << "Memory block after" << std::endl;
dump::print_block(dumper.block, dumper.block_size);
}
}
};
auto main() -> int {
dump_var<decltype("Normal std::string usage blah blah blah"_s)>(
[](auto str) {
std::string usual_way(str);
usual_way.clear(); // <- going to be optimized
return dump(usual_way);
});
dump_var<decltype("Custom deleter blah blah blah"_s)>(
[](auto str) {
std::unique_ptr<std::string, std::function<decltype(secure::string_clear)>> custom_deleter (
new std::string(str),
secure::string_clear
);
return dump(*custom_deleter);
});
}
Test {Normal std::string usage blah blah blah} NOT passed!
Memory block before
0() 111(o) 114(r) 109(m) 97(a) 108(l) 32( ) 115(s) 116(t) 100(d) 58(:) 58(:) 115(s) 116(t) 114(r) 105(i) 110(n) 103(g) 32( ) 117(u) 115(s) 97(a) 103(g) 101(e) 32( ) 98(b) 108(l) 97(a) 104(h) 32( ) 98(b) 108(l) 97(a) 104(h) 32( ) 98(b) 108(l) 97(a) 104(h)
Memory block after
152(�) 43(+) 220(�) 249(�) 211(�) 127() 0() 0() 152(�) 43(+) 220(�) 249(�) 211(�) 127() 0() 0() 110(n) 103(g) 32( ) 117(u) 115(s) 97(a) 103(g) 101(e) 32( ) 98(b) 108(l) 97(a) 104(h) 32( ) 98(b) 108(l) 48(0) 0() 0() 0() 0() 0() 0()
Test {Custom deleter blah blah blah} passed!
UpfQuaternion Hello i need help i want to know how to get my vehicle(vehicledata) on raknet to turn to the xyz i set to it, and also the code i send speed to the xyz i set to it and also the speed setting
And also forging my direction(aimdata)
Как узнать ID аттач процесса ?
DWORD GetProcId(const char* procname)
{
PROCESSENTRY32 pe;
HANDLE hSnap;
pe.dwSize = sizeof(PROCESSENTRY32);
hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL);
if (Process32First(hSnap, &pe)) {
do {
if (strcmp(pe.szExeFile, procname) == 0)
break;
} while (Process32Next(hSnap, &pe));
}
return pe.th32ProcessID;
}
/* By CleanLegend */
C++:DWORD GetProcId(const char* procname) { PROCESSENTRY32 pe; HANDLE hSnap; pe.dwSize = sizeof(PROCESSENTRY32); hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL); if (Process32First(hSnap, &pe)) { do { if (strcmp(pe.szExeFile, procname) == 0) break; } while (Process32Next(hSnap, &pe)); } return pe.th32ProcessID; } /* By CleanLegend */
преобразуй в const char либо смени кодировку на многобайтовую
Смена кодировки на многобайтовую ничего не далопреобразуй в const char либо смени кодировку на многобайтовую
Тебе написано что надо делать в ошибках. Берешь и преобразовываешь в нужный тебе формат данныхСмена кодировки на многобайтовую ничего не дало
Process32FirstA, Process32NextAСмена кодировки на многобайтовую ничего не дало