Rxhacker 28 Posted February 13 Need chat support or more tutorials? Come here Telegram chanel -- https://t.me/Hackers_House_YT Telegram group chat -- https://t.me/Hackers_House_YT_chat_group Tutorial No 9 :- Title :- How to manage values / convert Values to a good script Example app detail :- App Name :- Local warfare portable Link :- https://play.google.com/store/apps/details?id=com.OldProduct.LocalWarfarePortable Memory range :- Anonymous Value type :- Float Speed run value :- 12F Description I found a value in game which is 12 float which is speed run value. now i want to convert it to well managed script . So tap value and tap goto . Now take some screenshot . Done . You can see the screenshot below this post. Lets make a managed value . I saw this in screenshot. 64B -- Value upside of speed run 65B -- Value upside of speed run 12F -- Speed run value 64B -- Value below speed run value Now here B means byte and F means float . Our main value is 12 Float . This is in ordered maner . Now we will add them together. 64B;65B;12F;64B We got this while combining all values . Now we need to tell game guardian that this values are in ordered way. 64B;65B;12F;64B:: Last :: means that this values are assembled in ordered way. Now we need to tell gg the distance between this values . 64B;65B;12F;64B::5 The values were near so i gussed 5 . If it doesn't work make it higher like 10 20 or more. Now time to write An script. gg.clearResults() -- This will clear all results available in gg . It clear ups room for new search. gg.setRanges(gg.REGION_ANONYMOUS) -- we found the value in A which is Memory range . Now gg will search only in Anonymous which means faster search. gg.searchNumber("64B;65B;12;64B::5" ,gg.TYPE_FLOAT) --- gg will search this value we already found the value . Now we write float here because Float is our main Value type . Our main value is 12 as float. gg.refineNumber(12 ,gg.TYPE_FLOAT) -- we need 12 only so gg will now delete other results and take 12 only. gg.getResults(100) -- gg will take the first 100 results and edit them only . Let us consider your value comes at first 5 results so no need to edit all values . Just take 5 values and edit to avoid crash of game. gg.editAll(80 ,gg.TYPE_FLOAT) -- this will edit all values to 80 gg.clearResults() -- clears search results gg.toast("SPEED RUN ACTIVE ") -- gives user an message that hack is active This is our script now gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("64B;65B;12;64B::5" ,gg.TYPE_FLOAT) gg.refineNumber(12 ,gg.TYPE_FLOAT) gg.getResults(100) gg.editAll(80 ,gg.TYPE_FLOAT) gg.clearResults() gg.toast("SPEED RUN ACTIVE ") This is real value you can try in game. 2 Share this post Link to post Share on other sites
Crystal_Mods100x 9 Posted February 16 On 2/13/2021 at 6:20 AM, Rxhacker said: Need chat support or more tutorials? Come here Telegram chanel -- https://t.me/Hackers_House_YT Telegram group chat -- https://t.me/Hackers_House_YT_chat_group Tutorial No 9 :- Title :- How to manage values / convert Values to a good script Example app detail :- App Name :- Local warfare portable Link :- https://play.google.com/store/apps/details?id=com.OldProduct.LocalWarfarePortable Memory range :- Anonymous Value type :- Float Speed run value :- 12F Description I found a value in game which is 12 float which is speed run value. now i want to convert it to well managed script . So tap value and tap goto . Now take some screenshot . Done . You can see the screenshot below this post. Lets make a managed value . I saw this in screenshot. 64B -- Value upside of speed run 65B -- Value upside of speed run 12F -- Speed run value 64B -- Value below speed run value Now here B means byte and F means float . Our main value is 12 Float . This is in ordered maner . Now we will add them together. 64B;65B;12F;64B We got this while combining all values . Now we need to tell game guardian that this values are in ordered way. 64B;65B;12F;64B:: Last :: means that this values are assembled in ordered way. Now we need to tell gg the distance between this values . 64B;65B;12F;64B::5 The values were near so i gussed 5 . If it doesn't work make it higher like 10 20 or more. Now time to write An script. gg.clearResults() -- This will clear all results available in gg . It clear ups room for new search. gg.setRanges(gg.REGION_ANONYMOUS) -- we found the value in A which is Memory range . Now gg will search only in Anonymous which means faster search. gg.searchNumber("64B;65B;12;64B::5" ,gg.TYPE_FLOAT) --- gg will search this value we already found the value . Now we write float here because Float is our main Value type . Our main value is 12 as float. gg.refineNumber(12 ,gg.TYPE_FLOAT) -- we need 12 only so gg will now delete other results and take 12 only. gg.getResults(100) -- gg will take the first 100 results and edit them only . Let us consider your value comes at first 5 results so no need to edit all values . Just take 5 values and edit to avoid crash of game. gg.editAll(80 ,gg.TYPE_FLOAT) -- this will edit all values to 80 gg.clearResults() -- clears search results gg.toast("SPEED RUN ACTIVE ") -- gives user an message that hack is active This is our script now gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("64B;65B;12;64B::5" ,gg.TYPE_FLOAT) gg.refineNumber(12 ,gg.TYPE_FLOAT) gg.getResults(100) gg.editAll(80 ,gg.TYPE_FLOAT) gg.clearResults() gg.toast("SPEED RUN ACTIVE ") This is real value you can try in game. Wow. Thanks! im going to try this soon. so i can get one value by combining all values into byte and group searching the byte combined with the 12F? 0 Share this post Link to post Share on other sites
Rxhacker 28 Posted February 17 12 hours ago, Crystal_Mods100x said: Wow. Thanks! im going to try this soon. so i can get one value by combining all values into byte and group searching the byte combined with the 12F? Mostly we don't use byte for group search . We use near float or dword value . But byte was working for this game so why not to throw same value in tutorial. 1 Share this post Link to post Share on other sites