Jump to content

8 posts in this topic

Recommended Posts

Posted (edited)

Hey, i'm making a save-editor in my free time. For now, it can only read your inventory (armour, weapons, gold, scrolls, diamonds, barrel and etc..).

It will work by inputing the "com.cobby.lonelysurvivor.plist" file in the software.

Sneak peek:

Inventory.png

*If i'm inflicting some rule, i'm sorry. First post.

 

If you have a file editor, you can edit it by yourself.

1) Go to the file location (var/mobile/Containers/Data/Application/Lonely Survivor/Library/Preferences/com.cobby.lonelysurvivor.plist)

2) Find the key "GAME_DATA".

3) To edit simple itens, go to "itemData".

<key>GAME_DATA</key>
	<string>{"itemData":{"10":402,"13":8,"23":144,"11":85,"21":84,"35":94,"37":77960,"18":1160,"9":391,"8":4589,"7":396,"6":7,"5":415,"4":197,"3":348534,"2":61070,"1":2685991,"36":745,"1000":102,"43":950,"42":999974,"1001":102,"24":939,"22":92,"12":11},..........
Known ID's:	       
'1':"Coins",
'2':"Diamonds",
'4':"Stamina",
'5':"Weapon Scroll",
'6':"Helmet Scroll",
'7':"Gauntlets Scroll",
'8':"Shield Scroll",
'9':"Cloth Scroll",
'10':"Shoes Scroll",
'11':"Talent Upgrade?",
'12':"Key Normal Treasure Chest",
'13':"Key Epic Treasure Chest",
'21':"Steel barrel",
'22':"Silver barrel",
'23':"Gold barrel",
'24':"Diamond barrel",
'35':"Hero EXP",
'42':"Dice from event",
'1000':"Hero Ruby Ascend Shard",
'1001':"Hero Boney Ascend Shard",
'1002':"Hero Lv Bu Ascend Shard ?"

4) As for Armour and weapons, the tag is "equipData":

"equipData":{"378":{"lv":1,"eid":378,"id":50404},"654":{"lv":1,"eid":654,"id":50102},"754":{"id":20301,"eid":754,"lv":1},"778":{"id":60502,"eid":778,"lv":1},"678":{"lv":1,"eid":678,"id":50203},
  • the first tag (Ex: "378") is the slot.
  • "lv" is the level of the item.
  • "eid" is the slot (yeah, again).
  • "id" is what determines the type of the item, the variety and the rarity. 

           Ex:{ "378":{"lv":1,"eid":378,"id":50404},.....

                "id": 50404

                5     04     04

  1. The first digit is the type ( 1 is weapon, 2 is helmet, 3 is Gauntlets, 4 is Shield, 5 is Armour, 6 is Shoes)
  2. The second and third is the variety of the item (Agility, lightning)
  3. the last two digits is the rarity (Rare, Legend, Mythic ... etc)
Known rarity:
'01':"Normal",
'02':"Excellent",
'03':"Rare",
'04':"Epic",
'05':"Epic (1)",
'06':"Epic (2)",
'07':"Legendary",
'08':"Legendary (1)",
'09':"Legendary (2)",
'10':"Legendary (3)",
'11':"Mythic",
'12':"Mythic (1)",
'13':"Mythic (2)",
'14':"Mythic (3)"

5) Edit as you like, save and then open the game.

 

Important: As any type of modification, you can be banned.

Updated by kalffman
Additional information
  • Like 1
  • Informative 1
Posted
On 10/2/2022 at 9:15 PM, kalffman said:

Hey, i'm making a save-editor in my free time. For now, it can only read your inventory (armour, weapons, gold, scrolls, diamonds, barrel and etc..).

It will work by inputing the "com.cobby.lonelysurvivor.plist" file in the software.

Sneak peek:

Inventory.png

*If i'm inflicting some rule, i'm sorry. First post.

 

If you have a file editor, you can edit it by yourself.

1) Go to the file location (var/mobile/Containers/Data/Application/Lonely Survivor/Library/Preferences/com.cobby.lonelysurvivor.plist)

