Posted: Sat Feb 17, 2024 11:11 am Post subject: Minesweeper XP Mod Menu (Ultimate Custom Field)
This is the first mod menu i've ever made by using Lua
This mod is about changing every values on options that are not in custom gamemode,there are the options on this mod menu :
Set.OnClick = function()
local height = tonumber(Field.text) or 0
if height ~= 0 then
local heightval = 0x010056A8
writeInteger(heightval, height)
end
end
Set2.OnClick = function()
local width = tonumber(Field2.text) or 0
if width ~= 0 then
local widthval = 0x010056AC
writeInteger(widthval, width)
end
end
Set3.OnClick = function()
local mines = tonumber(Field3.text) or 0
if mines ~= 0 then
local mineval = 0x01005194
writeInteger(mineval, mines)
end
end
Set4.OnClick = function()
local time = tonumber(Field4.text) or 0
if time ~= 0 then
local timeval = 0x0100579C
writeInteger(timeval, time)
end
end
Default.OnClick = function()
local timeval = 0x0100579C
local mineval = 0x01005194
local widthval = 0x010056AC
local heightval = 0x010056A8
writeInteger(timeval, 0)
writeInteger(mineval, 10)
writeInteger(widthval, 9)
writeInteger(heightval, 9)
end
timefreeze.OnClick = function()
if timefreeze.checked then
local timeval = 0x0100579C
writeInteger(timeval, 1337)
else
local timeval = 0x0100579C
writeInteger(timeval, 0)
end
end
image_2024-02-17_141004946.png
Description:
The game freaking out
Filesize:
12.8 KB
Viewed:
933 Time(s)
image_2024-02-17_140943222.png
Description:
The program
Filesize:
5.81 KB
Viewed:
933 Time(s)
_________________
Hello i code python,c#,x86_64 assembly,html,and other things
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum