 |
|

06.09.2020, 17:53
|
|
Флудер
Регистрация: 06.07.2016
Сообщений: 2,855
С нами:
5185431
Репутация:
183
|
|
С твоими адресами крашит, вот нашёл рабочие (не нашёл на броню)
- 0xBAB22C – [byte] Health bar/red text/enemy marker/anything red color (RGBA, 4 bytes)
- 0xBAB230 – [byte] Money font color/vehicle entry name/green text/anything green color (RGBA, 4 bytes)
- 0xBAB238 – [byte] White text color (RGBA, 4 bytes)
- 0xBAB240 – [byte] Main menu title border (RGBA, 4 bytes)
- 0xBAB244 – [byte] Wanted level color (RGBA, 4 bytes)
- 0xBAB24C – [byte] Radio station text color (RGBA, 4 bytes)
- 0xBAB258 – [byte] Yellow blip/text color (RGBA, 4 bytes)
|
|
|

06.09.2020, 18:15
|
|
Флудер
Регистрация: 06.11.2017
Сообщений: 2,759
С нами:
4483143
Репутация:
183
|
|
Сообщение от CaJlaT
С твоими адресами крашит, вот нашёл рабочие (не нашёл на броню) - 0xBAB22C – [byte] Health bar/red text/enemy marker/anything red color (RGBA, 4 bytes)
- 0xBAB230 – [byte] Money font color/vehicle entry name/green text/anything green color (RGBA, 4 bytes)
- 0xBAB238 – [byte] White text color (RGBA, 4 bytes)
- 0xBAB240 – [byte] Main menu title border (RGBA, 4 bytes)
- 0xBAB244 – [byte] Wanted level color (RGBA, 4 bytes)
- 0xBAB24C – [byte] Radio station text color (RGBA, 4 bytes)
- 0xBAB258 – [byte] Yellow blip/text color (RGBA, 4 bytes)
В некоторые адреса нужно указатель на float давать, а не само значение, доброе утро.
|
|
|

06.09.2020, 19:02
|
|
Флудер
Регистрация: 16.09.2019
Сообщений: 2,013
С нами:
3505395
Репутация:
183
|
|
Сообщение от CaJlaT
С твоими адресами крашит, вот нашёл рабочие (не нашёл на броню) - 0xBAB22C – [byte] Health bar/red text/enemy marker/anything red color (RGBA, 4 bytes)
- 0xBAB230 – [byte] Money font color/vehicle entry name/green text/anything green color (RGBA, 4 bytes)
- 0xBAB238 – [byte] White text color (RGBA, 4 bytes)
- 0xBAB240 – [byte] Main menu title border (RGBA, 4 bytes)
- 0xBAB244 – [byte] Wanted level color (RGBA, 4 bytes)
- 0xBAB24C – [byte] Radio station text color (RGBA, 4 bytes)
- 0xBAB258 – [byte] Yellow blip/text color (RGBA, 4 bytes)
Крашит потому что ты неправильно изменяешь их
|
|
|

06.09.2020, 19:04
|
|
Флудер
Регистрация: 06.07.2016
Сообщений: 2,855
С нами:
5185431
Репутация:
183
|
|
Сообщение от S E V E N
Крашит потому что ты неправильно изменяешь их
Закомментированы твои

|
|
|

06.09.2020, 19:12
|
|
Флудер
Регистрация: 16.09.2019
Сообщений: 2,013
С нами:
3505395
Репутация:
183
|
|
Сообщение от CaJlaT
Закомментированы твои
Lua:
Код:
local
memory
=
require
"memory"
memory
.
setuint8
(
0x58932A
,
7
,
true
)
|
|
|

06.09.2020, 19:35
|
|
Флудер
Регистрация: 06.07.2016
Сообщений: 2,855
С нами:
5185431
Репутация:
183
|
|
Сообщение от S E V E N
Lua:
Код:
local
memory
=
require
"memory"
memory
.
setuint8
(
0x58932A
,
7
,
true
)
чо я делаю не так?
Код:
Код:
local memory = require 'memory'
local speed = 3
function main()
while true do
wait(0)
if actall then
local r, g, b, a = rainbow(speed, 255)
local rgba = join_argb(r, g, b, a)
local argb = join_argb(a, r, g, b)
memory.setuint8(0x58932A, rgba, true) -- хп
end
end
end
function rainbow(speed, alpha)
local r = math.floor(math.sin(os.clock() * speed) * 127 + 128)
local g = math.floor(math.sin(os.clock() * speed + 2) * 127 + 128)
local b = math.floor(math.sin(os.clock() * speed + 4) * 127 + 128)
return r,g,b,alpha
end
|
|
|

