Jump to content

MonkeySAN

Contributor
  • Posts

    1,602
  • Joined

  • Last visited

  • Days Won

    99

Everything posted by MonkeySAN

  1. you should check this out : Life in Adventure (#c8xgjwcn)
  2. exactly. the hack is done with dinosaur that can be bought with in-game cash. as per instruction, find the correct one(edit value 10 to 40). edit the id. tap the icon(top right corner) to see the changes then buy it.
  3. go to Creature Market, select Search for Triceratops search = 5D;1D;-670,191,440D;10D::13 refine to value 10. it should be 2 results left. edit to 40 to find the correct one. tap the icon to see the changes. remove the other one. now goto address and change the id(above value 10) to any dinosaur id of your choice. again tap the icon to see the changes. then buy. dont forget to change the id back to original before entering the Market again.
  4. thats not a new trick. someone already posted it along with some instructions a long time ago. find it in previous pages of this thread. try to be more pro-active. and why the Lmao?
  5. 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
  6. 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.
  7. try this.. ... gg.copyText(printRes,false)
  8. 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?
  9. what script? and which old link that is not available?
  10. check with GG as shown below. see that [x64] that indicate your game is 64bit. if none then its 32bit.
  11. i suggest you scroll back to previous pages in this thread and do some reading. it may help you.
  12. search and refine. one found then run this script : Class name and Field offset searcher (#4udgq21d)
  13. 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
  14. 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
  15. for Field Offset Finder script offset for 64 bit is 0x18 class name is the same dont check the "Try For 32bit"
  16. download and try this script : Field Offset Finder (#40r9kwnp) enter as shown in picture. dont forget to check "Try For 32 bit" see if any results came out and update me later.
  17. your game is 32bit and someone above already comment that for 32bit its still works for the latest version. im not sure what was wrong.
  18. which script that doesnt work?
  19. the game got updated. the guides posted before is not working anymore. and i still cant find new way to hack.
×
×
  • 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.