2) Find the key "GAME_DATA".

3) To edit simple itens, go to "itemData".

<key>GAME_DATA</key>
	<string>{"itemData":{"10":402,"13":8,"23":144,"11":85,"21":84,"35":94,"37":77960,"18":1160,"9":391,"8":4589,"7":396,"6":7,"5":415,"4":197,"3":348534,"2":61070,"1":2685991,"36":745,"1000":102,"43":950,"42":999974,"1001":102,"24":939,"22":92,"12":11},..........
Known ID's:	       
'1':"Coins",
'2':"Diamonds",
'4':"Stamina",
'5':"Weapon Scroll",
'6':"Helmet Scroll",
'7':"Gauntlets Scroll",
'8':"Shield Scroll",
'9':"Cloth Scroll",
'10':"Shoes Scroll",
'11':"Talent Upgrade?",
'12':"Key Normal Treasure Chest",
'13':"Key Epic Treasure Chest",
'21':"Steel barrel",
'22':"Silver barrel",
'23':"Gold barrel",
'24':"Diamond barrel",
'35':"Hero EXP",
'42':"Dice from event",
'1000':"Hero Ruby Ascend Shard",
'1001':"Hero Boney Ascend Shard",
'1002':"Hero Lv Bu Ascend Shard ?"

4) As for Armour and weapons, the tag is "equipData":

"equipData":{"378":{"lv":1,"eid":378,"id":50404},"654":{"lv":1,"eid":654,"id":50102},"754":{"id":20301,"eid":754,"lv":1},"778":{"id":60502,"eid":778,"lv":1},"678":{"lv":1,"eid":678,"id":50203},
  • the first tag (Ex: "378") is the slot.
  • "lv" is the level of the item.
  • "eid" is the slot (yeah, again).
  • "id" is what determines the type of the item, the variety and the rarity. 

           Ex:{ "378":{"lv":1,"eid":378,"id":50404},.....

                "id": 50404

                5     04     04

  1. The first digit is the type ( 1 is weapon, 2 is helmet, 3 is Gauntlets, 4 is Shield, 5 is Armour, 6 is Shoes)
  2. The second and third is the variety of the item (Agility, lightning)
  3. the last two digits is the rarity (Rare, Legend, Mythic ... etc)
Known rarity:
'01':"Normal",
'02':"Excellent",
'03':"Rare",
'04':"Epic",
'05':"Epic (1)",
'06':"Epic (2)",
'07':"Legendary",
'08':"Legendary (1)",
'09':"Legendary (2)",
'10':"Legendary (3)",
'11':"Mythic",
'12':"Mythic (1)",
'13':"Mythic (2)",
'14':"Mythic (3)"

5) Edit as you like, save and then open the game.

 

Important: As any type of modification, you can be banned.

How to clip?? Pls

Posted
On 10/2/2022 at 3:15 PM, kalffman said:

Hey, i'm making a save-editor in my free time. For now, it can only read your inventory (armour, weapons, gold, scrolls, diamonds, barrel and etc..).

It will work by inputing the "com.cobby.lonelysurvivor.plist" file in the software.

Sneak peek:

Inventory.png

*If i'm inflicting some rule, i'm sorry. First post.

 

If you have a file editor, you can edit it by yourself.

1) Go to the file location (var/mobile/Containers/Data/Application/Lonely Survivor/Library/Preferences/com.cobby.lonelysurvivor.plist)

2) Find the key "GAME_DATA".

3) To edit simple itens, go to "itemData".

