PDA

ดูเวอร์ชั่นเต็ม : โกง PAYDAY 2 ; Script lua ไม่ต้องใช้ Program



peeranat2011
10th December 2013, 11:36
โกง PAYDAY 2 ; Script lua ไม่ต้องพึ่ง Program!!

http://t2.gstatic.com/images?q=tbn:ANd9GcQVy_rRo2bIQ-i0O3U1qmPt3l4eWLyS66ODRA-sP8xM7AS1-VdAng

:sharky ความคิดเห็นจากผู้โพสต์ : เจ้าตัวที่ผมให้ส่วนตัวคิดว่าดีกว่าพวกที่เป็นคล้ายๆกับสำเร็จรูป ไม่ถูก VAT ของ Steam จับ หรือจะเป็น Anitivirus ในเครื่องของเรา และอีกทั้งสามารถแก้ไขปรับทุกๆอย่างในโค้ดตามใจชอบเราได้ด้วยครับ พอดีว่าใช้แล้วได้ผลจึงมาแชร์ต่อๆกันครับ ให้มีประโยชน์สำหรับคุณนะครับ


วิธีการใช้ จากคุณ GRG.fps(drive) TH™


https://www.youtube.com/watch?v=jNkrW5EcbXM


วิดีโอเพิ่มเติมจากด้านบน จากคุณ dOnkey nDivide


http://www.youtube.com/watch?v=DfZHbwskoXw


ถ้าคุณดูวิดีโอด้านบนแล้ว โหลดตัวนี้ไป
PayDay 2 lua (ตัวรันโค้ด) (https://www.mediafire.com/?lrhnck66rw5pra1)

ข้างล่างต่อไปนี้คือโค๊ดต่างๆนะครับ ก็อบไปใส่เลยครับ



Masks, materials, textures, colors, weapon mods (ปลดล็อคตกแต่งหน้ากาก และอาวุธ)
แนะนำควรใช้ตัวนี้ก่อนที่จะใช้ ปลดล็อคหน้ากากข้างล่าง เพราะตัวนี้หน้ากาก DLC ไม่ปลดล็อค เราเอาแค่ตกแต่ง

-- GiVE iTEMS ("masks", "materials", "textures", "colors", "weapon_mods")

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, true)
elseif _.dlc then
managers.blackmarket:add_to_inventory("preorder", type, mat_id, true)
else
managers.blackmarket:add_to_inventory("normal", type, mat_id, true)
end
end
managers.blackmarket:remove_item("normal", "materials", "plastic", false)
managers.blackmarket:remove_item("normal", "colors", "nothing", false)
end
end

-- Example calls to get one of everything:
giveitems(1, "masks")
giveitems(1, "materials")
giveitems(1, "textures")
giveitems(1, "colors")
giveitems(1, "weapon_mods")

All mask (ปลดล็อคทุดหน้ากาก)

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


No Alert (ไม่มีการแจ้งตำรวจ)

function GroupAIStateBase:_clbk_switch_enemies_to_not_cool() end
function PlayerMovement:on_suspicion( observer_unit, status ) end
function GroupAIStateBase:on_criminal_suspicion_progress( u_suspect, u_observer, status ) end
function GroupAIStateBase:criminal_spotted( unit ) end
function GroupAIStateBase:report_aggression( unit ) end
function PlayerMovement:on_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 GroupAIStateBase:on_police_called( called_reason ) end
function GroupAIStateBase:on_police_weapons_hot( called_reason ) end
function GroupAIStateBase:on_gangster_weapons_hot( called_reason ) end
function GroupAIStateBase:on_enemy_weapons_hot( is_delayed_callback ) end
function GroupAIStateBase:_clbk_switch_enemies_to_not_cool() end

No time drill (เจาะไร้เวลา)

function TimerGui:_set_jamming_values() return end
function TimerGui:start( timer )
timer = 0.01
if self._jammed then
self:_set_jammed( false )
return
end

if not self._powered then
self:_set_powered( true )
return
end

-- Infinite Pagers
function GroupAIStateBase:on_successful_alarm_pager_bluff() end

if self._started then
return
end

self:_start( timer )
if managers.network:session() then
managers.network:session():send_to_peers_synched( "start_timer_gui", self._unit, timer )
end
end

Skill point (โกงแต้มสกิล)

managers.skilltree:_set_points(300) -- skill points


