Загрузка...

[LUA] WallHack (Не палится на скринах)

Тема в разделе Читы SAMP создана пользователем Sn00pY_inactive 23 авг 2016. 3150 просмотров

Загрузка...
  1. Sn00pY_inactive
    Sn00pY_inactive Автор темы 23 авг 2016 6 4 июл 2016
    [IMG]
    На скринах (если они делаются клавишей F8 ) не палится.
    Скачать: тык
    P.S. Скрин делал с помощью LightShot
     
  2. Buck1ey
    Buck1ey 23 авг 2016 без звука :) 543 17 авг 2016
    ******* не?
     
  3. Sn00pY_inactive
    Sn00pY_inactive Автор темы 23 авг 2016 6 4 июл 2016
    Берешь и открываешь файл "nameTag.lua" в обычном блокноте.
    Код

    script_name("nameTag")
    script_description("alt + F3 to turn on/off")
    script_version_number(1)
    script_version("v.001")
    script_authors("Blast.hk")

    function main()
    if not isSampfuncsLoaded() or not isSampLoaded() then return end
    while true do
    wait(0)
    if isKeyDown(18) and isKeyJustPressed(114) then -- ALT+F3
    while isKeyDown(18) or isKeyDown(114) do
    wait(10)
    end
    nameTagOn()
    printStringNow("Wallhack ~g~ON", 1000)
    repeat
    wait(0)
    if isKeyDown(119) then
    nameTagOff()
    wait (1000)
    nameTagOn()
    end
    until isKeyDown(18) and isKeyJustPressed(114)
    while isKeyDown(18) or isKeyDown(114) do
    wait(10)
    end
    nameTagOff()
    printStringNow("Wallhack ~r~OFF", 1000)
    --sampAddChatMessage("WallHack off", 0xcc0000)
    end
    end
    end

    function nameTagOn()
    local sampDLL = sampGetBase()
    writeMemory(sampDLL + 0x6FCF3, 6, -1869574000, true)
    writeMemory(sampDLL + 0x6FD14, 6, -1869574000, true)
    writeMemory(sampDLL + 0x6FE28, 2, 0x9090, true)
    writeMemory(sampDLL + 0x70F38, 2, 0x9090, true)
    writeMemory(sampDLL + 0x70E24, 6, -1869574000, true)
    end


    function nameTagOff()
    local sampDLL = sampGetBase()
    writeMemory(sampDLL + 0x6FCF3, 4, 24216591, true)
    writeMemory(sampDLL + 0x6FCF7, 2, 0, true)
    writeMemory(sampDLL + 0x6FD14, 4, 22053903, true)
    writeMemory(sampDLL + 0x6FD18, 2, 0, true)
    writeMemory(sampDLL + 0x6FE28, 2, 16500, true)
    writeMemory(sampDLL + 0x70F38, 2, 24948, true)
    writeMemory(sampDLL + 0x70E24, 4, 24218127, true)
    writeMemory(sampDLL + 0x70E28, 2, 0, true)
    end
    Видишь тут *******?
     
Top