Jump to content

ItsSC

VIP+
  • Posts

    706
  • Joined

  • Last visited

  • Days Won

    36

Everything posted by ItsSC

  1. After unlocking all classes... I guess there is a limitation..
  2. I think don't goes over 1000 items or you'll be ban from joining team. (I got ban from joining team when i holding 2000 items, dont be greedy haha)
  3. ItsSC

    help me this bug?

    Welp, 20hours and your message finally reached to us. This is the weirdest situation i had never met before, does restarting GG works? It may because of lagging or crash causing the menu didn't shown up.
  4. I guess he might be looking for a script with those feature he mentioned?
  5. Elona mobile is still under early access. But stellar hunter has only 3.5 rating on play store and 800+ people follow on facebook, yet Elona has 3000+ people follow onfacebook. SO I guess Elona mobile is more popular. Maybe the game looks like Stardew Valley, so that's more on my preference haha.
  6. Stellar hunter, elona mobile. New protection again.
  7. I guess the reason they abandoned the game because they used to add a new event / item and cause the game extremely pay to win, and every rich guy in game started anti the game, eventually all of them quit the game. So they move on to create another money sucker game.
  8. The game hasn't patch the hack yet, so everything still works like in the video. Maybe you forgot to switch your equipment/ attachment after swapping coin with gold. (also don't forget to restart) The dev had stopped updating the game since 8 months ago... but they do create a new server on china, so maybe they abandoned international version.
  9. ItsSC

    help me this bug?

    The answer is blue, because 3+5 not equal to orange.
  10. ItsSC

    Lua script

    local search = gg.prompt({"Value to search"}, {}, {"value"}) gg.searchNumber(search[1], 4) -- [[Try shrink down your results here]] local res = gg.getResults(gg.getResultsCount()) for key, value in pairs(res)do value['value'] = -value['value'] end I don't think there is a need to use two prompt.. One prompt is fine. By the way, if you ar esearching for a "shop" item, I believe the price is fixed, so there's no need to use prompt actually, just search for the price by storing every item's price into a table. Call them out when user want the particular item. That is more user-friendly.
  11. ItsSC

    Offset help

    Things you should know before understanding how everything works. There are four major number systems. 1. Binary 2. Octal 3. Decimal 4. Hexadecimal Range Binary system consist of 0 and 1 only. Octal system consist of 0 to 7 only. Decimal consist of 0 to 9 only. Hexadecimal includes 0 to 9 and A, B, C, D, E, F. Programming syntax (PART THAT YOU GET CONFUSED) Every programming has a special syntax for programmers to code whatever number system they want. Since we are using Lua, we focus on Lua syntax.If you want to print out 30 in decimal, you use print(30). But if you want to print 30 in decimal from hexadecimal, you use print(0x1e). 0x1e: 0x indicates this number is in hexadecimal, 1e means 30 in decimal. Now, look back to what you get from game guardian, offset :70. The 70 is in hexadecimal, so it works when you write 0x70 or 112. Also, 0xC not equal to 0x12, but 0xC equal to 12.
  12. function incrementSearch(startIndex, range) local INITIAL = 1 local INCREMENT = 1 local SLEEP_TIME = 50 for i = INITIAL, range do gg.searchNumber(startIndex, gg.TYPE_DWORD) startIndex = startIndex + INCREMENT end gg.sleep(SLEEP_TIME) -- Manipulate yourself end --usage incrementSearch(100,100);
  13. function toHexStringBigEndian(val) local hex = ""; local HEX_DIGIT_PATTERN = "%08x"; local MAGIC_CHARACTER = ".." string.gsub(string.format(HEX_DIGIT_PATTERN, val):sub(-8),MAGIC_CHARACTER, function(x) hex = x .. hex end) return hex end Learn some string manipulation, it's fun to learn :). Search for "Regex".
  14. hahaha that is the best analog i have seen.
  15. I got no idea why downvote other's post for no reason. So I give you an upvote to make neutralize the reputation. They had explained, there's no point finding the "server sided" value. Look at this analog and you will understand.
  16. ItsSC

    Broken script, help

    Maybe the calculation is wrong.. For example, as your script asked "Timer number" if timer = 5, it should be 5, am I right? Then in your script you do 60-5, it become 55. So it is something wrong. Just from my plain guess. you should do this timer = gg.prompt( {"TIMER NUMBER"},{""},{"number"}) if(timer[1]>=60)then time = 60-timer[1] else time = timer[1] end This means when the time is 60 seconds, it should return 0. If time is 55, it should return 55, but your current script will return 5.
  17. ItsSC

    Broken script, help

    Bloxburg.lua The script is running fine, no err found. Maybe the method has been patched? Or maybe the hacking step is wrong.
  18. ItsSC

    Broken script, help

    A little question, what your inf gonna do ? Why edit the same value over and over?
  19. you mean std::endl? If it then \n in lua.
  20. I guess what Enyby means is You can search "-1500000100" then do the offset, if you didn't get any result from "-1500000100". That's mean this phone is not android 10. Then do -170000500 So in this case, I prefer using my way can help in reducing time on guessing the android version of user.
  21. Short answer : Don't use the script if they don't trust it. Just code, they don't want use then let them be. There is no point to think so much for them. If some script writer really want to do something malicious, disagree access internet wouldn't stop them.
  22. The solution was in documentation... There's no need to add new syntax , just print('GET 1: ', gg.makeRequest('http://httpbin.org/headers').content) -- simple GET request
  23. Wait... C++ is tougher than lua. At least you don't have to declare what type of the variable is For example C++: int a = 1; string b = "text"; char c = "A"; float d = 1.23; Meanwhile Lua: a = 1; b = "text"; c = "A"; d = 1.23;
  24. Short answer, don't use if you don't trust the application.
  25. Since you get the answer but yet you still get an error. I see what you did wrong there. You don't really understand when to add "end" in the script. Remember, only add end when you want to close a function / for loop/ while loop. function main() -- Do anything you want here, let's move back to your example local names = gg.choice( { "Change Slime into Ghost Boss [HARD] ", "Duplicate Items", "Damage/HP", "Legendary Items from Trees [HARD]" }, nil, "QT" ) end You ended the function in this very weird situation. What the script know is "Hey, let's call the second_Menu function" Script: There's only gg.choice() function inside this function. If you press any button, nothing triggered. Obviously, you want those button correspond to their individual function. So do not stop at here, keep move on. function main() -- Do anything you want here, let's move back to your example local names = gg.choice( { "Change Slime into Ghost Boss [HARD] ", "Duplicate Items", "Damage/HP", "Legendary Items from Trees [HARD]" }, nil, "QT" ) if names ==1 then gg.alert('Hi') end if names ==2 then gg.alert('hi') end if names ==3 then gg.alert('hi') end end Now, when you press the first button, it will go to names == 1, if you press 2, it goes to names == 2 and so on.
×
×
  • 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.