-
Posts
1,814 -
Joined
-
Last visited
-
Days Won
120
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by MonkeySAN
-
Use this script : TEST_UnlockJob.lua - to unlock S Rank Job and get 10 rights for it. - script for 64bit(armv8) only. use this Job IDs : S Rank Job ID : 9 Merchant 14 Farmer 19 Carpenter 24 Mover 29 Trader 34 Researcher 39 Cook 44 Artisan 49 Blacksmith 54 Doctor 59 Monk 64 Rancher 69 Guard 74 Knight 79 Mage 84 Paladin 89 Gunner 94 Archer 99 Ninja 104 Samurai 109 Viking 114 Pirate 119 Champion 124 Wizard - IDs are from previous work by other people in this thread. i take no credits for it.
-
while above still working for armv8 but yours shown unavailable. it should show the price. i dont get it.
-
-
-
-
good news...i think. download problem has been fixed.
- 2 replies
-
1
-
- V7a checker
- V8a checker
- (and 14 more)
-
oh..i found the value. as shown in the picture..i keep made mistake by repeating selected the 2nd go to pointer address. thats why i cant found the value before in 64bit.
-
my apologies..its my bad. nothing strange happen here. its just for 64bit i chose the wrong "go to pointer" i mistakenly select the 2nd one instead the 1st one.
-
i tried the value with 32bit game..its easily found. 64bit no luck. maybe thats the reason value not found?
-
Call Of Duty Mobile VN Call Of Duty Mobile VN 1.8.39 32bit
MonkeySAN replied to TekMonts's topic in LUA scripts
bad gateway as usual. matter hasnt been resolved yet. @Sysadmin please take note.- 2 replies
-
- codm
- Call Of Duty Mobile
-
(and 1 more)
Tagged with:
-
its not just you. pretty much everyone got that bad gateway problem. @Sysadmin please take note.
-
yup. all Dword in Anonymous.
-
well thank you.. but no thank you. i will never ever use Telegram again. got hacked in Telegram before. almost ruined my entire life.
-
not sure if the download problem affected everyone.. but that matter hasnt been resolved yet. for sure its happen to recently added file. for old ones no problem to download.
-
-
what Vault?
-
look like someone needed the script that much and was so mad as the download button still didnt work so they keep spamming it. i kinda wonder if @Sysadmin is aware of this download problem. btw..maybe you can upload the script in the description area or in the comment here to see if there any better.
-
select both the offset value and value below it. edit = 706,675,680;-698,416,192
-
well. you can do a script that search dino by its name. Screenrecorder-2023-05-05-16-04-25-889.mp4 but in my opinion its not very practical and required extra steps in the script that make it more complicated to write. plus some dinos are given a special name different than what we see on the screen or a name that almost the same. and there are also Hybrids and Gen 2 dinos. so you really had to know whats to put in the name otherwise searching for it will give no results or way too many results with chances to find the correct one are very slim. what @MAARS had given to us like he said are much simpler.
-
-
-
well i still not quite sure what you really want. but you can check this example below to see if it really help. local gg = gg n = {0} function START() gg.clearResults() local input = gg.prompt( {"Enter value :","EXIT"}, {n[1]}, {"number","checkbox"}) if not input then gg.toast("You've canceled") return elseif input[2] == true then os.exit() else n[1] = input[1] gg.searchNumber(input[1],gg.TYPE_DWORD) count = gg.getResultsCount() gg.alert("Results found = "..count) end end while true do while gg.isVisible(true) do gg.setVisible(false) START() end end above prompt will remember what the last/recent value entered so that you dont have to enter it again as long as the script is alive.
-
you meant you want the gg.prompt to remember the last/recent number input?