Jump to content

ItsSC

VIP+
  • Posts

    706
  • Joined

  • Last visited

  • Days Won

    36

Posts posted by ItsSC

  1. Hi, after swapping the item, you have to make one change to anything in your backpack, for example change your weapon, change attachment, consume a medic, consume a food, etc. Then, you have to pause the game, and go to advanced setting, save data and upload game data. Next, restart the game, and the item will be swapped.

     

    For more context, you may refer to this guide

    Fury Survivor: Pixel Z (#5e7gi4ew)

    The script uses the mechanism outlined in the guideline, restart is required in order for the swap to be success. I know it is tedious, but the script comes in handy for all the modification tasks.

  2. Fury Survivor: Pixel Z


    Fury Survivor: Pixel Z

    Credit to @NoFear for discovered the hacks

    This script is specifically designed to swap item and modify item amount in Fury Survivor: Pixel Z. The script is expected to perform everything laid out in this guide in an automated manner. The following is the steps of using the script:

    1. Search the item that you want to modify, enter the amount of the item you owned. 
    2. Once the item is saved to the script, you may perform item swap or item amount hack.

    Watch the video guide for more details. 

    Note: You do not have to search again for the address if the item is still inside your GameGuardian's saved list. However, there are cases when the script detected that the addresses are no longer holding the value for particular items, the script will remove the saved item automatically.

    If you need any help about the script, you may go to Help for further information. If nothing solved your problem, try to toggle on the Debug Mode on the bottom left button, and redo what you had done that cannot accomplish what you want. Then, go to the same directory as the script, there will be a file named "FurySurvivor_<timestamp>.log", send it to me and further describe the problem.

     

    Question: I do not see my item in the script.

    Answer: The item list is lacking in the script, you may refer to this guide for manual edit if your item is not in the script. With the help of this script, you can easily locate to other item that is available in the script, and try to perform a manual item swap hack to figure out the item type you want. If you are unsure about what to edit, head back to the script and press on "View items" to check what addresses are expected to be edit in the hack. If you wish the item type to be added in the script, send me the code that you figured out, I will add it into the script from time to time when I am free.

     

    Question: Will I get banned using this script?

    Answer: Do not over-hack the item amount, keep the value reasonable to prevent any ban and it should be safe from ban.


     

  3. 2 minutes ago, sammax71 said:

    @ItsSC

    Maybe the ban was because you hacked the crystals directly?

    I'm not sure is that because I hacked the Heroic Sword (which is not possible to get in game I guess), or the gems. I will try figure it out 🤔.
    Tips: If you stuck in the loading screen where the right-bottom status shown "Comparing maps", you're probably banned from the game.

  4. 4 hours ago, EnYi said:

    Wow thx so much that is so well explained! I understand everything now!!!! Btw where did you learn all that? I cannot find these  information anywhere on the internet. LOL

    I've been using gameguardian since 2017, all of these information are explored by myself. If you're interested in exploring these, I guess you can learn Computer Organization and Architecture.

  5. Short answer: The button auto generate the minimum possible group size.

    Long answer:

    image.thumb.png.8639f0efcc563b8e907fdf83fef9aea3.png

    Looks at the right-most two digits, 00, 04, 08, 0C, 10.  For example, you searching XX;YY, which are two adjacent DWORD, the group size will be 5, which is counted by 00, 01, 02, 03, 04 (5 addresses apart). This is because one DWORD hold up space of 4. Meaning 0D eating up address 00, 01, 02, 03. By toggling the byte, you can see more addresses hiding between 00 and 04.

    image.thumb.png.0d6371fe60946c9e697af3529ad7077f.pngimage.thumb.png.3cb41e81e7494b04f2c277781faddfcd.png

    So for example you are searching XX;YY;ZZ, the group size will be 9, which follow the formula 4n - 3, where n means how many values are there.

    XX;YY n =2
    XX;YY;ZZ n=3
    XX;YY;ZZ;aa n =4 and so on...

    Then the button generate the smallest possible group size depends on how many values you are trying to find.

  6. 16 hours ago, Bill4gr said:

    Can someone please explain to me how to do this?

    How did ItsSC found the - 1;250;50::73? 

    I ve searched every option in GG and still missing this.. 

    Can someone help? Anyone! 

    Please! 

    The -1;250;50::73 is exactly yield from  250;50 (the price of gold).

  7. 2 hours ago, cisco72563 said:

    Hello @ItsSC and @NoFear I have an idea to get the old season rewards. Why not trigger the previous events (as seen in the picture below which I edited) with the help of event files located in previous games like (seasonpassreward.lua). You can attach your script to these files like the previous seasons and once the script runs the season can work along with the latest season. The scripts (dialogue's of that season) will be triggered which will allow the rewards to be redeemed. Just my thoughts otherwise you guys know better.

    new.png

    Yes I did think of that before, but didn't found a way to swap the season, although I had the season code. Still finding da way.

  8. Sharing this method publicly will definitely patched in few days... So turning this into a script is better idea.

    HomeScape.png

    As I mentioned up there, older season's exclusive item cannot be hack yet, I will try to find a way to swap othose items, if I have the luck.

  9. 59 minutes ago, NoFear said:

    New event started? I just checked, it isn't yet for me

    It started yesterday. I heard they said you can also do time jump to get the season update earlier.

    Edited: I have found the ID for earlier season's reward like Gothic suit, sport suit, etc. But it seems like I cannot get the old season reward, if i switch any reward to Magic suit, It works but not for gothic suit or sport suit. And surprisingly value are very easy to edit, unlimited booster, unlimited stars and coins.

  10. Memory range: Anonymous

    Dword search 

    -1;250;50::73

    Edit the 250 to -999999999 and go to shop buy the 375000 gold pack. The gold might goes negative, then buy two times, it will be overflow and turns into positive value.

  11. Not sure which part you do not understand, I guess the second method i mentioned. Here is an example how to implement what I said there.

     

    For example you are going to hack 3 items in the store. 

    Item A 500 gold

    Item B 1300 gold

    Item C 2000 gold

    local ITEM_PRICE = {{"Item A", 500}, {"Item B", 1300}, {"Item C", 2000}}
    --[[Store your item here, Name with price. Or you can create more list according to their categories]]
    local ITEM_NAME = {} --[[Let's store the name in here]]
    for item, properties in pairs(ITEM_PRICE) do
        ITEM_NAME[#ITEM_NAME+1] = properties[1]
    end
    function buyItem(TYPE)
        gg.clearResults()
        local select = gg.choice(ITEM_NAME, nil, "ITSSC ITEM STORAGE")
        gg.searchNumber(ITEM_PRICE[select][2], TYPE)
        gg.getResults(gg.getResultsCount())
        gg.editAll(-ITEM_PRICE[select][2], TYPE)
    end
    buyItem(4)

     

  12. 1 hour ago, JinXprO said:

    im confused .. is that need to turn on internet after re install my banned account ? if yes, theres no save button. 

    any video ?

    Everything are done online. What I said was just using a new account to replace the banned one. 

    At step 4, you have to wait for a while and the game will pop out a message, asking you to select which account to continue. Choose the new one and TALA, replacement complete.

  13. In case if someone got ban from team and want to create a new account. Here is the tips i use.

    1. Create a new emulator / Use another phone to download the game.

    2. Play the game and when u finish the tutorial, connect the new account with your banned google account.

    3. Uninstall the game from your banned device,, or simply just remove data, then redownload and at the loading screen select "Save progress", choose the google account you used just now.

    4. Enter the game, you will still sticked to the banned account, but the game will ask you to choose which account to use (New or banned). Choose the banned one and type in "Confirm".

    5. Now you have a new fresh account.

  14. 20 hours ago, Akuma9528 said:

    No menu bro just one eyes

     

    Screenshot_20210305-193019.png

    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. 

     

  15. 5 minutes ago, NoFear said:

    Which is more popular?

    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.

×
×
  • 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.