<key>GAME_DATA</key>
	<string>{"itemData":{"10":402,"13":8,"23":144,"11":85,"21":84,"35":94,"37":77960,"18":1160,"9":391,"8":4589,"7":396,"6":7,"5":415,"4":197,"3":348534,"2":61070,"1":2685991,"36":745,"1000":102,"43":950,"42":999974,"1001":102,"24":939,"22":92,"12":11},..........
Known ID's:	       
'1':"Coins",
'2':"Diamonds",
'4':"Stamina",
'5':"Weapon Scroll",
'6':"Helmet Scroll",
'7':"Gauntlets Scroll",
'8':"Shield Scroll",
'9':"Cloth Scroll",
'10':"Shoes Scroll",
'11':"Talent Upgrade?",
'12':"Key Normal Treasure Chest",
'13':"Key Epic Treasure Chest",
'21':"Steel barrel",
'22':"Silver barrel",
'23':"Gold barrel",
'24':"Diamond barrel",
'35':"Hero EXP",
'42':"Dice from event",
'1000':"Hero Ruby Ascend Shard",
'1001':"Hero Boney Ascend Shard",
'1002':"Hero Lv Bu Ascend Shard ?"

4) As for Armour and weapons, the tag is "equipData":

"equipData":{"378":{"lv":1,"eid":378,"id":50404},"654":{"lv":1,"eid":654,"id":50102},"754":{"id":20301,"eid":754,"lv":1},"778":{"id":60502,"eid":778,"lv":1},"678":{"lv":1,"eid":678,"id":50203},
  • the first tag (Ex: "378") is the slot.
  • "lv" is the level of the item.
  • "eid" is the slot (yeah, again).
  • "id" is what determines the type of the item, the variety and the rarity. 

           Ex:{ "378":{"lv":1,"eid":378,"id":50404},.....

                "id": 50404

                5     04     04

  1. The first digit is the type ( 1 is weapon, 2 is helmet, 3 is Gauntlets, 4 is Shield, 5 is Armour, 6 is Shoes)
  2. The second and third is the variety of the item (Agility, lightning)
  3. the last two digits is the rarity (Rare, Legend, Mythic ... etc)
Known rarity:
'01':"Normal",
'02':"Excellent",
'03':"Rare",
'04':"Epic",
'05':"Epic (1)",
'06':"Epic (2)",
'07':"Legendary",
'08':"Legendary (1)",
'09':"Legendary (2)",
'10':"Legendary (3)",
'11':"Mythic",
'12':"Mythic (1)",
'13':"Mythic (2)",
'14':"Mythic (3)"

5) Edit as you like, save and then open the game.

 

Important: As any type of modification, you can be banned.

That's some dope sh!t.

Posted

It used to work in the Japanese version as well.  

However, after the correction update.

it does not accept changes to the plist file, probably because the check for data alteration has become stricter.

I'm trying to find out if there's a workaround, but unfortunately it's not possible yet.  

Let's share our knowledge and do our best.

Posted
On 10/2/2022 at 9:15 PM, kalffman said:

Hey, i'm making a save-editor in my free time. For now, it can only read your inventory (armour, weapons, gold, scrolls, diamonds, barrel and etc..).

It will work by inputing the "com.cobby.lonelysurvivor.plist" file in the software.

Sneak peek:

Inventory.png

*If i'm inflicting some rule, i'm sorry. First post.

 

If you have a file editor, you can edit it by yourself.

1) Go to the file location (var/mobile/Containers/Data/Application/Lonely Survivor/Library/Preferences/com.cobby.lonelysurvivor.plist)

2) Find the key "GAME_DATA".

3) To edit simple itens, go to "itemData".

