Jump to content

MonkeySAN

Contributor
  • Posts

    1,596
  • Joined

  • Last visited

  • Days Won

    99

MonkeySAN last won the day on March 2

MonkeySAN had the most liked content!

Additional Information

  • Android
    12.x
    13.x
  • Device
    Xiaomi 12 Pro

Recent Profile Visitors

176,011 profile views

MonkeySAN's Achievements

  1. maybe this will work? local nBV = { [1248889551] = 2000, [1248889552] = 4000, [1248889553] = 6000, [1248889554] = 8000, [1248889555] = 10000} local PromptN = gg.prompt({[2] = 'Enter Current Gold Storage Capacity :', [1] = 'Enter Ideal Gold Storage Capacity : [2000 ~ 10000]'}, {[2] = 2000, [1] = 10000}, {[2] = 'number', [1] = 'number'}) if not PromptN or PromptN[1] == "" or PromptN[2] == "" then gg.toast('Canceling, Please Enter a Value!') else local num1 = PromptN[1] local num2 = PromptN[2] gg.clearResults() gg.clearList() -- Find the key corresponding to the user input value local targetKey local editKey for k, v in pairs(nBV) do if v == tonumber(num2) then targetKey = k elseif v == tonumber(num1) then editKey = k end end -- Search and replace the current value with the target value if targetKey and editKey then gg.alert("Search value = "..targetKey.."\nEdit with = "..editKey) gg.searchNumber(targetKey, gg.TYPE_DWORD) local result = gg.getResults(gg.getResultsCount()) if #result == 0 then gg.alert("Values not found") os.exit() end gg.editAll(editKey, gg.TYPE_DWORD) else gg.toast('Value not found in the table!') end gg.clearList() gg.clearResults() end
  2. a simple solution without the local table nBV will be look like this : local PromptN = gg.prompt({[2] = 'Type Gold Storage Capacity Right Now', [1] = 'Type Ideal Gold Storage Capacity [ 2000 ~ 10000 ]'}, {[2] = 2000, [1] = 10000}, {[2] = 'number', [1] = 'number'}) if PromptN[1] == nil or PromptN[1] == '' or PromptN[2] == nil or PromptN[2] == '' then gg.toast('Canceling, Please Type Values!') else local num1 = PromptN[1] local num2 = PromptN[2] gg.clearResults() gg.clearList() gg.searchNumber(num2, gg.TYPE_DWORD) gg.getResults(gg.getResultsCount()) gg.editAll(num1, gg.TYPE_DWORD) gg.clearList() gg.clearResults() end but if the table is somehow super important then i'll let the expert fix it.
  3. try this.. ... gg.copyText(printRes,false)
  4. MonkeySAN

    Gg required

    after installing.. GG will reinstall itself with random package name. that means in every device the package name will be different. even in the same device package name will be different for each and every installment. on what purposes you want to use GG package name instead of its version?
  5. what script? and which old link that is not available?
  6. check with GG as shown below. see that [x64] that indicate your game is 64bit. if none then its 32bit.
  7. i suggest you scroll back to previous pages in this thread and do some reading. it may help you.
  8. search and refine. one found then run this script : Class name and Field offset searcher (#4udgq21d)
  9. i dont do Buidings and Items..dont ask me why. but for Equipment, Group Items, Jobs and Skills.. you can take a look into my script for clues. you can also scroll back to previous pages in this thread and read comments and guides from other people especially from @Jimeous
  10. thats all the IDs value. use the Skill ID list provided in my previous post : Kingdom adventurers (#432xg53q) - choose from the list which skill you want to unlock - goto the address - to unlock, change the Dword value at the 2nd address above ID value to 1 Move Speed UP = 64 - for quantity, long press on ID value until a menu appear. - choose Offset calculator and enter offset : A0 then goto - that will bring you to the quantity address - edit the Dword value
×
×
  • 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.