Page 1 of 10 123 ... LastLast
Results 1 to 15 of 147
  1. #1
    MixNova's Avatar
    Join Date
    Jun 2012
    Gender
    female
    Location
    90th Floor
    Posts
    123
    Reputation
    10
    Thanks
    2,060
    My Mood
    Dead

    Payday 2 Lua Scripts

    [HTML]-- Player Instance
    local player = managers.playerlayer_unit()

    -- Steam Achievements
    if managers.achievment then
    for id,_ in pairs(managers.achievment.achievments) do
    managers.achievment:award(id)
    end
    end

    -- God Mode
    if player then
    player:character_damage():set_invulnerable( true )
    end

    -- Throwing Distance
    local car_arr = {
    'being',
    'mega_heavy',
    'heavy',
    'medium',
    'light',
    'coke_light'
    }

    for i, name in ipairs(car_arr) do
    tweak_data.carry.types[ name ].throw_distance_multiplier = 10.0
    end

    -- Everything But Weapons
    for i=1, 7 do
    managers.lootdrop:debug_drop( 1000, true, i )
    end

    -- Weapon Mods
    NewRaycastWeaponBase._get_spread = function(self) return 0 end
    NewRaycastWeaponBase.recoil_multiplier = function(self) return 0 end
    NewRaycastWeaponBase.reload_speed_multiplier = function(self) return 5000 end
    NewRaycastWeaponBase.fire_rate_multiplier = function(self) return 5000 end
    PlayerStandard._get_swap_speed_multiplier = function(self) return 5000 end
    NewRaycastWeaponBase.damage_multiplier = function(self) return 5000 end

    BaseInteractionExt._has_required_upgrade = function(self) return true end
    BaseInteractionExt._has_required_deployable = function(self) return true end
    BaseInteractionExt._get_timer = function(self) return 0 end
    BaseInteractionExt.can_interact = function(self, player) return true end

    -- Infinite Ammo Clip
    if not _fireWep then
    _fireWep = NewRaycastWeaponBase.fire
    end
    function NewRaycastWeaponBase:fire( from_pos, direction, dmg_mul, shoot_player, spread_mul, autohit_mul, suppr_mul, target_unit )
    _fireWep( self, from_pos, direction, dmg_mul, shoot_player, spread_mul, autohit_mul, suppr_mul, target_unit )

    if managers.playerlayer_unit() == self._setup.user_unit then
    self.set_ammo(self, 1.0)
    end
    end

    -- Infinite Ammo and No Reload
    RaycastWeaponBase.ammo_info = function(self)
    self._ammo_max_per_clip = 99999
    self._ammo_remaining_in_clip = 99999
    self._ammo_total = 99999
    self._ammo_max = 99999
    return self._ammo_max_per_clip, self._ammo_remaining_in_clip, self._ammo_total, self._ammo_max
    end
    BlackMarketGui.get_weapon_ammo_info = function(self, weapon_id, comparision_data)
    return 100, 100
    end

    -- Money and Level
    managers.experience:_set_current_level (9999)
    managers.skilltree:_set_points(9999)
    managers.money:_add_to_total(9999)
    managers.money:_set_offshore(9999)

    -- Infinite Saw
    if not _fireSaw then
    _fireSaw = SawWeaponBase.fire
    end
    function SawWeaponBase:fire( from_pos, direction, dmg_mul, shoot_player, spread_mul, autohit_mul, suppr_mul, target_unit )
    _fireSaw( self, from_pos, direction, dmg_mul, shoot_player, spread_mul, autohit_mul, suppr_mul, target_unit )

    if managers.playerlayer_unit() == self._setup.user_unit then
    self.set_ammo(self, 1.0)
    end
    end

    -- Infinite Cable Ties
    if not _rmSpecial then
    _rmSpecial = PlayerManager.remove_special
    end
    function PlayerManager:remove_special( name ) end

    -- Infinite Equipment
    if not _rmEquipment then
    _rmEquipment = PlayerManager.remove_equipment
    end
    function PlayerManager:remove_equipment( equipment_id ) end

    -- Infinite Equipment (Not Host)
    function PlayerManager:remove_equipment_possession( peer_id, equipment ) end

    -- Debug Menu
    if managers.menu then
    managers.menu:set_debug_menu_enabled(true)
    end

    -- All Weapons Unlocked
    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

    -- Guards and Camera
    function GroupAIStateBase:_clbk_switch_enemies_to_not_cool( ) end
    function PlayerMovementn_suspicion( observer_unit, status ) end
    function GroupAIStateBasen_criminal_suspicion_progress( u_suspect, u_observer, status ) end
    function GroupAIStateBase:criminal_spotted( unit ) end
    function GroupAIStateBase:report_aggression( unit ) end
    function PlayerMovementn_uncovered( enemy_unit ) end
    function SecurityCamera:_upd_suspicion( t ) end
    function SecurityCamera:_sound_the_alarm( detected_unit ) end
    function SecurityCamera:_set_suspicion_sound( suspicion_level ) end
    function SecurityCamera:clbk_call_the_police() end
    function CopMovement:anim_clbk_police_called( unit ) end
    function CopLogicArrest._upd_enemy_detection( data ) end
    function CopLogicArrest._call_the_police( data, my_data, paniced ) end
    function CopLogicIdle.on_alert( data, alert_data ) end
    function CopLogicBase._get_logic_state_from_reaction( data, reaction )
    return "idle"
    end
    function GroupAIStateBase:sync_event( event_id, blame_id ) end
    function GroupAIStateBasen_police_called( called_reason ) end
    function GroupAIStateBasen_police_weapons_hot( called_reason ) end
    function GroupAIStateBasen_gangster_weapons_hot( called_reason ) end
    function GroupAIStateBasen_enemy_weapons_hot( is_delayed_callback ) end
    function GroupAIStateBase:_clbk_switch_enemies_to_not_cool( ) end

    -- Player Mods
    PlayerStandard._get_walk_headbob = function(self) return 0 end
    PlayerStandard._can_stand = function(self) return true end
    PlayerManager.remove_equipment = function(self, equipment_id) end
    PlayerInventory.remove_selection = function(self, selection_index, instant) end
    PlayerManager.selected_equipment_deploy_timer = function(self) return 0 end
    PlayerManager.chk_minion_limit_reached = function(self) return false end
    PlayerManager.spread_multiplier = function(self) return 0 end
    PlayerMovement.is_stamina_drained = function(self) return false end
    PlayerStandard._can_run_directional = function(self) return true end

    -- Super Jump
    PlayerStandard._perform_jump = function(self, jump_vec)
    local v = math.UP * 470
    if self._running then
    v = math.UP * 2000
    end
    self._unit:mover():set_velocity( v )
    end

    -- Player Armor
    PlayerDamage.get_real_armor = function(self)
    return Application:digest_value( 100, false )
    end

    -- Unlock All Masks
    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

    -- Ammo and Health
    local player = managers.playerlayer_unit()
    if alive(player) then
    player:base():replenish()
    end

    -- Weapon Accessories, Color Palettes, and Mask Vinyls
    for i=1, 7 do
    managers.lootdrop:debug_drop( 1000, true, i )
    end
    game_state_machine:change_state_by_name( "victoryscreen", { num_winners = 2, personal_win = alive( managers.playerlayer_unit() ) } )

    -- End Mission
    game_state_machine:change_state_by_name( "victoryscreen", { num_winners = 2, personal_win = alive( managers.playerlayer_unit() ) } )

    -- Teleport Player
    function GameState:freeflight_drop_player( pos, rot )
    if( managers.player ) then
    managers.player:warp_to( pos, rot )
    end
    end

    -- Message On Screen
    if managers.hud then
    managers.hud:show_hint( { text = "LUA Hack Loaded!" } )
    end[/HTML]

    [HTML]-- Unload Some Scripts
    managers.playerlayer_unit():character_damage():set_invulnerable( false )

    if _wSpread then
    NewRaycastWeaponBase._get_spread = _wSpread
    _wSpread = nil
    end

    if _wRecoil then
    NewRaycastWeaponBase.recoil_multiplier = _wRecoil
    _wRecoil = nil
    end

    if _wReload then
    NewRaycastWeaponBase.reload_speed_multiplier = _wReload
    _wReload = nil
    end

    if _wFireRate then
    NewRaycastWeaponBase.fire_rate_multiplier = _wFireRate
    _wFireRate = nil
    end

    if _wSwap then
    PlayerStandard._get_swap_speed_multiplier = _wSwap
    _wSwap = nil
    end

    if _fireWep then
    NewRaycastWeaponBase.fire = _fireWep
    _fireWep = nil
    end

    if _fireSaw then
    SawWeaponBase.fire = _fireSaw
    _fireSaw = nil
    end

    if _rmSpecial then
    PlayerManager.remove_special = _rmSpecial
    _rmSpecial = nil
    end

    if _rmEquipment then
    PlayerManager.remove_equipment = _rmEquipment
    _rmEquipment = nil
    end

    if _rmEquipmentP then
    PlayerManager.remove_equipment_possession = _rmEquipmentP
    _rmEquipmentP = nil
    end

    -- Message On Screen
    if managers.hud then
    managers.hud:show_hint( { text = "LUA Hack Unloaded!" } )
    end[/HTML]


    [HTML]-- Spawning Jobs
    managers.crimenet._debug_mass_spawning = true
    managers.crimenet._active_jobs = {}
    managers.crimenet._presets = {}

    local t = {}
    local difficulty_id = (5)
    local difficulty = tweak_data:index_to_difficulty( difficulty_id )
    table.insert(t, { job_id = "ukrainian_job_prof", difficulty_id = difficulty_id, difficulty = difficulty } )

    local j = 0
    while(j < tweak_data.gui.crime_net.debug_options.mass_spawn_ limit) do
    local job_data = t[1]
    table.insert( managers.crimenet._presets, job_data )
    j = j+1
    end

    -- Jobs ID's (Change Job ID to the Job you want)
    "welcome_to_the_jungle", (Big Oil)
    "welcome_to_the_jungle_prof",
    "framing_frame",
    "framing_frame_prof",
    "watchdogs",
    "watchdogs_prof",
    "alex", (Rats)
    "alex_prof",
    "firestarter",
    "firestarter_prof",
    "ukrainian_job",
    "ukrainian_job_prof",
    "jewelry_store",
    "jewelry_store_prof",
    "four_stores",
    "four_stores_prof",
    "nightclub",
    "nightclub_prof",
    "mallcrasher",
    "mallcrasher_prof",
    "branchbank_deposit",
    "branchbank_deposit_prof",
    "branchbank_cash",
    "branchbank_cash_prof",
    "branchbank_gold",
    "branchbank_gold_prof",
    "branchbank",
    "branchbank_prof"[/HTML]

    I do not take any credit for these.

    I've put them all in a notepad so you can download it without going back to the thread.

    -- Note
    Some scripts only work as host.
    There will be some scripts that aren't on the notepad as it updates.

    -- Virus Scan
    Lua Scripts.rar - Jotti's malware scan
    https://www.virustotal.com/en/file/d...is/1376811774/
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Hunter; 02-03-2016 at 04:11 AM.

  2. The Following 1,369 Users Say Thank You to MixNova For This Useful Post:

    ()()7 (04-04-2016),045321667 (05-07-2016),0504 (01-23-2015),0n3up (08-20-2016),11770 (10-19-2016),12101999 (04-09-2017),1232143123213 (05-29-2017),123asad (04-05-2014),168at (06-14-2016),1979328867 (09-27-2016),27ecastudent (08-25-2013),4tyler (11-16-2016),5inamoluty (04-10-2017),7er (01-07-2017),7SixX (07-13-2016),982289 (08-20-2013),A1xLOGOXx (01-15-2016),a2614959 (06-11-2017),a306023965a (08-24-2016),a4621410 (02-04-2017),aawer123 (04-16-2014),aayzz (07-05-2016),aazzee (01-08-2014),AbdelK (11-04-2014),Abdellasisaille (06-28-2016),abidiburak (04-07-2017),abielkhoo (10-15-2016),abnrmlxx (06-03-2020),AcePeQ (05-11-2017),AciMadiKixD (04-07-2017),acrasia (08-18-2013),ad550334049fuck (01-31-2017),adistyo30 (06-11-2017),adiz971 (11-08-2015),AdminWeapon (06-10-2017),admiraladam7520 (05-22-2016),admix-deluxe (08-22-2013),Adok54 (02-16-2017),Adrawda (07-21-2016),Aeswere (06-05-2017),afdasdad (03-26-2016),Afhul (06-28-2019),agent0022 (12-24-2013),AguaGtav25 (06-10-2017),agusguffa (10-27-2016),ahboi1 (04-03-2016),AhBoon5135 (06-28-2016),ainikesi (11-12-2016),aivy (06-09-2016),ajebje12 (01-13-2016),Akito_Masajun (03-10-2017),akuma404 (06-11-2017),Akym (02-05-2017),Alecraft (03-02-2017),Alex S. (06-13-2017),Alexander.Lundberg (07-20-2016),Alexandruu (04-05-2017),AlexGaming6 (06-09-2017),ALEXRUZI (10-11-2016),Alohomora (03-22-2016),alotj20023 (11-17-2016),alphacrit (12-19-2016),alpo1997 (07-01-2016),Alwaysalldays (04-20-2014),amato_masaki (06-29-2016),ammar1993 (10-16-2013),An-Aussie-Troop (08-16-2015),Analbeads123 (07-21-2016),AnalRaptor (06-08-2016),anan4040 (03-24-2016),Ananas3k (10-26-2016),ananinaminasokam (06-30-2017),ancraft123 (06-11-2017),andr3wm (03-23-2016),andrzejpol (06-11-2016),andyhan123 (02-18-2016),andyok (01-30-2016),AndySpam1 (01-09-2014),anhtahaylove (02-14-2017),anonbaka (08-21-2013),Anonymous Users (12-14-2016),AnPrc152 (06-09-2017),ansonchan091 (10-08-2016),antibodyth (08-20-2013),apox12345612 (07-23-2016),AppleJacker (01-23-2014),Ardonious (10-24-2016),ariefhadin (04-06-2016),arkanios (06-09-2017),arkhazel (10-20-2016),arkin02 (05-22-2016),arkonpt (01-15-2016),Aroly (02-18-2017),Arsenik74 (06-16-2016),ARTICWHITE (05-29-2017),aruda1 (08-25-2015),asdaswasdxyc (10-31-2016),asdel727 (02-27-2016),asdf4567 (03-27-2015),AshChuChar (06-09-2017),ashmon (06-26-2016),assd4156a (08-26-2017),assem.123 (05-06-2018),asusrox117 (03-23-2016),ATLFalcons (07-01-2016),auminwgamer (06-13-2016),Aurelie69 (02-06-2017),AuroraIkaros (03-27-2016),AurumWon (07-02-2016),AustiNmedeiros1 (08-23-2016),avihay243 (06-25-2016),Avoomdabah (08-18-2013),axatemus (07-15-2014),AXE_09 (06-23-2016),aybars123 (12-24-2015),Azathos (01-10-2022),Azotik (08-18-2013),babouliegey (05-22-2015),BabyKana (06-09-2017),bacas69 (10-26-2018),BadManHazza69 (10-20-2016),bakajohn (03-28-2016),ballack99 (04-30-2017),balonhouse (10-24-2014),Bangert1337 (04-03-2017),Bangnam (01-12-2016),bankk000710 (06-09-2017),bankmon02 (08-18-2013),Bannana_man (12-25-2013),BANSHE3 (06-21-2020),Bartin1337 (08-12-2015),basedslendy1108 (03-27-2016),Basilikum (07-10-2014),baslnwww02 (10-29-2016),battlespam (05-30-2014),bbs1230 (06-04-2017),BBSNTG (10-12-2016),bcccc (05-25-2016),Bears124 (03-20-2017),beastnozza (07-18-2016),BehemothSlayer (11-08-2015),berk767 (09-04-2016),berkalp1 (12-25-2013),berkemacro12 (08-21-2016),Betrathepker1 (07-12-2016),Bhemmie (11-16-2013),biano11 (08-21-2016),bigballs21 (06-25-2016),bigbrobrennan (01-20-2016),bigdaddy36 (05-08-2014),bigdeath (05-30-2014),bigmaraa (02-02-2017),BilbGame (06-15-2017),Black B (01-30-2017),Black000hawK (04-05-2016),BlackMumba420 (10-31-2016),BlackTubeHD (06-27-2016),BladeCrown (10-10-2016),Bleon (03-28-2016),bloodninja1010 (04-14-2017),Bloodybizkit (07-05-2014),Bloodzzz3 (06-09-2017),blue screan of death (02-02-2014),blueguy (07-19-2016),Bob Saggit (06-30-2017),bob56312 (03-25-2016),bobdude_01 (05-29-2017),bobkiller455 (10-30-2016),bobmeister (12-31-2016),bombe72 (01-09-2014),bonesssj4 (08-12-2014),Bradley0130 (01-22-2017),Bradrh (08-18-2016),brandongage2 (09-02-2018),brave147 (02-21-2016),Bresell (06-04-2016),brt23 (05-02-2016),bruice1993 (11-14-2016),BrutalityBk (10-20-2016),Bubyoz (10-29-2016),Bulgazy (01-13-2014),buliga506 (01-25-2016),buster499 (08-18-2013),Buzzjoykill (11-07-2016),bykaplay (01-25-2016),C7S (01-05-2016),Cactus13 (06-05-2014),caffebomb (06-19-2016),cameronisahacker (12-05-2016),canary0530 (07-13-2016),Caper15 (03-26-2016),Caprafolpa (03-31-2017),CaptainZeldaMan (05-20-2017),carlitron (06-29-2014),carlos06 (06-09-2017),Carmody (07-01-2016),Carson72 (05-18-2017),cbx1200 (01-21-2015),ceeve13 (04-05-2016),cesu (06-09-2017),cha214 (03-30-2016),chais02 (08-29-2015),chancnz (10-09-2016),chanseh (01-03-2017),ChaosRifle (06-19-2015),Chaoticblue3 (08-25-2018),ChargedHat (05-15-2016),charles_lee (07-05-2016),Cheatb1w9w (03-25-2017),CheavyGaming (07-02-2016),cheeeeeese (08-24-2013),chenjunhua (03-23-2016),Chenowth5 (04-26-2014),chevcom (07-24-2016),Chickenz524 (07-12-2016),Chip4414 (11-16-2016),chostein (12-26-2016),chris.cleary37 (11-14-2015),Chris210 (01-01-2014),ChrisDud3 (08-24-2013),cimardi (08-09-2017),Cinimontoast (07-27-2016),cjkempy139 (04-08-2017),ClippySexy (03-22-2014),clklhk (06-22-2014),cloudroy (04-10-2016),cmplxninja (01-10-2016),CN_HaX (08-20-2016),cobet_ (05-02-2016),cocky2014 (07-08-2014),Coironent (04-09-2014),colector (07-06-2016),coles.griffis (07-05-2016),Colinshacks (06-12-2017),Commando45 (08-21-2013),concorde71 (09-22-2015),ConnorDastan (06-25-2016),Coolhosed (12-28-2013),CosmosTV (07-27-2016),Coss55 (02-18-2017),CPUFSB (01-23-2016),Cr1msonk1ller5 (08-29-2015),crash112416 (05-06-2017),crazychad45 (05-30-2016),Creamo4 (08-18-2013),CreamyPotatoes (10-16-2016),creepermodder (05-18-2014),Creepforce2012 (06-11-2017),CrimsonWF (08-09-2015),CrisOnoCris (07-07-2017),cs40kill (12-08-2015),Cuhnyx (06-12-2017),cuntsare cool (06-01-2014),CyberCow (03-24-2016),cyberviv (07-23-2016),Czin117 (06-01-2020),d3adstrok3 (03-24-2016),D5436523 (06-08-2017),DACynder (03-21-2014),daeniel song (09-18-2015),dakeryas (06-30-2014),Dampfwalzenkind (12-28-2013),danads (12-10-2015),DanD21 (06-18-2016),dankbro111 (01-04-2019),DankMan2 (04-07-2016),DankMemesAreDank (09-27-2016),dannymarley (12-24-2016),dannysweg (06-03-2016),Dannyvue (06-30-2016),dante060 (03-29-2016),DaProElite (02-14-2016),Dardous (08-31-2016),Darius27 (01-12-2016),darkdv2 (05-12-2016),Darkhood_Shadow (06-09-2017),darkproject838 (02-13-2017),Static (06-22-2016),Darqxxx (02-14-2017),Dat-Cheater (01-01-2017),davidbowieman (06-04-2016),DavidBSM147 (01-16-2016),daywalker888 (01-07-2014),DBNightlord (01-24-2014),Deadreaper159 (06-09-2017),DearFive (12-24-2013),dearwiths (06-01-2016),deathyyy123 (03-24-2016),decadeten (06-12-2016),DeckGamer15 (03-28-2016),Dedblade (07-28-2016),deecdee (08-15-2016),DEEEEE (02-08-2017),Deegee2 (08-11-2015),DegmanCroat111 (02-06-2017),Delsin West (10-12-2016),Demon hell (03-17-2015),demondays1 (08-21-2013),DemonDeathXD (02-27-2017),demondimitris04 (09-27-2016),DeMoniCaT (08-22-2016),demonscep (08-14-2016),DemonSlayerz (11-22-2016),Denneisk (04-29-2017),denneks (12-12-2015),dennyhb (05-25-2016),DentistCollar (06-03-2016),Dephjay (03-24-2016),Derekthelord123 (01-09-2016),Derider99 (07-04-2016),derXXX (11-06-2016),derzzz (03-27-2016),dessl (01-12-2014),detto01 (09-25-2014),deusx2012 (08-18-2013),devilfo (06-17-2016),Devilrockstar15 (06-20-2016),dewzdavid (03-22-2016),Dexaat (10-07-2017),dezk0802 (08-02-2016),dg1312 (01-11-2016),dghhfdh (12-24-2013),Diablodealma (02-23-2017),dimdocz (02-15-2017),DimitriBlyat (06-05-2017),dingsbumms1571 (01-05-2017),DiskDroid (07-11-2020),DJCut107 (03-29-2016),djhernawan (05-06-2017),DjustaChicken (03-31-2015),DkingsKraken (12-01-2019),doccherry (01-22-2017),DoctorNArwhalz (06-21-2017),doctorzzz (06-20-2017),dogu (06-25-2016),dohen0404 (08-28-2016),domi91111132 (01-31-2014),dominic12001 (10-01-2016),Dominik Fate12 (06-10-2015),domzamak (12-16-2015),donat5555 (06-07-2016),doomdiedeath (06-19-2016),doomish (07-06-2014),Dosanjh71 (01-04-2017),DR.agula (03-24-2017),Dr.Sniklebits (07-05-2016),dracojoe (02-03-2014),dragoboi (01-26-2017),dragoncrusher (09-13-2015),dragontheif (06-22-2016),dragonul201 (06-09-2016),Drakonen (08-22-2013),draxible (11-15-2016),drdenice (08-22-2016),Dreamup (07-01-2016),drick6088 (04-04-2016),drnkintiga (06-20-2016),DrugDe (04-13-2014),dsplayer2 (04-20-2017),dsw2552 (04-22-2017),duarteduu (06-10-2017),dushkaiwepeda (07-09-2019),duyprovipwe (06-05-2017),dvir477 (08-21-2013),Dwamm (04-04-2017),dylan13127 (04-02-2016),Dylanrad (06-27-2016),e12345 (03-31-2016),eachlabaden2 (09-21-2016),Edge7870 (12-05-2013),ediblecrayon (11-15-2016),ekler322 (05-10-2016),Eldynn (10-04-2014),ElektroNiggo (10-14-2016),elgoog32167 (04-04-2017),elmoxito (06-11-2016),Elocrypt. (11-03-2016),ELSaDR (08-21-2013),EltonSetan (06-29-2016),eMotionSs (06-11-2017),emptylife123 (06-17-2017),Enigma1196 (05-25-2016),eNvii92 (06-30-2014),EPEG (01-08-2017),epikmane (02-15-2017),erdogansungu (09-21-2015),erec_2 (04-09-2016),ericchance6 (10-01-2016),ericmssilva (06-11-2017),ErosCald (06-21-2015),Esuo (04-11-2016),ether96 (04-11-2016),eun1446 (01-23-2014),Evgobanga (06-24-2016),evilmulligan (08-18-2013),exadiotic (06-25-2016),existentia (06-29-2016),Exogen (10-31-2013),Extremis21 (06-29-2016),ezpz910 (03-20-2016),Fabi003 (10-13-2016),fahud (12-27-2013),fake555 (01-22-2014),FakeLife420 (03-14-2018),Faruko (06-10-2016),FatherMohagen (05-31-2014),FATIRAL____ (07-09-2019),fazejevs25 (06-12-2016),Fearzing (05-20-2017),Feiyang (10-15-2016),ferasatamny (08-25-2014),FernandoBrazao1 (05-08-2016),fhjlb3urwu3h4kj (06-03-2020),fileshare86 (01-12-2014),filip2mac (08-22-2016),Filipedmc (03-08-2015),filipinoako1 (01-22-2014),Filjo1 (08-14-2015),FINALxDIVINE (05-07-2017),Firehound210 (04-17-2017),FireHound23 (07-11-2016),fireking2018 (06-27-2015),FiveNine (06-18-2015),Fizzka (09-07-2019),Fizzman (06-22-2016),Flare_ (05-09-2016),flatbedotr (12-05-2013),Fleshmestervs (02-20-2014),Florian GFBi (04-28-2016),florian973 (02-10-2016),floro123 (06-23-2016),flowmc96 (06-29-2014),Fluffy-Husky (01-09-2014),flurke (10-31-2016),Flutes (06-18-2015),Forceguy (01-19-2014),forfor1 (06-21-2015),fosdark (05-08-2019),fosyxhd1 (06-12-2017),Fotic1314 (07-21-2014),Foxbit (11-04-2016),foxehcutie (10-17-2016),Fr0gee (06-13-2016),Frankie2001 (10-23-2016),Franklin'c. (06-03-2016),fred27400 (12-17-2016),frederik2109 (04-07-2016),frenchkids (06-26-2016),FREZZNEZZ (09-04-2016),Frostkniffe (08-14-2016),ftFrosty (11-16-2013),fuckingkillme (09-17-2016),FullGaamerBR (06-09-2017),furball77 (06-24-2014),FutureSnow (07-06-2015),Fuzzlefluff (08-04-2015),fuzzybutt99 (02-09-2014),fxxkzai (06-09-2017),g51214219 (06-26-2016),GabrielRoger (08-18-2013),gadfsdgfs (04-15-2017),GageB (01-22-2014),gallbaran (08-30-2016),gamerc13 (01-21-2014),gamersdaner (03-27-2016),Gangaspecial (11-19-2013),gangsta700 (09-29-2016),GatitoGamer (06-24-2016),gbpackers (01-08-2020),gcartena (11-17-2013),generalvan (05-06-2017),gengjian (04-27-2017),genz00 (01-10-2016),Gestz (03-15-2017),GetYamchad (08-25-2016),gg9kentucky (10-14-2016),ghost2464 (07-18-2014),GhostOfSaints (06-09-2017),ghostridercool (08-29-2015),Gi4nt (08-18-2013),Gladeo123 (02-20-2015),glubsglubs (09-09-2016),goddogza (08-20-2013),godfatherrrs (08-20-2013),godlike6969 (04-19-2016),Godzilla310 (04-04-2016),gohjo (07-11-2016),Gokdeniz67 (08-24-2016),goodkiller4o (09-27-2016),Google_Faith (02-03-2016),Gopnikgabe01 (05-26-2019),Gorbalgamot (04-02-2016),Gothshroud10 (06-24-2016),goulmaster50 (12-12-2016),Governator (07-13-2014),grafik1231123 (01-25-2017),GraouGraou (04-05-2016),Graugs (07-31-2015),Greyhound-HD (08-19-2013),GrooseMan (06-28-2015),gthgodji11 (06-30-2019),Gubbels (04-08-2017),GuillaumeXD (10-11-2016),guiwuzhe (04-09-2016),gustavorigames (04-13-2021),GWSEGYWYGHwyw$%$^t4 (03-31-2017),gzw3388684 (01-18-2017),H4rdC0r3N00b (01-04-2017),HacknJack (05-18-2016),haesung98 (04-11-2014),hafijut (03-13-2016),haohaoone (06-26-2016),Happy Ghost (07-27-2016),harmondale (01-26-2014),hasancan1642 (07-10-2016),HATEHtrhrsthsrththrdthrth (02-14-2016),hawwaon (04-21-2016),Haze{ (08-12-2016),haziqtiger (07-24-2016),HEATFS (05-09-2021),hedghok (10-16-2016),heinrichsanton (01-16-2016),heistman69 (08-19-2013),HelKara (12-09-2016),helloworldl33t (06-10-2017),hennim2 (01-03-2015),Hex332 (06-10-2017),Hezzium (11-11-2018),hibansito (04-10-2016),HideOnVIP (12-12-2016),highlifesb (03-28-2016),hillbillyd (03-25-2016),Himy (01-23-2014),Hisagomaru (12-29-2017),hitboy99 (07-20-2016),Hithere21 (08-19-2013),hmpbx (02-25-2017),HoLeeShit (10-05-2016),holeinone1968 (12-13-2014),holjoin (06-24-2016),Holytitterino (07-13-2017),HooDiergod (04-10-2017),hsyzd (08-18-2013),Huaaa (01-16-2016),Hunter~* (06-21-2016),Hurakan (12-02-2017),HyperVoice (06-03-2015),iamkennys (12-09-2016),iamnotlol (06-21-2017),IAmRunner (06-18-2016),icarocaldeiragomes (11-17-2013),iceBabyice (12-05-2013),Ichigokuroneko (04-04-2016),iCuppable (04-05-2016),id4zs2008 (08-26-2019),IDPVGMU_021 (10-19-2016),igor01 (05-29-2017),IIZerohero (02-12-2017),ikhlashcool (05-21-2017),ikolloki (04-15-2017),Ikthemon (02-18-2014),iliya1375 (09-15-2015),im2happy4u (04-01-2016),ImInsane (08-19-2013),imlucifer219 (03-04-2016),ImportedGoods (04-01-2016),imsherii (12-09-2013),ImSoRekt (01-10-2016),iNcre (10-06-2017),Ineedthis321 (04-19-2016),ink330 (12-07-2013),inventanahora (04-08-2017),InvsKla (07-06-2016),inzaghi8020 (01-12-2016),IPerMa (10-28-2013),ir1sh (01-11-2014),ironboy68 (06-10-2014),irPdx (05-04-2016),isaacay (03-30-2016),iseigimaru (11-26-2016),ISellGrapeSoda (12-17-2016),IsloreJR (11-15-2015),ISoTxNinja (07-04-2016),istvan1999 (10-19-2016),itachpower (05-11-2016),itsapelife (12-08-2016),itsdadkidz (06-21-2016),ItsJknap (03-12-2016),IvaNoS_n'Tc (03-28-2016),ivanzx01 (03-21-2015),I_Jellyfish (04-20-2016),jac88 (01-23-2014),JACELSO (04-24-2016),Jack'o9 (10-08-2016),Jacko3603 (01-14-2016),jakechapy (05-22-2016),jakob3434 (01-28-2014),jalknight (06-15-2016),jamesingame (10-22-2013),jamesmetallica (01-02-2017),Jammuj! (05-16-2022),JardiCP (05-21-2020),jasman43 (01-17-2016),JasonCheng94 (06-30-2016),jaymo1011 (02-03-2017),jayslize (12-29-2016),JDorian (08-09-2015),JEKA_346 (01-06-2014),Jemyelnegm (08-20-2016),jeni1122 (12-21-2023),jensro (06-04-2019),Jeruk (06-11-2017),jesssiiaaa (11-01-2016),jezz317 (07-28-2016),jiguja (01-18-2016),jimba97 (04-07-2016),jimmydark12 (10-17-2016),jiunnwoei2629 (06-21-2015),jiwar (01-08-2023),jlaiii (08-27-2016),joboythekid (04-30-2017),Jock257 (02-26-2016),joeb779 (11-01-2013),joebobo (05-12-2016),JoeJohns0n (10-30-2016),joeliskae (07-02-2016),Johnconstanting (04-03-2016),johnmaz (11-09-2017),johnny113 (10-05-2016),JohnnyCool (08-20-2013),joker680 (08-20-2013),JoKeZ1999 (04-06-2016),jon9961 (04-13-2016),jonahboy4949 (08-21-2014),jordaneagle220 (07-08-2017),judopak222 (10-30-2014),juhlin132 (01-15-2017),JumboMango (10-09-2016),jumpkung (06-11-2017),jungleking (01-28-2017),junsheng1987 (10-19-2016),junyuanwee1 (04-06-2016),Just4nt0 (12-02-2013),JustAGG (03-25-2015),Justin6290 (10-21-2013),justinwho (06-25-2016),j_sin10 (09-04-2018),Kaanahmet070 (03-29-2017),KAD256 (01-05-2014),kaeta3248767 (12-21-2014),kagan1416 (08-18-2013),KalasniKKov (06-22-2016),Kalgon (03-27-2016),kan66666 (10-16-2015),Kangabuscus (06-23-2016),Kast262 (06-01-2014),kavinlnw345 (10-14-2016),kecoy (06-09-2017),keewenbing1122 (04-09-2017),KenLEF (04-14-2016),Kerchdog34 (06-13-2016),kertenkel (08-19-2013),KevlarMen (08-24-2013),khaihi19921992 (01-08-2017),Khalord12 (02-05-2020),kharkose (01-02-2018),khaseem (12-28-2015),khcap12 (05-21-2017),Khrazer (08-28-2014),killbody11 (01-25-2018),KILLERCAT11 (08-21-2013),killerdany666 (10-10-2016),killforce420 (09-01-2016),killu2day (06-27-2016),kimbou123 (07-02-2016),kiraryoma (06-20-2016),kiri95 (01-03-2017),Kiritohack123 (06-10-2017),Kleinerwicht (07-30-2016),KLNV (06-08-2017),knk2006 (08-24-2013),knpang (01-06-2016),kocka999 (06-10-2016),Kokaiin (07-09-2016),Kolbium (05-12-2017),Koneko21 (08-03-2016),Konndzziu (01-21-2014),konokai (04-08-2017),kooldude224 (03-06-2021),korn2530 (06-02-2016),kowpatt (07-22-2016),kr4wy123 (06-25-2016),krazysteve33 (01-22-2014),KRNNam (06-16-2016),kronok (03-07-2014),kthao091 (08-26-2016),kubilaysenoz (05-30-2014),kubinator22 (11-01-2016),kungfulouie (04-18-2017),KUPAPL2 (11-26-2016),Kuqa (05-16-2014),kuthoer123344 (11-06-2015),kvn42391111 (10-23-2016),kygenbagels (03-25-2016),kynastgabriel (07-15-2016),l0wbii (06-20-2014),lainq (08-21-2013),lam (08-24-2013),laoensijupai (09-14-2016),larissan321 (08-30-2016),lasso1222 (05-21-2016),LastPhantom (08-22-2016),Latice (06-07-2015),LatiNKinG (12-27-2013),Latras (04-05-2017),lauwz (07-10-2016),layolan (01-26-2014),lazybum12 (10-26-2016),lechien13 (03-01-2019),LeeandKO (06-25-2016),lee_terry_jr (08-20-2013),LegionParagon1 (04-15-2019),Leguaani (04-23-2016),lelhax (03-04-2017),lemontemin (03-22-2016),LenaIRene (01-14-2016),Lenchpock (08-22-2013),leon212 (04-07-2015),leonardoreal (08-18-2013),leonWillgeldMama (11-28-2016),Lepillus (07-25-2015),Lersi (05-01-2016),lestalricsi (01-26-2018),LeStorl (08-20-2013),LHGaming (01-14-2016),LHPRO (07-04-2016),lichphillip (02-26-2017),Ligefeu (10-19-2016),likeapro123 (06-07-2016),likeing13 (03-21-2016),lilgunts (08-09-2016),liltbagz (06-25-2016),LimezZ (06-29-2016),littleapple890 (08-20-2013),LizardGamer (10-01-2016),lizuki (07-31-2017),LokesLight (05-31-2014),Lokuraah (07-21-2014),lol123xb (03-28-2016),lolalendy (04-14-2014),Lolarn123 (07-31-2016),lollobol (11-21-2016),lollols94 (06-28-2016),lombress (05-09-2016),LOmon 1 (10-15-2016),lonewolfpro01 (07-11-2018),LookingFO (01-11-2015),looperploom (05-31-2016),lopio1234 (06-14-2014),lorenzovonmatterhorn (06-28-2016),LortFaze (03-23-2016),love08108 (08-05-2016),LOVEFTY (09-14-2016),lovi000 (06-08-2016),lowkey1736025 (06-27-2019),LSPDOfficer357 (07-17-2019),Lubo123456 (06-10-2017),luc08745 (11-18-2016),luca2345 (03-26-2017),lucas1990 (04-26-2016),lucasdr4 (05-31-2016),lucaswfr (10-11-2016),Luciel (06-09-2017),Luin88 (07-25-2014),luissuper (01-13-2016),lukajovan (06-11-2017),LUNA_ (07-14-2014),lunlokkos (01-27-2017),lxArchangelxl (11-02-2013),lxxabxxl (06-10-2017),lynou (05-14-2017),lypematos (06-26-2016),lzhxwmr (08-13-2015),M,a,t,t,e,o (08-15-2016),M3ndez (07-30-2016),M4rciZockt (05-17-2016),MAC! (04-03-2017),Machy1000 (01-11-2016),mad1man (04-21-2016),madmouse1988 (01-26-2014),mahawksee (12-23-2016),malvinprayoga1 (06-11-2017),malypsiak (12-26-2017),manhdungnguyen1406 (06-22-2016),manymc (06-13-2017),Marc0504 (08-12-2016),marcthai (01-23-2014),mark1222 (02-14-2017),markeloff789 (03-19-2017),Marnotor (08-01-2016),Martgest (08-19-2013),mason123123414233 (01-12-2016),masslove (03-15-2017),Matesuti (06-19-2016),mathenoob (02-19-2017),matheussemler (03-26-2016),mattkjx (01-03-2017),MattyMaty (11-30-2015),Maudiy (05-09-2016),max14705 (03-28-2016),Max499 (08-26-2015),maxaquin (10-08-2016),Mayze6 (06-26-2016),MeanY3004 (08-18-2013),megaphoneuser456 (02-09-2017),Megarzen (01-21-2017),MeloYooYoo (06-26-2016),MembersOnlyClub (06-11-2017),Menthy (07-02-2015),merciermercer (01-17-2016),Messier17 (06-03-2017),Metholatium (01-25-2014),metoroido_dx (02-25-2016),michelia (01-18-2017),Mikeeeg (09-21-2016),mikeonline (06-17-2016),mikepaokara (07-08-2014),mikey64 (06-10-2017),Miku_Ghost (07-05-2016),MineBlock101 (02-27-2014),Mineku2156 (08-29-2016),misterdopoker123 (04-16-2016),MisterXeeL (09-01-2016),mixindy1 (07-05-2020),Mixon123 (04-21-2016),MK228 (06-11-2017),MMROcha (06-24-2016),mohmedx20 (08-10-2016),moja.jst (06-10-2017),Mongolete (03-21-2016),moomoo_potato (06-28-2016),Moonerunit (09-12-2016),moonstnoe (03-11-2014),Moooon (03-27-2016),moosey33 (11-20-2016),morek1 (06-26-2016),Mortelle (10-19-2013),moustique (05-15-2014),mp1601 (09-18-2016),MPP David (06-23-2016),Mr.Lee (06-04-2017),mrdeathita (12-05-2013),MrFrostie (07-15-2016),MrGalaxyTR (06-13-2016),MrGreek (01-22-2014),mrknuti (06-10-2017),mrmonkeyman (02-25-2017),MrStateHD (05-16-2016),mrunknowngaming (02-24-2016),MrzK (12-27-2017),Mr_Boy (07-23-2016),msdmsd (08-24-2013),Msevolf (11-16-2016),MultiHhAa (08-10-2014),MultumEuphoria (05-09-2017),murad661 (03-08-2019),Murloc456 (03-05-2017),muslimii (06-25-2016),myfia007 (03-21-2016),Myneron (06-11-2017),mysteriusCZ (06-11-2017),N@3124 (01-21-2016),naclag (08-18-2013),Naga Api (06-12-2017),Nagasaki39 (04-13-2016),NagashKK (11-29-2018),nainexus9 (04-16-2016),nameLee (01-20-2016),naurisfox (01-21-2014),navolt (10-15-2016),navy676aw (06-21-2016),Neelix (02-25-2014),nelson96xd (04-19-2016),Nenz77 (03-21-2016),Neo1991 (07-11-2021),neo2remeber (04-24-2018),NeoxSpartaz72 (03-25-2016),Nerine (07-26-2016),NeroFx (11-24-2016),neteiskam123 (07-09-2016),networker12 (11-09-2017),NeverExcede (04-26-2018),newkidb (03-27-2016),nguyentiendatpro3 (01-15-2016),Nico2550 (12-10-2013),nightr (06-04-2020),nigith (11-30-2013),nikosslim (02-10-2016),ninja2984 (09-09-2014),Ninjal3unny (07-04-2014),Niovis (06-12-2014),niro1993 (01-25-2014),Niviix (08-16-2016),njaguar (08-19-2013),NJzTemp (05-24-2017),nobedjakis (06-09-2017),NoGoZone (10-12-2016),noimnotok (07-23-2016),noness (01-23-2014),noobyara (12-08-2013),Noodlej15 (10-21-2016),NosferatuHisham (02-08-2017),nosscrack (08-26-2016),nournaz159 (12-11-2015),novalyfe565 (07-01-2016),noxErRR (12-13-2017),Nsofreeman (10-11-2016),nurru47 (07-05-2016),nutleopard (06-09-2017),Nyancat114 (06-25-2016),nycteus (02-24-2017),NyskLin3 (08-24-2013),oatmomo163 (09-05-2014),OCB2007 (10-19-2014),odesa (03-11-2019),ohmdeli007 (10-20-2016),okamiden12 (05-21-2016),Okarin-san (03-12-2017),OkDweebo (04-30-2016),okher3 (12-23-2019),olo11 (08-09-2018),om3ga123 (06-24-2016),omartinica (07-21-2016),omgftw (11-04-2017),onehandshackwow (01-13-2016),onemansp127 (07-11-2016),oneritchieson (03-19-2016),Onlinelord (04-01-2016),onuir (04-14-2017),Onurga (12-04-2016),OraNaruto (06-17-2017),orhun0088 (06-24-2016),Orion139 (06-05-2016),osabrasil (11-24-2013),osamaking2013 (10-03-2014),Osiris0903 (03-29-2016),owen12345 (05-31-2017),owned4good (06-09-2016),OyN-Anonymous (09-05-2015),ozone112 (05-07-2017),Paco Gumm (06-20-2016),panico0 (07-04-2016),panther34121 (12-04-2016),PapaFaggot (09-06-2016),Pasorin (04-30-2016),patou316 (08-22-2015),patplaypl (11-04-2016),patrickhhh (10-25-2018),paulliii (11-20-2016),payday60 (02-17-2014),paydayrex (04-02-2016),payskill2 (10-20-2016),pedroska (06-10-2017),Person567 (10-16-2016),pesamaros (11-23-2015),Peter Smitten (03-12-2017),Petko456 (06-05-2016),pewpewforyou (03-05-2016),Phant0mFACE (04-13-2016),phantom99 (07-13-2016),phrozyn (07-31-2016),phucketbucket (07-06-2016),PiCharts (05-05-2017),pinto157 (01-06-2017),pirilo125 (08-21-2016),pistol1303 (06-29-2016),PlayerUnknownXD (06-12-2017),playPMMB (05-28-2017),pleasegofuk (10-03-2016),Plotx (07-01-2016),podfacekcl (06-09-2017),Pokerozz (04-09-2016),polokrik (07-05-2014),poopoo2122 (02-01-2014),poopychips (08-13-2014),poppy0012 (06-27-2016),portador (03-23-2016),powerup4g (06-23-2016),powerwing1 (06-07-2016),pratza1456 (10-24-2016),PrimalDerp (03-08-2017),PrinceNoir (09-22-2023),Proasian360 (11-12-2016),Prokse (06-06-2016),proskate101 (12-20-2015),psickle (04-09-2017),Psyc0p4T (11-11-2016),puggles101 (01-16-2016),putter055 (09-22-2016),q221172839 (02-12-2017),qazxwsxc212 (11-07-2015),QQhizi (03-19-2018),QuadDamage112 (12-27-2015),qwa4099 (09-24-2016),qwekio2 (02-07-2016),qwhost (08-18-2013),qxqxhahaha (12-30-2016),radcro (07-04-2015),Raevex717 (01-09-2014),ragaza341 (06-04-2017),Rakksay (08-18-2016),RalfasLTU (08-19-2013),RAPHARED (05-22-2016),Rares9912 (06-24-2016),rasor (01-27-2016),Ratanakno (06-08-2017),Ratfacebag (10-13-2016),raven2013 (06-20-2014),RavicOtter (10-29-2016),raxs08 (02-19-2014),raymondmorfe23 (06-22-2017),Razorgaming (03-27-2016),razul (06-22-2016),Razzmuzzful (03-29-2016),rdslive (10-26-2014),realfirept01 (03-30-2016),Recker554 (04-13-2017),Red Like Roses (04-26-2020),RedBulletSLO (06-12-2017),Redman209 (06-30-2014),reekxd (06-08-2017),REGERhgaerherhrh (08-15-2016),rekklez (08-14-2016),ReleaseZeKraken (05-16-2014),REMALEMAD (08-14-2016),remedyz (05-16-2017),renegadeer1 (04-21-2016),revlaka (06-10-2017),Rexus204 (05-17-2019),rhdro002 (08-20-2016),ricasdc (02-10-2017),RiceBunz (11-15-2016),richard950830 (06-11-2017),rickybobby213 (12-01-2016),ricsi10 (06-08-2017),RiflemanSis (08-03-2016),Rinzler296 (01-15-2016),Rivendell (10-31-2016),Rob Penn (08-10-2016),rocky ghosh (01-26-2015),rocky9687 (03-27-2016),rokje (02-09-2014),rondo600 (10-24-2015),Roseby (08-19-2013),rossifumi46 (08-18-2013),rot07149 (04-03-2016),Rousseau (11-27-2015),rp4k (04-06-2016),rrrroooo (01-15-2016),RSDarki (06-05-2016),rsmatd (06-25-2016),rufus46 (04-12-2017),runeman121 (09-19-2014),Ruri_Gokou (10-09-2016),RussiaZ (05-21-2016),RyanMonkey (03-16-2016),Rystke (07-08-2016),S.P.D (03-17-2017),s3kShUn8 (01-24-2014),S3v3nDa1 (12-21-2016),s4hack (06-09-2017),sabregoalie (01-05-2016),sadeathoughts (08-19-2016),saibier2 (06-18-2016),Sakura_Fame (03-30-2016),Samaryum (11-07-2015),Samukas (11-23-2013),SamuraiTunaPenguin (11-21-2013),sanderriska (05-21-2017),Sashonoob (11-16-2013),Savage621 (02-27-2017),Scharfed (05-02-2017),Schotte (01-16-2017),ScolextheMaster (07-21-2016),sdkfz212 (03-21-2016),sebisebi2013 (06-09-2017),SeDeYkA (06-04-2016),selfishfred (11-07-2016),Sendrei34 (04-30-2016),septian120 (02-24-2016),sequek (04-10-2015),sergeantgiroo (04-08-2016),setentaedois (03-30-2016),sexbad (10-17-2016),SgtMoens (06-11-2017),shadowfox1999 (06-19-2016),sharko1234 (04-08-2016),Sharky23 (01-23-2016),shefoooo (06-29-2015),SHEHHREHJ (06-23-2017),Shiningblade (12-16-2013),shiro0 (03-26-2016),shirolong (03-25-2020),Shlagvuk (11-20-2016),Shora (06-16-2017),sigmaetarhov (06-10-2017),SilvioGames (08-08-2016),Simon1505 (08-20-2013),Simonitorufer (06-19-2016),SimplyAllen (05-07-2016),SinuSKilleR (07-02-2015),SirHomePhobe (08-19-2013),sizoo100 (08-19-2013),sjaakftw16 (03-20-2017),skidrowpk (08-19-2013),skinrow (10-15-2016),sknerus57 (08-10-2015),Skroothe (10-18-2016),skullkandy2014 (03-09-2014),skybro12 (09-20-2014),SkyfireID (12-10-2018),skykung1 (11-07-2015),SLAYERab (03-19-2017),slep (08-18-2013),sluggyp (01-28-2014),smanos123 (02-06-2016),Smiragol (01-10-2016),snakevomit (02-23-2014),Snapple_apple (10-22-2013),Snobilik (01-24-2014),SnowBall500 (12-30-2013),SOBBOYZ (06-24-2016),sohzd1234 (07-02-2016),sokol0526 (07-21-2016),soldatulportocala (12-30-2019),solidsnakeneo (01-19-2016),somedouchebag (01-22-2014),somethingins4ne (04-02-2016),soneca622 (07-06-2014),sonicboomx45 (07-13-2016),SoniiczzM (06-14-2016),sonosabers (10-07-2016),Sonsofanarchy95 (06-08-2017),soponge (03-24-2016),Sourenics (06-25-2016),Southflyer123 (07-03-2016),space52 (06-23-2015),SpaghettiOs (02-03-2017),Spartan4040 (10-09-2016),speedblazin (03-09-2014),speed_infected (06-10-2017),spinkaiclenaz (12-28-2016),Spuner (05-28-2017),St3yn012 (04-25-2016),StanGer (12-30-2013),stewardlanu (06-24-2016),sticknuts (01-24-2014),Stoned94 (07-28-2016),stott (04-06-2015),stoxmel (11-20-2016),strutnoddy (07-09-2016),sunkingthe2 (12-31-2013),superexboom (02-08-2016),superhahaha (07-04-2016),supericeman3 (10-12-2016),SuperSevenSide (06-14-2014),superxplodz (12-29-2016),surendre91 (10-18-2013),surfix24 (07-15-2017),suxumuxu (04-17-2017),swaglikemieke (05-14-2017),Swampy53 (06-04-2017),swarnob93 (01-03-2014),Sweetea17 (07-28-2016),swiftx3 (08-24-2013),syxsyx (08-24-2016),szogyenyi (02-09-2014),T!BIRD (03-24-2016),tacoman452 (08-15-2014),Takarm (07-29-2016),TakeuchyBR (08-12-2015),taksinzaza03 (06-23-2017),tamtato (12-15-2015),Tanapong113 (01-02-2020),taracefdp (07-04-2016),Tazerfish (04-17-2021),tejster24 (06-07-2016),Telz (03-22-2016),terrathegod (06-18-2016),TFHav0k (01-22-2017),TGPNade (04-18-2016),Th3Quantum (09-07-2016),That Guy0056 (05-07-2017),ThatBenderGuy (01-29-2017),theagnet47 (04-29-2017),theblackmm (06-26-2016),thebuttmunch (09-15-2016),TheCassianator (08-09-2016),TheComet (02-01-2017),TheDemonShadow1 (06-24-2018),TheDinglester (04-08-2017),thedirtmeister (11-05-2016),TheDominator2539 (01-27-2014),THEduchino (06-11-2016),THEEOD (07-30-2015),TheGreatMerlin (04-11-2017),theken111 (04-18-2014),THEKILLER5559 (06-23-2017),thelastroom (06-22-2015),thelegendiseenhacker (06-10-2017),TheLoneWolf (06-26-2016),theninglovelove (07-01-2016),TheOwlsKeeper (05-02-2017),theprobro (07-26-2016),TheRaptorr (06-18-2017),TheRealDK (06-05-2016),TheSwat14 (08-07-2018),thetimeless (07-12-2014),Thuunder (08-20-2013),Thuvias (07-02-2021),Tiduc (08-19-2013),timmitchell645 (01-20-2015),timothy54 (03-17-2017),timurvsb (06-11-2017),Tinky_winky (06-17-2016),TiszaG (03-20-2016),tobyderking121 (08-20-2016),Tokyo ghoul (04-05-2016),tomisko56 (01-21-2014),tomotinn02 (05-25-2016),tonynguyen215 (06-11-2017),topyo (08-20-2013),Tr3ader (12-27-2016),trailz24 (12-01-2013),trevor155 (12-01-2016),tripoley123 (11-14-2015),Troddie (06-07-2014),Try92 (07-05-2014),ttp2 (11-07-2015),tubero22 (06-28-2014),tunderair2 (08-20-2016),tunganh03 (06-23-2016),tungsonvuive2 (04-30-2016),tuniakcalvo5 (04-14-2017),tuning20012 (10-22-2016),TurdBurglar (12-30-2016),tuxedoslop (06-30-2016),twister.50 (06-25-2016),tyriales (06-09-2017),tzamakos (03-21-2016),Ucozol (10-14-2014),udiGamer (07-06-2015),UdonSoup (03-28-2016),udzhin (01-16-2016),uG Nein (11-12-2016),Ultra Troll (11-01-2016),ultracheese (05-28-2019),UltraLord007 (08-20-2013),UlyssesXYZ (06-10-2016),umkc3 (07-31-2016),un00b_EST (10-28-2016),user_uc (06-12-2017),usuario000 (07-05-2014),vagankevin (04-09-2016),Vain12 (11-24-2020),vanillaice91 (01-07-2015),Vaunty (12-28-2013),vaziri (03-02-2017),victot20 (06-09-2017),viewred1 (09-28-2016),viniciodss (11-15-2016),vitagox (07-13-2016),vladgluhih (01-17-2014),vlthk (02-17-2016),Volk_J (05-11-2017),VooDoo Mas (05-30-2016),vortex775 (08-25-2018),votm (06-11-2016),Voxxy (08-24-2013),vtv610610 (08-23-2013),W3BBBBB (04-03-2016),wafcoop (07-28-2015),waffyman1 (04-30-2016),wayoflight (03-03-2014),weed-sport (04-02-2016),weedvn23204 (06-12-2017),weirdsantatroll (06-30-2014),WFXKMP (06-14-2016),whythefuckdoIhavetodothis (11-09-2016),widow97 (07-18-2016),wigunaajoeszs (06-10-2017),wildvald (03-20-2017),wildwildwest (02-03-2017),Wiligan (08-18-2013),WilliamRiepe (12-31-2013),Wingflare (12-20-2016),WingsForNaxii (06-21-2015),winterkow65 (06-05-2016),WipSiFiiS (08-10-2016),wjj369123 (06-11-2017),WLGx1337 (03-24-2016),WlolilolW (06-30-2019),Wolf_ITA (10-16-2016),WoodenHero (05-14-2017),WorckShat (03-24-2016),wyrmslayer1337 (06-08-2017),X8x8L (10-15-2016),xader6 (08-18-2013),XAKI (04-09-2022),xathexis (03-22-2016),xbondx (11-06-2016),xcrayzor4x (04-11-2017),XDanielius (03-22-2016),xdavid678 (10-28-2016),xdtylerw (01-11-2016),xfksxrazor (07-06-2014),xiang5 (06-29-2016),Xivos (06-03-2014),xledx (12-15-2019),xLittlepip (03-14-2014),xonar4 (06-09-2017),Xoulif (06-24-2016),xpastek (04-21-2016),xPsychoPatx (06-15-2014),xRapid99 (10-16-2016),xShahar63 (06-10-2017),xtreamsky15 (06-12-2017),xuanmai (12-30-2016),xxfrozticxx (07-05-2014),XxMeedoxX (06-10-2017),xzrezzcs (06-09-2017),yeborrm (05-19-2017),ynon1011 (11-16-2013),Yo06Player (08-23-2013),yoke11 (08-26-2016),yolko21 (12-28-2019),yoshi2sushi (01-12-2017),YoungSheepy (08-31-2016),Yourmomxe (02-28-2017),yoyoking117 (08-19-2013),yuekuanghui (05-13-2016),yugn (06-10-2017),yulejunliang (04-10-2017),yuri122748 (10-04-2015),Z-Nation (01-22-2014),zaaaa (05-29-2017),zabraham (08-19-2013),Zabryskie (06-09-2017),zAcrox (04-20-2017),ZambieSKZ (11-20-2018),Zane Sorensen (10-03-2016),zanoocchl (08-20-2013),ZarkBit (06-15-2017),zatoxx (08-24-2013),Zehut (01-11-2016),zelet (09-10-2016),ZenTium (06-09-2017),zero2509 (08-27-2016),Zh1ck (11-10-2015),zhanglianyu (01-14-2017),zKoala (05-09-2016),ZombieZ500 (05-31-2017),zoom1991 (08-18-2013),zthemortal (07-07-2016),zz18769298926 (07-01-2016),zz58581 (07-11-2015),zzdubs (11-01-2016),[DMOK]Nick (06-29-2018),_Michelangelo (01-21-2016)

  3. #2
    Metholatium's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    1
    My Mood
    Stressed
    can you tell me or link me that gives me a tutorial on how to use this. Thanks

    Edit, did some further searching and found what i needed
    Last edited by Metholatium; 08-18-2013 at 02:33 AM.

  4. The Following User Says Thank You to Metholatium For This Useful Post:

    xXlewIceXx (06-29-2016)

  5. #3
    Azotik's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Nice work dude

  6. #4
    MixNova's Avatar
    Join Date
    Jun 2012
    Gender
    female
    Location
    90th Floor
    Posts
    123
    Reputation
    10
    Thanks
    2,060
    My Mood
    Dead
    I'll add all the scripts into script.lua and update it when more come out or if some get patched.
    Last edited by MixNova; 08-18-2013 at 04:51 PM.

  7. #5
    thewhitenigga's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    476
    Reputation
    20
    Thanks
    40
    My Mood
    Yeehaw
    Quote Originally Posted by MixNova View Post
    I'm trying to find out instant drill
    You can simply use the lin trainer posted here,it works witout any issues
    Edit:I can't get the job spawner to work.something may be missing can someone tell me how to set it up?
    Last edited by thewhitenigga; 08-18-2013 at 06:27 AM.

  8. The Following User Says Thank You to thewhitenigga For This Useful Post:

    yy9ui1 (08-18-2013)

  9. #6
    LeRaz0r's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    91
    Is there anyway to directly SET your current $ Value? Or increase the offshore?

  10. #7
    MixNova's Avatar
    Join Date
    Jun 2012
    Gender
    female
    Location
    90th Floor
    Posts
    123
    Reputation
    10
    Thanks
    2,060
    My Mood
    Dead
    They set amount has been patched, but you can add cash and it also adds to your offshore.
    managers.money:_add_to_total(9999) or managers.money:_set_offshore(9999)
    Quote Originally Posted by LeRaz0r View Post
    Is there anyway to directly SET your current $ Value? Or increase the offshore?
    Last edited by MixNova; 08-18-2013 at 04:49 PM.

  11. #8
    BACKD00R's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Brazil
    Posts
    10,711
    Reputation
    1814
    Thanks
    31,902
    My Mood
    Aggressive
    Approved!!!!



     

    Skype : BACKD00R-MPGH

     

    • Contributor: October, 31th 2011
    • CA BR Minion: January, 03th 2012
    • CF AL Minion: April, 07th 2012
    • CA Minion: April, 15th 2012
    • CF Minion: July, 03th 2012
    • PB Minion: January, 25th 2013
    • AVA Minion : February, 02th 2013
    • Arctic Combat minion: April, 03th 2013
    • Warface Minion: April, 03th 2013

    • Minion + : July 08th 2012
    • Moderator : January 21th 2013
    • Global Moderator : August 1st 2013







  12. #9
    Atari1337's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    1,261
    My Mood
    Bored
    Awesome job compiling all these! Do you have a recent LUA dump of the game?

  13. #10
    ogR1sH's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    8
    My Mood
    Psychedelic
    I made a function you can use to add as many of all specific items you want (Because "-- Everything But Weapons" spams loot cards which gets you alot of maybe unwanted money or attachments). Enjoy!

    [HTML]
    -------------------------------------------------------------------------
    -- GiVE iTEMS ("masks", "materials", "textures", "colors", "weapon_mods")
    -- example: giveitems( 50, "masks")
    -------------------------------------------------------------------------
    function giveitems( times, type )
    for i=1, times do
    for mat_id,_ in pairs(tweak_data.blackmarket[type]) do
    if _.infamous then
    managers.blackmarket:add_to_inventory("infamous", type, mat_id, false)
    elseif _.dlc then
    managers.blackmarket:add_to_inventory("preorder", type, mat_id, false)
    else
    managers.blackmarket:add_to_inventory("normal", type, mat_id, false)
    end
    end
    managers.blackmarket:remove_item("normal", "materials", "plastic", false)
    managers.blackmarket:remove_item("normal", "colors", "nothing", false)
    end
    end

    giveitems( 2, "weapon_mods" )
    giveitems( 5, "masks" )
    giveitems( 5, "materials" )
    giveitems( 5, "textures" )
    giveitems( 5, "colors" )
    [/HTML]

  14. The Following 6 Users Say Thank You to ogR1sH For This Useful Post:

    DeathXReapar (08-20-2013),lee_terry_jr (08-20-2013),leonardoreal (08-19-2013),SeekerWolf (08-18-2013),SheepyJr (07-03-2014),swarnob93 (12-26-2013)

  15. #11
    SeekerWolf's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by ogR1sH View Post
    I made a function you can use to add as many of all specific items you want (Because "-- Everything But Weapons" spams loot cards which gets you alot of maybe unwanted money or attachments). Enjoy!
    Is there away to get rid of weapon mods?
    (like lets say i accidentally gave myself to many mods is there any way to make it 0?)
    Thank you!

  16. #12
    ogR1sH's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    8
    My Mood
    Psychedelic
    Quote Originally Posted by SeekerWolf View Post
    Is there away to get rid of weapon mods?
    (like lets say i accidentally gave myself to many mods is there any way to make it 0?)
    Thank you!
    [HTML]
    for mat_id,_ in pairs(tweak_data.blackmarket.weapon_mods) do
    managers.blackmarket:remove_item("normal", "weapon_mods", mat_id, false)
    managers.blackmarket:remove_item("preorder", "weapon_mods", mat_id, false)
    end
    [/HTML]

    Not tested, but should remove one instance of every mod when executed.
    Last edited by ogR1sH; 08-18-2013 at 08:55 PM.

  17. The Following User Says Thank You to ogR1sH For This Useful Post:

    SeekerWolf (08-18-2013)

  18. #13
    SeekerWolf's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by ogR1sH View Post
    [HTML]
    for mat_id,_ in pairs(tweak_data.blackmarket.weapon_mods) do
    managers.blackmarket:remove_item("normal", "weapon_mods", mat_id, false)
    end
    [/HTML]

    Not tested, but should remove one instance of every mod when executed.
    It worked thank you, only mod that didnt go down was the pre-order military red dot sight

  19. #14
    ogR1sH's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    8
    My Mood
    Psychedelic
    Quote Originally Posted by SeekerWolf View Post
    It worked thank you, only mod that didnt go down was the pre-order military red dot sight
    Try the updated code or just change "normal" to "preorder" in the "remove_item" line!

  20. The Following User Says Thank You to ogR1sH For This Useful Post:

    SeekerWolf (08-18-2013)

  21. #15
    SeekerWolf's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by ogR1sH View Post
    Try the updated code or just change "normal" to "preorder" in the "remove_item" line!
    Thank you very much it worked :]

Page 1 of 10 123 ... LastLast

Similar Threads

  1. Replies: 2
    Last Post: 01-06-2016, 12:38 AM
  2. [Outdated] [VLSE] Vindictus Lua Scripting Engine v1.2 [1/25/2012]
    By Nowayz in forum Vindictus Hacks & Cheats
    Replies: 20
    Last Post: 02-02-2012, 11:29 AM
  3. [Outdated] [VLSE] Vindictus Lua Scripting Engine v1.1 [Fixed]
    By Nowayz in forum Vindictus Hacks & Cheats
    Replies: 113
    Last Post: 01-25-2012, 02:51 PM
  4. [Outdated] [VLSE] Vindictus Lua Scripting Engine v1.0
    By Nowayz in forum Vindictus Hacks & Cheats
    Replies: 132
    Last Post: 01-10-2012, 08:48 AM
  5. Dragonnest Lua scripts?
    By Cold designer in forum Dragon Nest Help
    Replies: 1
    Last Post: 09-18-2011, 10:27 AM