Начинающий
Начинающий
- Статус
- Оффлайн
- Регистрация
- 13 Ноя 2022
- Сообщения
- 132
- Реакции
- 3
как сделать светлые ночи в расте т.к этот код не работает
помогите пж
Код:
auto todsky = memory::read< uintptr_t >(game_assembly + 0xd310700);
printf("1: 0x%llX\n", todsky);
auto todskystaticfield = memory::read< uintptr_t >(todsky + 0xb8);
printf("2: 0x%llX\n", todskystaticfield);
auto todskystaticfieldd = memory::read< uintptr_t >(todskystaticfield + 0x60);
printf("3: 0x%llX\n", todskystaticfieldd);
auto instancevalues = memory::read< uintptr_t >(todskystaticfieldd + 0x10);
printf("4: 0x%llX\n", instancevalues);
auto instance = memory::read< uintptr_t >(instancevalues + 0x0);
printf("e5: 0x%llX\n", instance);
auto NightParameter = memory::read< uint64_t >(instance + 0x60);
printf("6: 0x%llX\n", NightParameter);
auto DayParameter = memory::read< uint64_t >(instance + 0x58);
printf("7: 0x%llX\n", DayParameter);
memory::write< uint64_t >(NightParameter + NightParameters::ambientMultiplier, ambicientInt);