Results 1 to 6 of 6
  1. #1
    caddi's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Anticheat, change of getting banned - Questions

    Hello everyone,

    there might have been some threads about it. But there were updates between these.

    I want to cheat a little bit in Payday 2 and don't wanna get banned or something like this.

    The only things I wanna do are:
    - give me cash (~ 10.000.000)
    - change my level (from 60 to around 80)
    - give me skill points (I wanna get ALL 4 skill trees full)

    I won't cheat with things like godmode, unlimited ammo and all that obvious things.

    Some questions I got:
    - can I get banned for it?
    - can I get tagged as a cheater?
    - any other risks?
    - which LUA's should I use?
    - anything else that I have to know about it?

    Thanks in advance for your answers

    - caddi

    EDIT:
    I wanted to write chance not change...

  2. #2
    max1612's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    C:/Users
    Posts
    532
    Reputation
    18
    Thanks
    1,466
    Some questions I got:
    - can I get banned for it? : No since i use lua hooks everyday and cheated 350 hours V-100
    - can I get tagged as a cheater? : Yes you surely can just dont edit things with Infinite amount or some shit and ur golden also use this to prevent tags i think host only
    Code:
     --RENAME CHEATER
    --Changes the CHEATER above peoples' heads
    if not LocalizationManager or not LocalizationManager.text then return end
    LocalizationManager_text = LocalizationManager_text or LocalizationManager.text
    function LocalizationManager:text( string_id, macros )
        if string_id == "menu_hud_cheater" then
            return tweak_data.hoxhud.cheater_name
        end
        return LocalizationManager_text(self, string_id, macros)
    end
    
    --ANTI-ANTICHEAT by Baldwin, only works if host
    if not PlayerManager then return end
    function PlayerManager.verify_carry(_ARG_0_, _ARG_1_, _ARG_2_)
        return true
    end
    function PlayerManager:verify_equipment( peer_id, equipment_id )
        return true
    end
    function PlayerManager:verify_grenade( peer_id )
        return true
    end
    if not NetworkMember then return end
    function NetworkMember.place_deployable(_ARG_0_, _ARG_1_)
        return true
    end
    function NetworkMember.place_bag(_ARG_0_, _ARG_1_, _ARG_2_)
        return true
    end
    function NetworkMember.set_grenade(_ARG_0_, _ARG_1_)
        return true
    end
    if NetworkAccountSTEAM then
        function NetworkAccountSTEAM:publish_statistics( stats, force_store ) end
    end
    --ANTI-HOXHUD ANTICHEAT
    if not HoxHudTweakData or not UnitNetworkHandler then return end
    function UnitNetworkHandler.check_loot_cheater(_ARG_0_, _ARG_1_, _ARG_2_) end
    function UnitNetworkHandler.set_carry_blacklisted(_ARG_0_, _ARG_1_, _ARG_2_) end
    function UnitNetworkHandler.sync_interacted(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, ...)
        if _ARG_3_ == "corpse_alarm_pager" then
            managers.hud:set_control_info({pager_answered = true})
        end
        _ARG_0_.oldMethods.sync_interacted(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, ...)
    end
    function UnitNetworkHandler.sync_grenades(_ARG_0_, ...)
        _ARG_0_.oldMethods.sync_grenades(_ARG_0_, ...)
    end
    function UnitNetworkHandler.server_throw_grenade(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, ...)
        _ARG_0_.oldMethods.server_throw_grenade(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, ...)
    end
    function UnitNetworkHandler.place_deployable_bag(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, _ARG_4_, _ARG_5_, ...)
        _ARG_0_.oldMethods.place_deployable_bag(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, _ARG_4_, _ARG_5_, ...)
    end
    function UnitNetworkHandler.place_sentry_gun(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, _ARG_4_, _ARG_5_, _ARG_6_, _ARG_7_, _ARG_8_, ...)
        _ARG_0_.oldMethods.place_sentry_gun(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, _ARG_4_, _ARG_5_, _ARG_6_, _ARG_7_, _ARG_8_, ...)
    end
    function UnitNetworkHandler.attach_device(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, _ARG_4_, ...)
        _ARG_0_.oldMethods.attach_device(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, _ARG_4_, ...)
    end
    function UnitNetworkHandler.request_place_ecm_jammer(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, _ARG_4_, ...)
        _ARG_0_.oldMethods.request_place_ecm_jammer(_ARG_0_, _ARG_1_, _ARG_2_, _ARG_3_, _ARG_4_, ...)
    end
    
    --TOGGLE CHEATS
    if ChatManager_feed_system_message then ChatManager.feed_system_message = ChatManager_feed_system_message end
    if LootManager_get_secured_bonus_bags_value then LootManager.get_secured_bonus_bags_value = LootManager_get_secured_bonus_bags_value end
    tweak_data.money_manager.max_small_loot_value = 99999999999999999999999999999999
    
    --REMOVE CHATSPAM by hejoro
    --Silences person cheated messages in the chatbox, in all languages
    if not ChatManager then return end
    ChatManager_feed_system_message = ChatManager_feed_system_message or ChatManager.feed_system_message
    function ChatManager:feed_system_message( channel_id, message )
        local _gmatch = {
            managers.localization:text( "menu_chat_peer_cheated_many_assets", { name = ".*" } ),
            managers.localization:text( "menu_chat_peer_cheated_many_bags", { name = ".*" } ),
            managers.localization:text( "menu_chat_peer_cheated_wrong_equipment_server", { name = ".*" } ),
            managers.localization:text( "menu_chat_peer_cheated_many_equipments_server", { name = ".*" } ),
            managers.localization:text( "menu_chat_peer_cheated_many_bags_server", { name = ".*" } ),
            managers.localization:text( "menu_chat_peer_cheated_many_bags_pickup_server", { name = ".*" } ),
            managers.localization:text( "menu_chat_peer_cheated_many_grenades_server", { name = ".*" } )
        }
        for k,v in pairs(_gmatch) do
            if message:gmatch(v) then return end
        end
        ChatManager_feed_system_message( channel_id, message)
    end
    
    -- ANTI PAYOUT CAP by LazyOzzy and hejoro (edited to allow truly unlimited bags)
    --Removes the bag limit payout cap
    if not LootManager.get_secured_bonus_bags_value then return end
    LootManager_get_secured_bonus_bags_value = LootManager_get_secured_bonus_bags_value or LootManager.get_secured_bonus_bags_value
    function LootManager:get_secured_bonus_bags_value( level_id )
        local mandatory_bags_amount = self._global.mandatory_bags.amount or 0
        
        local value = 0
        for _,data in ipairs( self._global.secured ) do
            if not tweak_data.carry.small_loot[ data.carry_id ] then
                if mandatory_bags_amount > 0 and (self._global.mandatory_bags.carry_id == "none" or self._global.mandatory_bags.carry_id == data.carry_id) then
                    mandatory_bags_amount = mandatory_bags_amount - 1
                end
                value = value + managers.money:get_bag_value( data.carry_id, data.multiplier )
            end
        end
        
        return value
    end
    - any other risks? ": People hating on you whne they find out you hack
    - which LUA's should I use? : pirateperfection (google for new release) , And the other trainers on mpgh and checkout https://www.mpgh.net/forum/754-payday...-snippets.html for some lua script snippets to make ur own little trainer lua
    - anything else that I have to know about it? : I dont think so and after all i do the same as you only ace all skills cheat V-100 and i cheated 500 bil cash so it shouldnt be harmful
    Last edited by max1612; 07-08-2014 at 03:20 AM.
    Empty for now

  3. #3
    rEKT|Di3sel's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    What do i use with this code ? what .lua ?

    thanks!

  4. #4
    max1612's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    C:/Users
    Posts
    532
    Reputation
    18
    Thanks
    1,466
    yes with .lua
    Empty for now

  5. #5
    Threadstarter
    New Member
    caddi's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Hello,

    thank you for the answer!


    Quote Originally Posted by max1612 View Post
    - can I get tagged as a cheater? : Yes you surely can just dont edit things with Infinite amount or some shit and ur golden also use this to prevent tags i think host
    As I said I won't use things like infinite ammo and so on.

    Can I still get tagged as cheater? Even if I only use the things I said.

    - caddi

  6. #6
    max1612's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    C:/Users
    Posts
    532
    Reputation
    18
    Thanks
    1,466
    Quote Originally Posted by caddi View Post
    Hello,

    thank you for the answer!




    As I said I won't use things like infinite ammo and so on.

    Can I still get tagged as cheater? Even if I only use the things I said.

    - caddi

    Nope if you do what youre doing now you wont get tagged
    Empty for now

Similar Threads

  1. Question about getting banned
    By nyankat in forum Alliance of Valiant Arms (AVA) Discussions
    Replies: 9
    Last Post: 08-08-2011, 02:22 AM
  2. Question about getting banned on rs
    By follower in forum RuneScape Discussions
    Replies: 5
    Last Post: 06-02-2011, 04:52 AM
  3. .bat file to change your ip if you get banned.
    By whitten in forum Programming Tutorials
    Replies: 20
    Last Post: 01-10-2010, 07:52 PM
  4. (TUT)how to change your IP address incase u get banned
    By (FPS)H4X0R in forum Combat Arms Hacks & Cheats
    Replies: 20
    Last Post: 06-19-2009, 01:38 AM
  5. [Question]getting banned
    By Dragonian in forum Combat Arms Hacks & Cheats
    Replies: 14
    Last Post: 08-05-2008, 08:40 AM