Momey (ปั๊มโกงเงิน)

managers.money:_add_to_total(5000000000) -- money

-- Message on screen
if managers.hud then
managers.hud:show_hint( { text = "LUA script loaded! Complete the mission to see effect." } )
end


Allweaponmod (ปลดล็อคชิ้นส่วนอาวุธ)

-- All weapon mods
for mod_id,_ in pairs(tweak_data.blackmarket.weapon_mods) do
tweak_data.blackmarket.weapon_mods[ mod_id ].unlocked = true
managers.blackmarket:add_to_inventory("normal", "weapon_mods", mod_id, false)
end


จะคอยอัปเดตโค๊ดต่างๆให้นะครับ 10/12/56


ยืนยันครับว่าใช้ได้เดียวอัดคลิปมาลงให้ดู

cpt.noppakit
10th December 2013, 12:15
อยากได้พวกปลดล็อคชิ้นส่วนปืนมากกว่านะ

[Really~Nuts]
10th December 2013, 12:27
น่าสนใจดี ใช้แล้วจะไม่โดนแบนจริงๆรึ?

http://i2.kym-cdn.com/entries/icons/original/000/004/457/challenge.jpg

peeranat2011
10th December 2013, 12:48
อยากได้พวกปลดล็อคชิ้นส่วนปืนมากกว่านะ

Allweaponmod (https://doc-0c-2c-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/uq46mopfl0i06cdj7l9f9a4is55jfg5g/1386640800000/11211737986784011219/*/0B6rr0A2q3iaxM1Y5UkpCQjNxODg?h=16653014193614665626&e=download) ลืมใส่ให้ครับขออภัย แต่ชิ้นที่เป็น DLC ต้องมี DLC เท่านั้นนะถึงจะซื้อได้


;2386961']น่าสนใจดี ใช้แล้วจะไม่โดนแบนจริงๆรึ?

http://i2.kym-cdn.com/entries/icons/original/000/004/457/challenge.jpg

ผมและเพื่อนอีก 3 คนก็ใช้กันอยู่ครับ ยืนยัน

earrupz
10th December 2013, 13:04
เปิดลิ้งไม่ได้ครับ เอิ่ม....

G-man
10th December 2013, 13:14
แล้วเกมมันจะสนุกตรงไหน :sweat :sweat :sweat :sweat :sweat

earrupz
10th December 2013, 13:29
อัพใหม่ให้ทีครับ ลิ้งมันไม่ไปครับ ช่วยทีครับ

peeranat2011
10th December 2013, 13:37
อัพใหม่ให้ทีครับ ลิ้งมันไม่ไปครับ ช่วยทีครับ

แก้ไขเป็น MF ให้แล้วครับ

earrupz
10th December 2013, 13:54
ของผมใช้ไม่ได้ครับ WIn7 64bit

drive23
10th December 2013, 14:09
ยืนยันครับว่าใช้ได้เดียวอัดคลิปมาลงให้ดู

earrupz
10th December 2013, 14:14
ผมเล่นแท้นะครับ เกี่ยวมั้ย ไม่รู้ว่าเกี่ยวรึเปล่า ผมก็ทำตามคลิปที่ท่านได้ลงไว้ แต่มันก็ไม่เด้งให้ผม ไม่รู้ผมไปพลาดจุดไหน

dekdzaa
10th December 2013, 14:28
อธิบายหน่อยครับ ไม่เข้าใจเลยกดปุ่มอะไร - -.

drive23
10th December 2013, 14:37
กำลังอัฟคลิปสอนให้ครับรอสักครู

drive23
10th December 2013, 14:54
https://www.youtube.com/watch?v=jNkrW5EcbXM

_Rememi3er_
19th May 2014, 23:18
กระผมทำแล้วมันเข้าเกมมิได้คับ มันบอก steam ไม่ได้ run ไว้

drive23
23rd May 2014, 10:51
ลบ โปรออกครับ เพราะว่าโปรนี้ใช้อย่างเเพร่หลายทำให้ทางนั้นรู้ ตอนนี้ใช้ไม่ได้ครับ เเค่ลบ โปรออกก็เล่นได้ ปกติเเล้วครับ

redred99
24th May 2014, 11:11
ผมไม่ได้เล่นออนไลน์ มีแบบเลือดไม่ลดบ้างไหมคับ