<key>GAME_DATA</key>
	<string>{"itemData":{"10":402,"13":8,"23":144,"11":85,"21":84,"35":94,"37":77960,"18":1160,"9":391,"8":4589,"7":396,"6":7,"5":415,"4":197,"3":348534,"2":61070,"1":2685991,"36":745,"1000":102,"43":950,"42":999974,"1001":102,"24":939,"22":92,"12":11},..........
Known ID's:	       
'1':"Coins",
'2':"Diamonds",
'4':"Stamina",
'5':"Weapon Scroll",
'6':"Helmet Scroll",
'7':"Gauntlets Scroll",
'8':"Shield Scroll",
'9':"Cloth Scroll",
'10':"Shoes Scroll",
'11':"Talent Upgrade?",
'12':"Key Normal Treasure Chest",
'13':"Key Epic Treasure Chest",
'21':"Steel barrel",
'22':"Silver barrel",
'23':"Gold barrel",
'24':"Diamond barrel",
'35':"Hero EXP",
'42':"Dice from event",
'1000':"Hero Ruby Ascend Shard",
'1001':"Hero Boney Ascend Shard",
'1002':"Hero Lv Bu Ascend Shard ?"

4) As for Armour and weapons, the tag is "equipData":

"equipData":{"378":{"lv":1,"eid":378,"id":50404},"654":{"lv":1,"eid":654,"id":50102},"754":{"id":20301,"eid":754,"lv":1},"778":{"id":60502,"eid":778,"lv":1},"678":{"lv":1,"eid":678,"id":50203},
  • the first tag (Ex: "378") is the slot.
  • "lv" is the level of the item.
  • "eid" is the slot (yeah, again).
  • "id" is what determines the type of the item, the variety and the rarity. 

           Ex:{ "378":{"lv":1,"eid":378,"id":50404},.....

                "id": 50404

                5     04     04

  1. The first digit is the type ( 1 is weapon, 2 is helmet, 3 is Gauntlets, 4 is Shield, 5 is Armour, 6 is Shoes)
  2. The second and third is the variety of the item (Agility, lightning)
  3. the last two digits is the rarity (Rare, Legend, Mythic ... etc)
Known rarity:
'01':"Normal",
'02':"Excellent",
'03':"Rare",
'04':"Epic",
'05':"Epic (1)",
'06':"Epic (2)",
'07':"Legendary",
'08':"Legendary (1)",
'09':"Legendary (2)",
'10':"Legendary (3)",
'11':"Mythic",
'12':"Mythic (1)",
'13':"Mythic (2)",
'14':"Mythic (3)"

5) Edit as you like, save and then open the game.

 

Important: As any type of modification, you can be banned.

 

Do you have any way to make it works with the current version? When I restore the game data it always detect as new account and won't use the restored (modified file).

Posted
On 10/9/2022 at 4:29 PM, rakana said:

It used to work in the Japanese version as well.  

However, after the correction update.

it does not accept changes to the plist file, probably because the check for data alteration has become stricter.

I'm trying to find out if there's a workaround, but unfortunately it's not possible yet.  

Let's share our knowledge and do our best.

@rakana Hi bro !

Sorry to bother you, have you found another way to sync the newly added data recently?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Match Villains v1.28.0 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Match Villains By Good Job Games Bilisim Yazilim ve Pazarlama AS
      Bundle ID: com.goodjobgames.matchvillains
      iTunes Store Link: https://apps.apple.com/us/app/match-villains/id6479752688?uo=4
       

      🚀 Hack Features

      - Coins
      - Lives
      - Moves Freeze
      - Booster


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Informative
        • Like
      • 13 replies
    • Match Villains v1.28.0 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Match Villains By Good Job Games Bilisim Yazilim ve Pazarlama AS
      Bundle ID: com.goodjobgames.matchvillains
      iTunes Store Link: https://apps.apple.com/us/app/match-villains/id6479752688?uo=4
       

      🚀 Hack Features

      - Coins
      - Lives
      - Moves Freeze
      - Booster


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Agree
        • Like
      • 18 replies
    • Pocket Necro v1.5.2 [ +11 Cheats ] Gold Unlimited
      Modded/Hacked App: Pocket Necromancer By Sandsoft Publishing Company
      Bundle ID: com.quicksand.pocketnecromancer
      iTunes Store Link: https://apps.apple.com/us/app/pocket-necromancer/id6450004790?uo=4


      Hack Features:
      - ADS NO [ Reward Fee ]

      - Premium Active

      - Energy Cost 0

      - Energy Increaser

      - Gold Unlimited [ Win Battle ] Rewards

      - Stage Unlocked

      - Chapter Unlocked +2

      - Play Any [ Stage & Ch ]

      - Never Die

      - DMG

      - Speed Mov

      - Bullet Max [ Works With Weapon Only Just Equip ]


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Haha
        • Winner
        • Like
      • 49 replies
    • Pocket Necro v1.5.2 [ +11 Jailed ] Gold Unlimited
      Modded/Hacked App: Pocket Necromancer By Sandsoft Publishing Company
      Bundle ID: com.quicksand.pocketnecromancer
      iTunes Store Link: https://apps.apple.com/us/app/pocket-necromancer/id6450004790?uo=4


      Hack Features:

      - ADS NO [ Reward Fee ]

      - Premium Active

      - Energy Cost 0

      - Energy Increaser

      - Gold Unlimited [ Win Battle ] Rewards

      - Stage Unlocked

      - Chapter Unlocked +2

      - Play Any [ Stage & Ch ]

      - Never Die

      - DMG

      - Speed Mov

      - Bullet Max [ Works With Weapon Only Just Equip ]

       
      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 54 replies
    • Turret Defense King v1.2.20 [ +9 Cheats ] Gold Max
      Modded/Hacked App: Turret Defense King By MOBIRIX
      Bundle ID: com.mobirix.tdwt
      iTunes Store Link: https://apps.apple.com/us/app/turret-defense-king/id6480586157?uo=4


      🚀 Hack Features

      - ADS NO [ Rewards Free]

      - Gold [ Revive To Get ]

      - Battle Coins [ Enemy Drop Kill ]

      - Tower Cost [ Earn Battle Coins ]

      - Enemy Max [ Only Stage Mod] Easy Win

      - Wave Max [ Only Stage Mod] Easy Win

      - Tower DMG [ Just Rebuild & Upgrade ]

      - Tower ATK Range

      - Tower Fire Rate
        • Informative
        • Agree
        • Winner
        • Like
      • 13 replies
    • Turret Defense King v1.2.20 [ +9 Jailed ] Gold Max
      Modded/Hacked App: Turret Defense King By MOBIRIX
      Bundle ID: com.mobirix.tdwt
      iTunes Store Link: https://apps.apple.com/us/app/turret-defense-king/id6480586157?uo=4


      🚀 Hack Features

      - ADS NO [ Rewards Free]

      - Gold [ Revive To Get ]

      - Battle Coins [ Enemy Drop Kill ]

      - Tower Cost [ Earn Battle Coins ]

      - Enemy Max [ Only Stage Mod] Easy Win

      - Wave Max [ Only Stage Mod] Easy Win

      - Tower DMG [ Just Rebuild & Upgrade ]

      - Tower ATK Range

      - Tower Fire Rate
        • Haha
        • Thanks
        • Winner
        • Like
      • 14 replies
    • Tower Rush - Tower Defense TD v2.0.1 [ +2 Cheats ] AI Freeze
      Modded/Hacked App: Tower Rush - Tower Defense TD By Raw Sunshine, LLC
      Bundle ID: com.sunshine.towerrushlegend
      App Store Link: https://apps.apple.com/us/app/tower-rush-tower-defense-td/id6455461456?uo=4

       

      🤩 Hack Features

      - Elixir Freeze
      - AI Freeze [ Can't Place The Tower ] 

        • Informative
        • Agree
        • Winner
        • Like
      • 10 replies
    • Tower Rush - Tower Defense TD v2.0.1 [ +2 Jailed ] AI Freeze
      Modded/Hacked App: Tower Rush - Tower Defense TD By Raw Sunshine, LLC
      Bundle ID: com.sunshine.towerrushlegend
      App Store Link: https://apps.apple.com/us/app/tower-rush-tower-defense-td/id6455461456?uo=4
       

      🤩 Hack Features

      - Elixir Freeze
      - AI Freeze [ Can't Place The Tower ]

        • Like
      • 3 replies
    • Royal Kingdom v19048 [ +9 Jailed ] Auto Win
      Modded/Hacked App: Royal Kingdom By Dream Games Teknoloji Anonim Sirketi
      Bundle ID: com.dreamgames.royalkingdom
      iTunes Store Link: https://apps.apple.com/us/app/royal-kingdom/id1606549505?uo=4


      Hack Features:

      - Coins [ Win Match ]

      - Potions

      - Lives Free

      - Booster Max

      - ViP Frame Unlock

      - Kingdom Pass Free

      - District unlock [ One Task Only ]

      - Auto Win [ Just One Move ]

      - Colour Spawn [ Blue Green Red Yellow Pink Orange ] Choose One Only


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 52 replies
    • Royal Kingdom v19048 [ +9 Cheats ] Auto Win
      Modded/Hacked App: Royal Kingdom By Dream Games Teknoloji Anonim Sirketi
      Bundle ID: com.dreamgames.royalkingdom
      iTunes Store Link: https://apps.apple.com/us/app/royal-kingdom/id1606549505?uo=4



      Hack Features:
      - Coins [ Win Match ]

      - Potions

      - Lives Free

      - Booster Max

      - ViP Frame Unlock

      - Kingdom Pass Free

      - District unlock [ One Task Only ]

      - Auto Win [ Just One Move ]

      - Colour Spawn [ Blue Green Red Yellow Pink Orange ] Choose One Only


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 43 replies
    • Galaxiga - Classic 80s Arcade V10.86 [ +7 Jailed ] Energy Max
      Modded/Hacked App: Galaxiga - Classic 80s Arcade By ONESOFT GLOBAL PTE. LTD.
      Bundle ID: com.os.space.force.galaxy.alien
      iTunes Store Link: https://apps.apple.com/us/app/galaxiga-classic-80s-arcade/id1519367184?uo=4


      Hack Features:

      - Premium Pass [ Rewards Only ]

      - Energy Unlimited [ Linked Premium Pass ]

      - Plane Unlocked [ Tire 1 Tire 2 ] 

      - Drone Unlocked [ Tire 1 Tire 2 ]

      - Stone Unlocked [ Tire 1 Tire 2 ] 

      - Unlock Gem Cost 0 [ Plane Drone Stone ]

      - Easy Kill [ Only SP - No PVP ] 

      - Win PvP Select Higher Rank [ Plane Drone Stone ] Easy To Win PvP NO Bannnn


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Winner
        • Like
      • 43 replies
    • Galaxiga - Classic 80s Arcade V10.86 [ +7 Cheats ] Energy Max
      Modded/Hacked App: Galaxiga - Classic 80s Arcade By ONESOFT GLOBAL PTE. LTD.
      Bundle ID: com.os.space.force.galaxy.alien
      iTunes Store Link: https://apps.apple.com/us/app/galaxiga-classic-80s-arcade/id1519367184?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Premium Pass [ Rewards Only ]

      - Energy Unlimited [ Linked Premium Pass ]

      - Plane Unlocked [ Tire 1 Tire 2 ] 

      - Drone Unlocked [ Tire 1 Tire 2 ]

      - Stone Unlocked [ Tire 1 Tire 2 ] 

      - Unlock Gem Cost 0 [ Plane Drone Stone ] Maybe Effect PvP 

      - Easy Kill [ Only SP - No PVP ] 

      - Win PvP Select Higher Rank [ Plane Drone Stone ]

      Not3:- Don't Abuse The Hack Incase Banned Lower Chances Maybe


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content

      Download Hack
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 76 replies
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines