Jump to content

bukandewa

Ascended
  • Posts

    210
  • Joined

  • Last visited

  • Days Won

    1

bukandewa last won the day on February 22 2019

bukandewa had the most liked content!

4 Followers

Additional Information

  • Android
    7.x (Nougat)
  • Device
    Lenovo A6010 Plus;Asus Zenfone Max Pro M1;IPAD 5 2017;
  • Service provider
    Other

Recent Profile Visitors

1,908 profile views

bukandewa's Achievements

Enthusiast

Enthusiast (6/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

95

Reputation

  1. I have learn Lua from zero, I always read many references about Lua in some sites. You can starting Read Lua Manual for basic understanding. Dont be tired to solve trial and error your code.
  2. Try to add some of nearby value in your group search. For example, 1000;2000;3000 3 steps Above 1000 is 500, then you can try 500;1000;2000;3000. 3 steps below 3000 is 100, then you can change to 500;1000;2000;3000;100. And so on, until the group search is find desire value, if group search is not direct to your desire value, restart, try different combinations. Yeah, it is so boring, you need to restart the game many times.
  3. Leaking to get a little bit clue, learning, then try to writing by your self is better for your future educational, for your personal use. But if your purposes is to reshare with less effort, it is a bad things. If you want to developing, writing lua scripts or something else, research is the most important, well it will take your time a lot, also make your brain stuck sometimes. But you will get usefull knowledge, experience.
  4. The most silly things is, os.remove can be remove your obb files.
  5. Version = tonumber(gg.makeRequest('https://pastebin.com/raw/GgPrZ1t9').content) --1.1 Script = gg.makeRequest('https://pastebin.com/raw/EheRSRkv').content --this is example if Version == 1.2 then gg.alert('Script is up to date.') else Update = gg.alert('New version '..Version..' available.\nClick button below to save the file.', 'Exit', 'Save File') if not Update then os.exit() end if Update == 1 then os.exit() end if Update == 2 then --file path downloaded file file = io.open(gg.getFile():gsub('lua', 'downloaded.lua'),'w') file:write(Script) file:close() end end Code above just an example version checker and downloader script. You can improve as you need. I am not recommended to share text file in pastebin, because pastebin didnt have file management. I think github is good enough for free services. Or if you want to more advance with php, you can try 000webhost.
  6. I am very rarely use discord, it will slow respond to answer. You can jump to my telegram if you want. t.me/bukandewa
  7. gg.makeRequest just load raw text content in read mode, temporary, not downloaded as a file. Basically, you need to know how script loader works. I think its not hard to understand. Then, you should give an example of the work you have done, people will try to solve your code, also will give you some explanations. One more thing, everyone who have access to your 'online' file, highly possible to leak your code, like an example below. Mortal_combat_BadCaseScriptLauncher.lua
  8. You cant make direct link to download file via script.
  9. The problem is, line break. file:read(*l) will read the file line by line, so it will capture only first line 'gg.alert([['
  10. Just pm, I will try to solve. Jump to my tele t.me/bukandewa
  11. Maybe your string inside ([[ ]])) is too long. Error log says 'expression too complex'? To fix that issue you can try to split the string, then concatenate them. I'll give you an example obsfucate function. It is not protect the scripts from log hooking, but the purposes is, to slower any 'leaker' convert back your code to full original text using tools like unluac or sstool. --encode function strToBytes(str) local byteArray= { str:byte(1, -1) } for i = 1, #byteArray do byteArray[i] = byteArray[i] + 100 encoded = '{' ..table.concat(byteArray, ',') .. '}' encoded = 'bytesToStr(' ..encoded .. ')' encoded = 'string.dump(load('..encoded..'),true,true)' encoded = 'load('..encoded..')()\n' end return encoded end --decode function bytesToStr(byteArray) local output = "" for _,b in ipairs(byteArray) do output = output .. string.char(b - 100) end return output end
  12. Ok, just wait for a moment. About the changelog, I am very appreciated you block function abuse that can be harm the user.
  13. Cant download latest versions @Enyby
  14. Script cannot look which region is actually needed. Why you make it become complicated? gg.setRanges(gg.REGION_BAD) gg.searchNumber("1;2;3", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) Just put memory region which is needed before searchNumber, then scripts will only search value in memory region selected by scripts.
×
×
  • 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.