Skip to content

Commit

Permalink
feat!: level
Browse files Browse the repository at this point in the history
  • Loading branch information
mioscape authored Mar 9, 2024
1 parent c4401fe commit 34cfb25
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions mioscape-nfsnl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@ function START()
MENU=gg.choice({
'\n[Money]\n',
'\n[Gold]\n',
'\n[Level]\n',
'\n[Back to Loader]\n',
}, nil, '[NFS:NL v0.6-beta]')
if MENU == 1 then Money() end
if MENU == 2 then Gold() end
if MENU == 3 then Level() end
if MENU == 4 then Exit() end
if MENU == 3 then Exit() end
MIO=-1
end

Expand Down Expand Up @@ -39,18 +37,6 @@ function Gold()
gg.toast('Gold Changed')
end

function Level()
gg.processPause()
mio = gg.prompt({[1]='Change to:', [2]='Current Level:'}, {[1]='', [2]=''})
gg.searchNumber(mio[2]..';327700~327720::13', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
gg.refineNumber(mio[2], gg.TYPE_DWORD)
gg.getResult(100)
gg.editAll(mio[1], gg.TYPE_DWORD)
gg.clearResults()
gg.processResume()
gg.toast('Level Changed')
end

function Exit()
gg.processResume()
TG = gg.makeRequest(
Expand Down

0 comments on commit 34cfb25

Please sign in to comment.