Page 2 of 6 FirstFirst 1234 ... LastLast
Results 16 to 30 of 76
  1. #16
    NyskLin3's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Aaron View Post
    I hope it's possible to delevel.
    Furthermore, weapon mod unlock will be good.
    Yeah that would be cool to see.

    Besides that the problem with leveling straight from 0 to the highest level is that you only get to pick 1 card after you leveld up which is pretty gay haha

  2. #17
    Gray's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Sweden
    Posts
    13,557
    Reputation
    2516
    Thanks
    10,618
    Quote Originally Posted by NyskLin3 View Post
    Yeah that would be cool to see.

    Besides that the problem with leveling straight from 0 to the highest level is that you only get to pick 1 card after you leveld up which is pretty gay haha
    Or you can give yourself everything.
    Like all masks, weapons, materials, colors, mods and armors.

  3. #18
    Mr Moggy's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Behind you
    Posts
    545
    Reputation
    10
    Thanks
    65
    My Mood
    Aggressive
    Quote Originally Posted by Antipathy View Post


    Or you can give yourself everything.
    Like all masks, weapons, materials, colors, mods and armors.
    how does one do this?
    [IMG]https://i164.photobucke*****m/albums/u4/moray007/MrMoggyNameCard.png[/IMG]



  4. #19
    Gray's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Sweden
    Posts
    13,557
    Reputation
    2516
    Thanks
    10,618
    Quote Originally Posted by Mr Moggy View Post
    how does one do this?
    All weapons.

    Code:
    local wep_arr = {
    	'new_m4', 
    	'glock_17', 
    	'mp9', 
    	'r870',
    	'glock_18c',
    	'amcar',
    	'm16',
    	'olympic',
    	'ak74',
    	'akm',
    	'akmsu',
    	'saiga',
    	'ak5',
    	'aug',
    	'g36',
    	'p90',
    	'new_m14',
    	'deagle',
    	'new_mp5',
    	'colt_1911',
    	'mac10',
    	'serbu',
    	'huntsman',
    	'b92fs',
    	'new_raging_bull',
    	'saw'
    }
    
    for i, name in ipairs(wep_arr) do
    	if not managers.upgrades:aquired(name) then
    		managers.upgrades:aquire(name)
    	end
    end
    All masks

    Code:
    managers.blackmarket:_setup_masks()
    for mask_id,_ in pairs(tweak_data.blackmarket.masks) do
    	Global.blackmarket_manager.masks[mask_id].unlocked = true
    	managers.blackmarket:add_to_inventory("normal", "masks", mask_id, false)
    end
    Use LUA, mentioned to me by wuat.

  5. #20
    Leneker's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Kaluga
    Posts
    50
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by Antipathy View Post


    All weapons.

    Code:
    local wep_arr = {
    	'new_m4', 
    	'glock_17', 
    	'mp9', 
    	'r870',
    	'glock_18c',
    	'amcar',
    	'm16',
    	'olympic',
    	'ak74',
    	'akm',
    	'akmsu',
    	'saiga',
    	'ak5',
    	'aug',
    	'g36',
    	'p90',
    	'new_m14',
    	'deagle',
    	'new_mp5',
    	'colt_1911',
    	'mac10',
    	'serbu',
    	'huntsman',
    	'b92fs',
    	'new_raging_bull',
    	'saw'
    }
    
    for i, name in ipairs(wep_arr) do
    	if not managers.upgrades:aquired(name) then
    		managers.upgrades:aquire(name)
    	end
    end
    All masks

    Code:
    managers.blackmarket:_setup_masks()
    for mask_id,_ in pairs(tweak_data.blackmarket.masks) do
    	Global.blackmarket_manager.masks[mask_id].unlocked = true
    	managers.blackmarket:add_to_inventory("normal", "masks", mask_id, false)
    end
    Use LUA, mentioned to me by wuat.
    how to use this lua shit?
    Last edited by Leneker; 08-13-2013 at 05:54 AM.

  6. #21
    NootNoot's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Antipathy View Post


    All weapons.

    Code:
    local wep_arr = {
    	'new_m4', 
    	'glock_17', 
    	'mp9', 
    	'r870',
    	'glock_18c',
    	'amcar',
    	'm16',
    	'olympic',
    	'ak74',
    	'akm',
    	'akmsu',
    	'saiga',
    	'ak5',
    	'aug',
    	'g36',
    	'p90',
    	'new_m14',
    	'deagle',
    	'new_mp5',
    	'colt_1911',
    	'mac10',
    	'serbu',
    	'huntsman',
    	'b92fs',
    	'new_raging_bull',
    	'saw'
    }
    
    for i, name in ipairs(wep_arr) do
    	if not managers.upgrades:aquired(name) then
    		managers.upgrades:aquire(name)
    	end
    end
    All masks

    Code:
    managers.blackmarket:_setup_masks()
    for mask_id,_ in pairs(tweak_data.blackmarket.masks) do
    	Global.blackmarket_manager.masks[mask_id].unlocked = true
    	managers.blackmarket:add_to_inventory("normal", "masks", mask_id, false)
    end
    Use LUA, mentioned to me by wuat.
    You wouldnt happen to have a money and experience script would you?

  7. #22
    lilpav94's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    1
    Any1 figure out a money cheat or exp or skill cheat for The game, not beta.

  8. #23
    Backpagebz's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Antipathy View Post


    All weapons.

    Code:
    local wep_arr = {
    	'new_m4', 
    	'glock_17', 
    	'mp9', 
    	'r870',
    	'glock_18c',
    	'amcar',
    	'm16',
    	'olympic',
    	'ak74',
    	'akm',
    	'akmsu',
    	'saiga',
    	'ak5',
    	'aug',
    	'g36',
    	'p90',
    	'new_m14',
    	'deagle',
    	'new_mp5',
    	'colt_1911',
    	'mac10',
    	'serbu',
    	'huntsman',
    	'b92fs',
    	'new_raging_bull',
    	'saw'
    }
    
    for i, name in ipairs(wep_arr) do
    	if not managers.upgrades:aquired(name) then
    		managers.upgrades:aquire(name)
    	end
    end
    All masks

    Code:
    managers.blackmarket:_setup_masks()
    for mask_id,_ in pairs(tweak_data.blackmarket.masks) do
    	Global.blackmarket_manager.masks[mask_id].unlocked = true
    	managers.blackmarket:add_to_inventory("normal", "masks", mask_id, false)
    end
    Use LUA, mentioned to me by wuat.

    How would i go about using this? Do i have to get a specific program?.

    EDIT: Tried using the LUA scripts via the LUA execute command in cheat engine, is the code given correct, or is there a different program i have to use for this? Would appreciate a response other than what Wuat usually says to anyone who doesn't know much about LUA but still asks for help.
    Last edited by Backpagebz; 08-13-2013 at 07:29 AM.

  9. #24
    Gray's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Sweden
    Posts
    13,557
    Reputation
    2516
    Thanks
    10,618
    Quote Originally Posted by NootNoot View Post
    You wouldnt happen to have a money and experience script would you?
    I do.
    Google payday 2 lua.

    Quote Originally Posted by Backpagebz View Post
    How would i go about using this? Do i have to get a specific program?.

    EDIT: Tried using the LUA scripts via the LUA execute command in cheat engine, is the code given correct, or is there a different program i have to use for this? Would appreciate a response other than what Wuat usually says to anyone who doesn't know much about LUA but still asks for help.
    Google payday 2 lua.

  10. #25
    backpage's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Antipathy View Post


    I do.
    Google payday 2 lua.



    Google payday 2 lua.

    Thanks, got it working.

  11. #26
    rezonen's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    1
    My Mood
    Relaxed
    I got everything working except the hook.

  12. #27
    DooBiiE's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    1
    its not working for me :s
    got a few errors
    Error:[string "managers.blackmarket:_setup_masks()..."]:1: attempt to index global 'managers' (a nil value)
    Error:[string "managers.experience:_set_current_level(5);... "]:1: attempt to index global 'managers' (a nil value)

    Error:[string "managers.money:_add_to_total(50000000000)..."]:1: attempt to index global 'managers' (a nil value)
    Error:[string "managers.money:_add_to_total(50000000000)..."]:1: attempt to index global 'managers' (a nil value)

  13. #28
    rezonen's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    1
    My Mood
    Relaxed
    Quote Originally Posted by DooBiiE View Post
    its not working for me :s
    got a few errors
    Do you have a hook for the game ? If so we can co-operate and make it work. I got everything working except that i need a hook.

  14. #29
    plerer's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by rezonen View Post
    Do you have a hook for the game ? If so we can co-operate and make it work. I got everything working except that i need a hook.
    He's just using the Cheat Engine Lua execution function.

  15. #30
    rezonen's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    1
    My Mood
    Relaxed
    Quote Originally Posted by plerer View Post
    He's just using the Cheat Engine Lua execution function.
    Ye that is never gonna work.

Page 2 of 6 FirstFirst 1234 ... LastLast

Similar Threads

  1. [Outdated] Prestige and Level Hack v1.4 (1.9.453)
    By [NooB] Mentor in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 6
    Last Post: 10-21-2012, 02:20 PM
  2. Enhancement Hack Gold hack And Level hack
    By kyletagum01 in forum Dragon Nest Help
    Replies: 1
    Last Post: 03-07-2012, 03:55 AM
  3. [Patched] Modern Warfare 3 Hack (Weapon, level, prestige and tokens hack!)
    By M3nn0 in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 130
    Last Post: 11-17-2011, 12:35 PM
  4. selling 84 and a level 36 pure with one mil in cash and a santa!!!
    By jakew106 in forum Trade Accounts/Keys/Items
    Replies: 0
    Last Post: 06-19-2008, 08:07 PM
  5. Level And Dinar Hack?
    By aroman in forum WarRock - International Hacks
    Replies: 15
    Last Post: 03-16-2007, 04:42 PM