Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/07/2019 in Posts

  1. You mean "Make a dialog for editing Xor Key and Value to Xored" ? Maybe this could be usefull .. xor = bit32.bxor sf = string.format DefaultXorKey_1 = 0xFF DefaultXorKey_2 = 0xAA DialogOut = gg.prompt({ 'Xor Key #1', -- [1] "Value #1", -- [2] 'Xor Key #2', -- [3] "Value #2" -- [4] }, {DefaultXorKey_1, 0, DefaultXorKey_2, 0}, {number, number, number, number}) XoredValueWithKey_1 = xor(DialogOut[2], DialogOut[1]) XoredValueWithKey_2 = xor(DialogOut[4], DialogOut[3]) gg.clearResults() gg.searchNumber(sf("%d;%d;%d;%d;1;5:100", DialogOut[1], XoredValueWithKey_1, DialogOut[3], XoredValueWithKey_2), gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) o = gg.getResults(4) o[2].value = xor(1000000000, DialogOut[1]) o[4].value = xor(1000000000, DialogOut[3]) Example.lua
    2 points
  2. Nohow. Make custom kernel. But it is impossible. Write to support.
    1 point
  3. I have faced a problem now. My code is this: d = gg.prompt({A='Number of Orbs Or Dooblins'}, {A='0,}) gg.toast ('Quadropus 2.0.48 Hack by Backlift') gg.setRanges ( gg.REGION_C_ALLOC) gg.searchNumber (data[A], gg.TYPE_DOUBLE, true, gg.SIGN_EQUAL, 0, -1) if gg.getResultCount() == 1 then gg.editAll('100000000', gg.TYPE_DOUBLE) gg.alert ('Hacking Done, Enjoy) else gg.alert ('Go to game and change the value, then load the script again to continue') end Theorically it should: 1_open a prompt screen to user to get value and meanwhile, toast a message 2_after value input, set range to (Ca) and search the value as Encrypted Double 3_if found 1 value Change it to a very high number, if not, tell user to change the value and reload script But I get errors: Script ended: Script error: org.luaj.vm2.LuaError: load /sdcard/Notes/Quadropus 2.0.48 Script by Backlift.lua: org.luaj.vm2.LuaError: /sdcard/Notes/Quadropus 2.0.48 Script by Backlift.lua:1: unfinished string at org.luaj.vm2.LuaValue.error(LuaValue.java:1051) at org.luaj.vm2.Globals.loadfile(Globals.java:185) at android.ext.Script.runScript(Script.java:1035) at android.ext.Script.access$8(Script.java:1032) at android.ext.Script$ScriptThread.run(Script.java:998) Caused by: org.luaj.vm2.LuaError: /sdcard/Notes/Quadropus 2.0.48 Script by Backlift.lua:1: unfinished string at org.luaj.vm2.compiler.LexState.lexerror(LexState.java:266) at org.luaj.vm2.compiler.LexState.read_string(LexState.java:451) at org.luaj.vm2.compiler.LexState.llex(LexState.java:611) at org.luaj.vm2.compiler.LexState.next(LexState.java:673) at org.luaj.vm2.compiler.LexState.checknext(LexState.java:822) at org.luaj.vm2.compiler.LexState.recfield(LexState.java:1129) at org.luaj.vm2.compiler.LexState.constructor(LexState.java:1167) at org.luaj.vm2.compiler.LexState.simpleexp(LexState.java:1418) at org.luaj.vm2.compiler.LexState.subexpr(LexState.java:1523) at org.luaj.vm2.compiler.LexState.expr(LexState.java:1541) at org.luaj.vm2.compiler.LexState.explist(LexState.java:1261) at org.luaj.vm2.compiler.LexState.funcargs(LexState.java:1278) at org.luaj.vm2.compiler.LexState.suffixedexp(LexState.java:1373) at org.luaj.vm2.compiler.LexState.simpleexp(LexState.java:1427) at org.luaj.vm2.compiler.LexState.subexpr(LexState.java:1523) at org.luaj.vm2.compiler.LexState.expr(LexState.java:1541) at org.luaj.vm2.compiler.LexState.explist(LexState.java:1258) at org.luaj.vm2.compiler.LexState.assignment(LexState.java:1636) at org.luaj.vm2.compiler.LexState.exprstat(LexState.java:1958) at org.luaj.vm2.compiler.LexState.statement(LexState.java:2055) at org.luaj.vm2.compiler.LexState.statlist(LexState.java:2072) at org.luaj.vm2.compiler.LexState.mainfunc(LexState.java:2088) at org.luaj.vm2.compiler.LuaC$CompileState.luaY_parser(LuaC.java:129) at org.luaj.vm2.compiler.LuaC$CompileState.access$0(LuaC.java:120) at org.luaj.vm2.compiler.LuaC.compile(LuaC.java:99) at org.luaj.vm2.Globals.compilePrototype(Globals.java:304) at org.luaj.vm2.Globals.loadPrototype(Globals.java:283) at org.luaj.vm2.Globals.load(Globals.java:254) at org.luaj.vm2.Globals.loadfile(Globals.java:183) ... 3 more
    1 point
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.