搜索

《收获日2》联机作弊码大全

2013-08-24 12:04:25来源:游戏下载

《收获日2》联机作弊码大全,Lua脚本,联机也能享受作弊的快感。

-- Player Instance
local player = managers.player:player_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.player:player_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 (1337)
managers.skilltree:_set_points(9999)
managers.money:_add_to_total(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.player:player_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() 编辑:紫葡萄 有用(0人)

分享到:

收获日2

动作游戏

游戏平台:/PC/PS3/Xbox360/PS4/XboxOne/

发行时间:2013年8月13日

8.7

玩家指数

热门手游

换一批

    热门阅读

    相关应用

    • 健身房格斗竞技场(Gym Fighting Wrestling Arena) 健身房格斗竞技场(Gym Fighting Wrestling Arena) 动作闯关|72.25MB 健身房格斗竞技场游戏是一款格斗对决类的游戏,在游戏中,玩家可以选择扮演各种不同的角色,每个角色都有其独特的技能和特点。你可以选择使用快速而灵活的拳击技巧,或者采用强大而威猛的摔跤和搏击技能。每个角色都有自己的特殊技能和必杀技,你需要善用它们来打败对手,赢得胜利,喜欢的可以下载试试! 下载
    • 电视机人大战 电视机人大战 动作闯关|176.45MB 电视机人大战游戏是一款冒险探索类的对战游戏,玩家进入后扮演电视机人,在各种神秘的地下遗迹中自由探索。游戏中充满了各种谜题和挑战,玩家需要解开这些谜题,找到宝藏和珍贵的装备。游戏拥有精美细致的画面和流畅的操作体验,让你沉浸在一个充满神秘和惊喜的世界中。探索每个地下遗迹,解开谜题,发现秘密,成为真正的冒险家,赶快来下载试试吧! 下载
    • 将棋攻防战2023最新版 将棋攻防战2023最新版 益智休闲|30.98MB 将棋攻防战2023最新版是一款单机象棋类的游戏,融合了将棋和围棋的元素,为玩家提供了丰富多样的玩法和策略挑战。玩家将扮演一名指挥官,带领自己的军队进行战斗。每个角色拥有自己独特的能力和技能,包括步兵、骑兵、弓箭手等。玩家需要运用智慧和策略,在棋盘上布置自己的兵力,合理利用每个单位的特点,以攻击敌方的阵地、保护自己的要塞,并最终取得胜利,喜欢的可以下载试试! 下载
    • 密室逃脱25门起源(Escape_Room_25_Doors_Origins) 密室逃脱25门起源(Escape_Room_25_Doors_Origins) 冒险解谜|52.56MB 密室逃脱25门起源是一款冒险解谜类的游戏,玩家进入后需要身处一个陌生的环境中,你需要解开各种谜题和机关,逐步揭示隐藏在迷宫深处的珍贵宝藏和传奇故事。游戏中的迷宫设计独特而精巧,每个迷宫都有独特的主题和风格。从古老的金字塔、神秘的遗迹到神圣的神庙等场景,每个迷宫都蕴藏着无尽的宝物和挑战。海量道具可以使用,收获无尽的知识,喜欢的下载试试吧! 下载
    • 修仙门派飞升模拟器 修仙门派飞升模拟器 角色扮演|65.15MB 修仙门派飞升模拟器是一款修仙模拟类的游戏,游戏以放置文字玩法为主线。您将扮演一位修仙者,通过经营自己的门派和引导弟子们成长,最终实现飞升成仙的壮丽目标。游戏要求玩家灵活运用各种策略和技能,如培养弟子、研发功法、布置阵法等,同时还可以与其他玩家展开竞争或合作。通过不断探索游戏中的奇遇和机缘,感兴趣的下载试试吧! 下载
    • 二次元氪金模拟器 二次元氪金模拟器 角色扮演|1.21GB 二次元氪金模拟器游戏是一款冒险卡牌类的游戏,玩家进入游戏可以无限次的抽卡,卡池内会有各种角色可以解锁。每个角色都拥有独特的技能和属性,玩家可以根据自己的战术需求进行组合搭配,创造出属于自己的最强阵容。完成各种任务后,你还能获得一定的奖励,喜欢的可以下载试试! 下载
    查看更多应用

    相关阅读