Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/29/2018 in Posts

  1. Here is a part from the script that is used in GG for text search: if utf16 then encoding = 'UTF-16LE' end It means that "UTF-16LE" encoding is used if user selects corresponding option (via checkbox). So, if you need same result as in GG text search, then use this encoding. Also check my previous comment, I have added info that explains why you got different result when "UTF-16" encoding was set.
    3 points
  2. Are you sure that string that you are searching for is encoded in UTF-16 in process memory? You may try other encodings from available ones (see "bytes" function description in GG API reference). Edit: Those 2 bytes at start of the array from your second screenshot is byte order mask. You need to use "UTF-16LE" encoding in your case. I am not sure that BOM won't be included if you choose it, give it a try.
    3 points
  3. Here is an example that you have asked for. Function to search text was taken from this post. function searchText(text, encoding) local bytes = gg.bytes(text, encoding) local ret = '' for i, b in ipairs(bytes) do ret = ret..';'..b end ret = ret:sub(2)..'::'..#bytes return gg.searchNumber(ret, gg.TYPE_BYTE) end function getResultsCount() if gg.getResultsCount then return gg.getResultsCount() end return gg.getResultCount() end local input = gg.prompt({'Input string to search:'}, nil, {'text'}) local str = '' if input == nil then -- Something to do if the prompt window was cancelled (this block can be omitted) end if input ~= nil then str = input[1] end if #str > 0 then gg.clearResults() searchText(str, 'UTF-16') gg.getResults(getResultsCount()) gg.editAll('1', gg.TYPE_BYTE) end text_search.lua
    2 points
  4. What do you mean work like comments? I did write my contact, web, etc in my scripts, it is enough to give information. They can contact me, also find my website or find my channel. If your purpose is possible to add url clickable then trigger browser to open, I think it will never happen. GG is free no ads, no pop up. Imagine that in the scripts have a ton of url.
    2 points
  5. Ok here is the script Assassin's Creed Rebellion v2.0.1 ToolBox by BadCase (#87r1v042) sadly i have had no luck with the helix and dna but you only have to get enough to obtain a character with the script you can set them to level 39
    1 point
  6. I prefer sending it directly to moderator? why? I buy this script lol so I choose what to do with it, not you? Be it scam or not I still have it from him just that it's not working maybe I just don't really know how to make it works or maybe it need a little tweak. After giving it to the moderator if he manage to make it works then it's up to him if he want to share it with the rest or not.
    1 point
  7. i played a little more and it isn't always 1 negative number and a positive number they can both be positive but it's always the sum of those 2 values, the value between them is randomly generated and it doesn't seem to have any use for us. and the structure in the memory around the money values should be like this(obviously "???" means idk) : 65537 Hero level Experience Gold Available skill point Available talent point Honor ???? ????? Strength Intelligence Agility Current hp Current mp everything is for the main character and lumped togheter btw it's the same encryption for everything so : value1 value2 value3 value 1 + value 3 = what you have
    1 point
  8. View File PACYBITS FREE INFINITE STORE HACK + GOLD HACK + PACK UNLOCKER + INFINITE TOKENS THIS SCRIPT CAN BE USED TO ACQUIRE: 1.INFINITE PACKS OF ALL TYPES FREE 2.INFINITE GOLD 3.INFINITE TOKENS 4.PACK UNLOCKER FOR SEASONAL PACKS 5.MAKE EXISTING LIGHTNING ROUND PACKS INFINITE WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT WATCH THIS VIDEO TO KNOW HOW TO USE THE SCRIPT Submitter RONO_PLAYS Submitted 11/23/18 Category LUA scripts
    1 point
  9. can someone help me i'm new to this. I got game guardian on windows 10 64bit and i rooted bluestacks through bstweaker every time i try and speed hack with game guardian it does not work but on my android phone that's rooted it works any help please
    1 point
  10. it is a function that you can call when they select a button in your script, with entername() put whatever you want it to do after the name is entered where the gg.alert() is
    1 point
  11. Here ya go function entername() --opens prompt playername = gg.prompt({[1] = 'Enter the player name.'}, {[1] = '0'}, {[1] = 'text'}) if playername == nil then gg.alert('You did not enter anything') home() else -- the variable playername[1] holds the value entered gg.alert('The Player name ' .. playername[1] .. ' was entered') end end here is a text file with it in it since things tend to get messed up when copying and pasting from the forums demo.txt
    1 point
  12. lol you can try posting it here so everybody could test your script.
    0 points
  13. Thanks for the script, could you make a script to exchange sbc cards?
    -1 points
  14. @NoFear please tell me where can I mail the script/lua to you and you can try to see how to make it works. I am not able to send you message or maybe if you have discord please tell me. Thank you very much in advance
    -1 points
×
×
  • 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.