0% found this document useful (0 votes)
7 views1 page

PE Swapper Script for Game Mods

The document contains a Lua script for a game cheat tool called 'PE Swapper' that allows users to swap specific values in memory. It defines a list of game features with associated values and provides a user interface for selecting and swapping these values. The script includes error handling and user notifications for successful or unsuccessful operations.

Uploaded by

mdarsadali453
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

PE Swapper Script for Game Mods

The document contains a Lua script for a game cheat tool called 'PE Swapper' that allows users to swap specific values in memory. It defines a list of game features with associated values and provides a user interface for selecting and swapping these values. The script includes error handling and user notifications for successful or unsuccessful operations.

Uploaded by

mdarsadali453
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

local g=gg

[Link](g.REGION_C_ALLOC)
[Link]()

local e={
{"🌞 Midsummer Malarkey",{1597321758,1834956082,1970496617,1919249773,0,0}},
{"🔧 Super Parts Bros 3",
{1597321766,1935619634,1919250549,1601205343,1852796781,0}},
{"🎆 Red, White & Boom",{1597321752,1918842674,1701536623,116,0,0}},
{"🌀 Rotator Rampage",{1597321762,1952397362,1600482665,1635021921,27491,0}},
{"🚗 Hill Jump Crashing",{1597321756,1818177587,1785163375,7368053,0,0}},
{"🌑 Deep Breath",{1597321768,1834955059,1953394543,1634037097,1667331188,107}}
}

local n={} for i,v in ipairs(e) do n[i]=v[1] end

while true do
if [Link](true) then
[Link](false)
local m=[Link]({"🔁 Swap PE","❌ Exit"},nil,"PE Swapper\nCredits: cysk")
if m==2 then [Link]()
elseif m==1 then
local c=[Link](n,nil,"🔍 Current PE?")
if not c then goto s end
local s=[Link](e[c][2],";").."::21"
[Link]() [Link](s,g.TYPE_DWORD)
local r=[Link]([Link]())
if #r<#e[c][2] then [Link]("❌ Found "..#r.." of "..#e[c][2]) goto s end
local t=[Link](n,nil,"🎯 Swap to?")
if not t or t==c then [Link]("⚠️ No change") goto s end
local v,o=e[t][2],{}
for i=1,#r-(#v-1),#v do for j=1,#v do
if r[i+j-1] then r[i+j-1].value=v[j] o[#o+1]=r[i+j-1] end end end
[Link](o)
[Link]("✅ PE set to "..e[t][1])
end end
::s::
end

You might also like