Arama Sonuçları

  1. T

    GTA5 Native Hash Lib (.LUA)

    its just a reference library, youd import it into your own script so you dont have to lookup all the unique hashes for gta5 which are kind of a pain to work with. basically it just allows you to write luas or whatever a lot easier
  2. T

    GTA5 "player" is typing notification (LUA)

    local stuff = {} stuff.ChatSpyTable = {} stuff.scriptHookFunction = function(source, target, params, count, stuff) if params[1] == 747270864 then if not stuff.ChatSpyTable.pidTable[source] then stuff.ChatSpyTable.total = stuff.ChatSpyTable.total + 1...
  3. T

    Aimware Menu Acid Trip (LUA)

    local colors = { "theme.footer.bg", "theme.footer.text", "theme.header.line", "theme.header.text", "theme.nav.active", "theme.nav.bg", "theme.nav.shadow", "theme.nav.text", "theme.tablist.shadow", "theme.tablist.tabactivebg"...
  4. T

    GTA5 Native Hash Lib (.LUA)

    Lib for calling gtav's natives with more ease (Name instead of hash) local natives = {} function natives.WAIT(intms) return native.call(0x4EDE34FBADD967A6, intms) end function natives.START_NEW_SCRIPT(constcharscriptName, intstackSize) return native.call(0xE81651AD79516E48...
  5. T

    GTA5 No Police Helicopters When You Have Stars (LUA)

    menu.add_feature("No Police Helicopters", "toggle", 0, function(f) while f.on do local vehicles = vehicle.get_all_vehicles() for _, VEHICLE in ipairs(vehicles) do if entity.get_entity_model_hash(VEHICLE) == 0x1517D4D9 then local isSafeToDelete =...
  6. T

    GTA5 Players Targetable With MK2 (LUA)

    Youll need a menu and may need to change vars dependant on the lua implementation\ menu.add_feature("Player Target Mk II", "toggle", 0, function(f) menu.notify("git gud") local pedTable = {} streaming.request_model(gameplay.get_hash_key("s_m_y_cop_01")) local timer =...
  7. T

    GTA 5 Copy Selected Player IP (LUA)

    You'll of course need a menu that supports lua, and you may need to rewrite some variables to fit your menus lua functions, but the logic should stay the same. menu.add_player_feature("Copy IP", "action", 0, function(f, pid) if not player.is_player_valid(pid) then return HANDLER_POP...
  8. T

    CS:GO Aimware Dynamic Legit Backtrack (LUA)

    This is the first LUA I've made. I hope you like it -- Dynamic Legit Backtrack by Trainer Cheddar! local function vping(int) local local_player = entities.GetLocalPlayer() local playerResources = entities.GetPlayerResources() local iping = playerResources:GetPropInt("m_iPing"...
  9. T

    (Beginner Python) Random Image Pull Up

    I made this quick tool that just opens up a website a specified amount of times. You can use this as a template for your own code to run it on different websites like in Code Block 2 (which basically does the same thing), or you can repurpose the organization because I think I did pretty well on...
Üst