06.09.2020, 19:40
|
|
Флудер
Регистрация: 16.09.2019
Сообщений: 2,013
С нами:
3505395
Репутация:
183
|
|
Сообщение от CaJlaT
чо я делаю не так?
Код:
Код:
local memory = require 'memory'
local speed = 3
function main()
while true do
wait(0)
if actall then
local r, g, b, a = rainbow(speed, 255)
local rgba = join_argb(r, g, b, a)
local argb = join_argb(a, r, g, b)
memory.setuint8(0x58932A, rgba, true) -- хп
end
end
end
function rainbow(speed, alpha)
local r = math.floor(math.sin(os.clock() * speed) * 127 + 128)
local g = math.floor(math.sin(os.clock() * speed + 2) * 127 + 128)
local b = math.floor(math.sin(os.clock() * speed + 4) * 127 + 128)
return r,g,b,alpha
end
в этот адрес не записывается HEX цвет, туда записывается индекс в таблице цветов GTA
|
|
|

14.10.2020, 13:33
|
|
Постоянный
Регистрация: 05.10.2020
Сообщений: 509
С нами:
2950908
Репутация:
48
|
|
Сообщение от Seven Memz
Health PosX - 0x58EE87
Health PosY - 0x58EE68
Health Width - 0x5892D8
Health Height - 0x589358
Health Color - 0x58932A
Health Border - 0x589353
Health Percentage - 0x589355
Armor PosX - 0x58EF59
Armor PosY - 0x58EF3A
ArmorWidth - 0x58915D
ArmorHeight - 0x589146
ArmorColor - 0x5890F5
ArmorBorder - 0x589123
ArmorPercentage - 0x589125
BreathX - 0x58F11F
BreathY - 0x58F100
BreathWidth - 0x589235
BreathHeight - 0x58921E
BreathColor - 0x5891E4
BreathBorder - 0x589207
BreathPercentage - 0x589209
MoneyX - 0x58F5FC
MoneyY - 0x58F5DC
MoneyXScale - 0x58F564
MoneyYScale - 0x58F54E
MoneyColor - 0x58F492
MoneyColorDebt - 0x58F4D4
WeaponX - 0x58F92F
WeaponIconX - 0x58F927
WeaponIconY - 0x58F913
WeaponAmmoY - 0x58F9DC
WeaponAmmoX - 0x58F9F7
WeaponIconWidth - 0x58FAAB
WeaponAmmoHeight - 0x5894B7
WeaponAmmoWidth - 0x5894CD
WantedX - 0x58DD0F
WantedY - 0x58DDFC
WantedEmptyY - 0x58DE27
WantedXScale - 0x58DCC0
WantedYScale - 0x58DCAA
WantedColor - 0x58DDC9
RadioY - 0x4E9FD8
RadioXScale - 0x4E9F38
RadioYScale - 0x4E9F22
RadioColor - 0x4E9F91
RadarX - 0x58A79B, 0x5834D4, 0x58A836, 0x58A8E9, 0x58A98A, 0x58A469, 0x58A5E2, 0x58A6E6
RadarY - 0x58A7C7, 0x58A868, 0x58A913, 0x58A9C7, 0x583500, 0x58A499, 0x58A60E, 0x58A71E
RadarHeight - 0x58A47D, 0x58A632, 0x58A6AB, 0x58A70E, 0x58A801, 0x58A8AB, 0x58A921, 0x58A9D5, 0x5834F6
RadarWidth - 0x5834C2, 0x58A449, 0x58A7E9, 0x58A840, 0x58A943, 0x58A99D
RadarScaleWidth - 0x5834EE, 0x58A475, 0x58A602, 0x58A706, 0x58A7BB, 0x58A85C, 0x58A90B, 0x58A9BF
RadarScaleHeight - 0x5834BC, 0x58A443, 0x58A5DA, 0x58A6E0, 0x58A793, 0x58A830, 0x58A8E1, 0x58A984
Radar-Tilt-XPos - 0x58A469
Radar-Tilt-YPos - 0x58A499
Radar-Height-XPos - 0x58A5E2, 0x58A6E6
Radar-Height-YPos - 0x58A60E, 0x58A71E
(в радаре адреса вместе с обводкой)
На андроиде те же адреса?
|
|
|

12.01.2021, 20:34
|
|
Флудер
Регистрация: 16.09.2019
Сообщений: 2,013
С нами:
3505395
Репутация:
183
|
|
Если дашь APK файл, то мб достану адреса
|
|
|

24.01.2021, 00:02
|
|
Флудер
Регистрация: 16.09.2019
Сообщений: 2,013
С нами:
3505395
Репутация:
183
|
|
2.0 libGTASA.so нашел
у кого есть апк файл 1.0 версии, пожалуйста отправьте мне его в вк: vk.com/seven_exe, либо тут на форуме. буду благодарен )
|
|
|
|
 |
|
|
Здесь присутствуют: 1 (пользователей: 0 , гостей: 1)
|
|
|
|