Leaderboard
Popular Content
Showing content with the highest reputation since 09/13/2025 in Posts
-
Heroic level up without shards VID_20250925203244.mp4 Dino must at Level 40 = 3;10;Dino HP::173 points
-
@Kimastar Looks like that's just a visual change. You can't actually spend the currency.2 points
-
2 points
-
2 points
-
2 points
-
View File Armed Heist Game Version: 3.2.10 SCRIPT MENU: • Godlike Heal • Regen Boost • High Damage • No Recoil Submitter xZeta Submitted 09/27/2025 Category LUA scripts2 points
-
Two updates, it was unexpected I have updated the script, you can download it on the first page2 points
-
For now, you can only change the value of the suns. As for the rest, you need to either find some other values or find the value you want.1 point
-
-- Il2CppGG by LeThi9GG require("Il2CppGG") -- Usage Instructions: -- This script demonstrates the core functionalities of Il2CppGG, a Lua-based toolkit for inspecting and manipulating Il2Cpp structures in GameGuardian. -- It covers image retrieval, class searching, method and field access, value modification, class dumping, and memory hooking. -- Prerequisites: Ensure GameGuardian is running and the target application uses Il2Cpp. Load this script in GameGuardian for execution. -- Note: Addresses and values are examples; adapt them to your specific game or application. -- For detailed API documentation, refer to the project's README.md or wiki. -- Example: Retrieve Image by Name -- Description: Fetches an Il2Cpp image (assembly) by its name. Use Il2Cpp.Image() without arguments to get all images. local Assembly = Il2Cpp.Image("Assembly-CSharp") -- Retrieves the "Assembly-CSharp" assembly. -- Example: Find Class within an Image -- Description: Searches for a class in the specified image using namespace and class name. Namespace can be nil for root-level classes. local PlayerScript = Assembly:Class(nil, "PlayerScript") -- Parameters: (namespace, classname) -- Alternative: Find Class by Name, Address, or Index -- Description: Directly searches for a class by name (recommended to use GetIndex() for performance optimization). --local PlayerScript = Il2Cpp.Class("PlayerScript") --print(PlayerScript:GetIndex()) -- Outputs the class index for faster future access. -- Example: Find Methods in a Class -- Description: Retrieves a specific method by name or lists all methods with GetMethods(). local LateUpdate = PlayerScript:GetMethod("LateUpdate") -- Finds the "LateUpdate" method. local addPoints = PlayerScript:GetMethod("addPoints") -- Finds the "addPoints" method. -- Example: Find Fields in a Class -- Description: Retrieves a specific field by name or lists all fields with GetFields(). local points = PlayerScript:GetField("points") -- Finds the "points" field. -- Alternative: Find Field by Name or Address -- Description: Global search for a field by name or direct address. --local points = Il2Cpp.Field("points") -- Searches globally by name. -- Alternative: Find Method by Name or Address -- Description: Global search for a method by name or direct address. --local AddPoints = Il2Cpp.Method("AddPoints") -- Searches globally by name. -- Example: Modify a Field Value -- Description: Locates an instance of the class and sets a new value for the field. local obj = PlayerScript:GetInstance() -- Retrieves instances of the class. points:SetValue(obj, 1000) -- Sets the "points" field to 1000 in the instance. -- Example: Dump Class to C# Format -- Description: Outputs the class structure in C# syntax for reverse engineering purposes. --print(PlayerScript:Dump()) -- Dumps the class definition, including fields, methods, and offsets. -- Hooking Examples -- Description: Demonstrates memory hooking for real-time modifications using the Hook module. -- Hooks allow intercepting and altering method calls, parameters, and fields. -- Hook a Field via a Method (e.g., hook "points" field using "LateUpdate" method) -- Description: Modifies the field value every time the method is called. local _LateUpdate = LateUpdate:field() -- Initializes hook on the method for field modification. _LateUpdate:setValues({{offset = points.offset, flags = "int", value = 9999}}) -- Sets the field to 9999. gg.sleep(10000) -- Pauses for 10 seconds to observe the effect. _LateUpdate:off() -- Disables the hook and restores original behavior. -- Hook Parameters of a Method (e.g., hook parameters of "addPoints") -- Description: Alters the parameter values passed to the method. local _addPoints = addPoints:method() -- Initializes hook on the method for parameter modification. _addPoints:param({{param = 1, flags = "int", value = 999999}}) -- Sets the first parameter to 999999. gg.sleep(10000) -- Pauses for 10 seconds. _addPoints:off() -- Disables the hook. -- Hook a Method Call (e.g., call "addPoints" from "LateUpdate") -- Description: Injects a call to another method with custom parameters during execution. local _addPoints = LateUpdate:call()(addPoints) -- Initializes hook to call "addPoints" from "LateUpdate". _addPoints:setValues({{param = 1, flags = "int", value = 999}}) -- Sets the parameter for the called method. gg.sleep(10000) -- Pauses for 10 seconds. _addPoints:off() -- Disables the hook. Il2CppGG Telegram Youtube1 point
-
sorry about that. try now, should be fixed.1 point
-
View File Snip.io Script • Buy Blaze Free/Get Coins • No Sniper Cooldown • Speed Hack • Glow Chams Submitter luckyday-999 Submitted 10/02/2025 Category LUA scripts1 point
-
1 point
-
1 point
-
We need more information...and u won't be able to find everything you see in the game. It's possible the game has obfuscated/encrypted the values. Tons of games are now also server-sided, wich means almost all the values u see, can't be changed. s*** doesn't always work, that's just how it is1 point
-
1 point
-
1 point
-
1 point
-
Why u have to offset +4 byte if u can find this value without offset? ty so much! U were banned by doing like this?1 point
-
You need to experiment with the value to get a number smaller than mine I think it is possible, but I do not know how DonFacundo knows more than I do Maybe he'll share a secret1 point
-
1 point
-
You can change the number of completed daily and weekly tasks and get all the rewards The values are not encrypted No matter how stupid this method may seem, but... The amount of energy can be restored by changing the date on the phone The trick didn't work the second time That's all I could find1 point
-
Hello, what im trying is to get all results and put them in table array, lets say all result are 100, then i need to check 1 by 1 with offset, if the value after calculate offset is the same as i want, then only add that into saved list, i also see some previous example in this link Read value in offset (#an95zfus) and here what my code looks like : gg.searchNumber('119;1;16777216::50', 4) gg.refineNumber('119', 4) local searchResults = gg.getResults(100) local q = {} local checkValue = '16777216' if #searchResults == 0 then os.exit end for i, v in ipairs(searchResults) do q[i] = {address = v.address + 0xC, flags = 4} end q = gg.getValues(q) for i, v in ipairs(q) do if v.value == checkValue then gg.addListItems({{address = q[1].address - 0xC, flags = 4, value = 25, freeze = true, name = 'SKILL'}}) end end1 point
-
Yes but problem is in website due to automatically embedded option because some time this is not working website need to add some manual things1 point
-
1 point
-
My device is rooted . And I installed game guardian successfully . It's show collecting game data but when I search codes in game nothing get GG. I am sure codes are there but GG not finding.. why ??1 point
-
Another unexpected effect of a script, this one is very useful, because the bots have a very sticky aim and powerful weapons, with that they become useless and just dance in front of you. What was supposed to be just a simple aimbot script, has this power in the game and here it is: Script Aimbot for FPS Games (#dga772lx) Vídeo sem título ‐ Feito com o Clipchamp (3).mp41 point
-
yeah.. I can add more options.. will be a few days before I can update the script though.1 point
-
2019906062;1145324665 rexy shards code for Jurassic Heroes Event how to change the value:1 point
-
Edit your eggs laid, narrow it down to 2 results and change them to 36.55Q You can also search shifts;resets:: then go to the address and the 5 addresses below are the TE you have for each egg1 point
-
View File Hunting Sniper ❥Ruminant 999 Damage ❥Ruminant 999 Muzzle Velocity ❥Ruminant 999 Slow Motion ❥Ruminant 999 Zoom Time ❥Other Snipers Stat Editor Submitter luckyday-999 Submitted 09/22/2025 Category LUA scripts1 point
-
Yes, of course! But if that's all you want, just copy the few lines of code. In fact, I blogged the creation of the tool and all of the code snippets I used: import itertools import binascii import keystone import capstone def remove_whitespace(s: str) -> str: return "".join(s.split()) def wraptext(s: str, size: int) -> list[str]: # Thanks to https://stackoverflow.com/questions/9475241/split-string-every-nth-character return [s[i:i + size] for i in range(0, len(s), size)] def getbytes(hexstring: str) -> list[str]: """ Splits a hex string into a list of bytes. Convenient function because it accounts for both whitespace-separated and un-separated hex strings. """ hexstring = remove_whitespace(hexstring) assert len(hexstring) % 2 == 0, "Invalid hex string (odd length)" return wraptext(hexstring, 2) def make_ks(architecture: str) -> keystone.Ks: if architecture == "32bit": return keystone.Ks(keystone.KS_ARCH_ARM, keystone.KS_MODE_ARM) elif architecture == "64bit": return keystone.Ks(keystone.KS_ARCH_ARM64, keystone.KS_MODE_LITTLE_ENDIAN) else: raise ValueError(f"Unrecognized architecture: {architecture}. Only '32bit' and '64bit' are valid strings") def make_cs(architecture: str) -> capstone.Cs: if architecture == "32bit": return capstone.Cs(capstone.CS_ARCH_ARM, capstone.CS_MODE_ARM) elif architecture == "64bit": return capstone.Cs(capstone.CS_ARCH_ARM64, capstone.CS_MODE_LITTLE_ENDIAN) else: raise ValueError(f"Unrecognized architecture: {architecture}. Only '32bit' and '64bit' are valid strings") def armtohex(instruction: str, architecture: str) -> str: ks = make_ks(architecture) convertedhexlist = [] convertedinstruction = ks.asm(instruction, as_bytes=True)[0] return binascii.hexlify(convertedinstruction).decode().upper() def hextoarm(hexinstruction: str, architecture: str) -> list[str]: cs = make_cs(architecture) return next(cs.disasm_lite(bytearray.fromhex(hexinstruction), 0x0))[2:] def generateaobfromarm(armcode: str, architecture: str) -> str: # Convert string of code to list of instructions instructions = list(itertools.chain(*[split1.split(";") for split1 in armcode.split("\n")])) unknownhex = "??" * 4 hexlist = [] for instruction in instructions: if instruction == "" or instruction.isspace(): continue if "0x" in instruction or "#" in instruction: hexlist.append(unknownhex) else: hexlist.append(armtohex(instruction, architecture)) # Hexlist is a list of 4 byte sequences, and we want our separator in between every byte, so we do this little # maneuver. aob = "".join(hexlist) # Unformatted return " ".join(getbytes(aob))1 point
-
I just noticed your comment about IDA. If your use case is simply to find offsets, this tool does much more than what you're looking for. In terms of the AOB generation, all it does is dumbly check if instructions contains `0x` or `#` (which is not a foolproof system and results in false positives). IDA supports AOB searches, and surely there's better tools out there that you can use to generate AOBs. For instance, https://guidedhacking.com/threads/aob-signature-maker.8524/ seems promising. I'm not trying to discourage you from using my tool, I just want to clarify that it's nothing magical.1 point
-
1 point
-
Word search (ctrl f) in this document to find your dino1 point
-
1 point
-
View File Power Zone Script ❥Epic Chest Free/1000000 Coins ❥Free Skins/Emotes/Lolli Hammer/Weapon Skins ❥Jump Height Slider ❥Low Gravity ❥Crouch Speed Slider ❥Pulse Constant High Damage ❥Nova Constant High Damage ❥Fov Slider ❥Camera Distance Slider ❥Teleport All Players Center Map ❥Teleport All Players Out Of Bounds ❥Glow Chams Submitter luckyday-999 Submitted 09/16/2025 Category LUA scripts1 point
-
View File Snake Battle Script Includes: Free Skins , Change Snake Default Length/Kill Score Submitter luckyday-999 Submitted 09/15/2025 Category LUA scripts1 point
-
View File Bad 2 Bad: Apocalypse Game: Bad 2 Bad: Apocalypse Version: 3.4.0 Main Menu Weapons Menu • HighDamage (Wilder) • HighDamage (Furry) • HighDamage (Human) • HighDamage (Titan) • Fast Fire Rate • BulletStorm • NoRecoil • FastReload • InfiniteAmmo Enemies Menu • Fast Enemy Mobility • Freeze • Big Monsters Camera Menu • HighCamera • StableView Combat Menu • HighDamage (Player + NPCs) Player Menu • CombatPoint • DisableDurabilityLoss • EnemyLootBonus • FastMobility • SetMaxLevel Shops Menu • Free All Items (Support Supply Shop) • NoLimit • FreeTrade • EndlessItems Submitter xZeta Submitted 09/13/2025 Category LUA scripts1 point
-
Do u know how to unlock (not get) dino on market?1 point
-
View File Prison Escape Script Includes: God Mode/Stat Editor , Gun Price Editor , Fly Hack On/Off , Speed Hack On/Off Game Link - https://apkcombo.com/prison-escape/com.wordmobile.prisonstorm/ note:fly hack is a bit buggy will fix in the next script update also enable the stats Hack in game after looking at the stats Submitter luckyday-999 Submitted 09/12/2025 Category LUA scripts1 point
-
1 point
-
Been a while since anyone has posted on here but ive figured out SOME things while messing around with stuff Mindset posted. Ive just been annoyed with people gate keeping others from having ANY amount of fun offline with this for literally 0 reason so. Pre note: Zenkais are harder to do, I knew how to at first but now I cant figure it out again. to edit the kit of the 2nd character in a tag unit, Its the same way but the numbers are different I.E. lets say I wanna do frieza from Goku and frieza (ID 539, ID = *****) I would search 539;11810539 in D word. 11 is for the Tag character or the Transformed state of a character. 12 is for Characters who have a THIRD version of a character I.E. succession trunks or Fusing character. If i wanted to change Fusing goeta blue I would do 608;12800608. You must ALWAYS start with the normal ID; followed by which version or else its alot of searching and extra work. It wont be ONE result but you can edit each long result and keep checking the blue card (refresh the info page every time) until it changes. Side note: If you are searching anything other than the 1st/Base character, do NOT include ::13 at the end or it will make it harder to find, and the value you want to find is where the result is not separated by any small number. 800 is Ability 1, 810 is ability 2 up to obviously 830 if the character is a zenkai. For editing blue cards, ults its the same thing, Youd search up based on this; 30XXX(Normal form) / 11030XXX(2nd char/Transformed) / 12030XXX(3rd character/fused/succession) = blue card 50 instead of 30 for Green cards for ultimates it isnt as simple as editing the last 3 numbers. You need to search the ID of the character you want, For example if I do Ultra gogeta blue his ID is 508. I would search; 508;30508::13 *****;50XXX::13 to find the characters green card as this is easier, The result Under it would either be 70### (Not cooresponding to unit ID) or -1 IF the character does not have an ult. If the character already has an ultimate, and you want to replace it for another, save that 70### value as the character name, search repeat the search but for the Ultimate you want to give, and copy that characters 70### and replace your saved one for it. I will expand on it in a picture. If the character does NOT already have an ultimate you need to Put the correct 70K number under the 50XXX, Then right below the 70K number, there is another value as -1. This determines if the character CAN draw the ultimate and actually use it, Change it to 5000 and the character can use it. 5000 is the ultimate arts card. Or you can change their green card to a character who pulls ultimates on green card. WARNING, This will not work if the character trying to use the main ability transforms, I.E. You cannot give Pre transformed Broly an ultimate, he will transform and it will just not be able to be used despite being drawn. For THESE types of characters you need to change their green card to the same ID as LF future trunks as he draws ultimates on green cards. Images will help explain this. As far as now what I DONT know how to do is to get a character to use an enhanced special arts version of a blue card, For example PURPLE spirit bomb goku's. Even if I give a character both his green AND blue cards it does not work, and the same thing for characters who for some reason have a specific need for their actual model in the LF. The characters I know of right now that cannot give their LF to MOST other characters in the game are S17, Spirit bomb absorbed goku, LF SSJ3 Spirit bomb goku, Spirit sword trunks, Yellow saiyan saga goku and Bardock. Bardock's green will also soft lock most characters in the game. I also still cannot figure out how to find out the way to change a tag character or fusion character's second or 3rd model despite knowing the ID for the character. For example, as the example earlier goku and frieza is 539. Searching 539;539;2::9 (539 the ID, 2 being Sparking rarity (0 is hero, 1 is EX, 2 is SP, 3 is ultra) will bring up results and you would just change the 2nd purple value, if its not purple its usually because its a negative value instead of positive as its randomized each time you load up, but its usually the 2nd longest value. Goku's side is the 539. Frieza's side is 11000539, and obviously if they had a 3rd character it would be 12000539. Doing 11000539;11000539;2::9 or any mix and match varient shows nothing and I cannot find out how so if anyone else can expand on this to help others that would be great. I also cannot figure out how to replace shallot for other characters inside of the customizationg screen. Hopefully to do a TLDR To change; Blue cards its *****;30XXX::13 (dont put ::13 if its for a 2nd or 3rd character) 11030XXX for 2nd, 12030XXX for 3rd Green cards its *****;50XXX::13 (same rule) 11050XXX for 2nd, 12050XXX for 3rd char 1 ability 1/2/3/4 its *****;800xxx; (no ::13, nothing) 810XXX for 2nd ability, 820XXX for 3rd/830XXX For 4th (zenkais) Char 2, same logic as 1 but you apply 11 infront of 800XXX, 12 infront of 800XX if char 3. To change ID of first char; *****;*****;R::9 ***** = ID, R= Rarity (Hero = 0, Ex = 1, SP =2, Ultra = 3), Click the 2 and edit the 2nd purple value. Theres also Z ability changing but I dont really care for that, you can mess around this that on your own but this is the values you look for as far as the 1st/base character.1 point
-
View File MWT tanks battles, Activate speed boost Use this script for speed boost your main battle tanks and artillery whose have speed: Forward Speed - Reverse Speed 65 - 27 61 - 17 51 - 12 (Script is encrypted) Submitter Chockopayyy Submitted 01/18/2025 Category LUA scripts1 point
-
I need help I just got the dump.cs of the csr2 and I want to try to turn off the anti-cheat of the game with liboffset using gg but I find it hard to do the task bcs I'm still new to doing this kind of things. I found some terms connected to cheats in the dump.cs but I can't figure it out if it's the anti-cheat offset. If anyone their could help me I would much appreciate it1 point
-
Kingdom Adventurers V2.42 Date: Aug 25th 2023 Tested on Nox Emulator using Adguard to block Ads Disclaimer: Use Cheats at your own risk, banning is likely It's raining Items Kairo Cookies, 400+ to all stats in Training and +12 for your Eggs Kingdom Adventures work in 2 ways, you need to activate an Item for it to appear in your List, from there you can change the quantity The Search Syntax is similar to Group Items except the Item Quantities are stored elsewhere. First we need to ACTIVATE the Item Search Syntax 3B9AC9FFh~C4653600h;0;0~1;0~65536;ItemCode;ItemFlag;3B9AC9FFh~C4653600h::25 3B9AC9FFh~C4653600h - Searches between -1,000,000,000 and -999,999,999, we will take a note of the Value from the Search 0 - Flag 0~1 - Flag 0 = Inactive 1 = Activated 0~65536 - Flag 0 = Inactive 65536 = Activated? ItemCode - Flag that points to the Item ItemFlag - Flag that puts items in catergories 3B9AC9FFh~C4653600h - Flag Now to put in the Kairo Cookie Values Kairo Cookies - ItemCode 171 Kairo Cookies - ItemFlag 148074 3B9AC9FFh~C4653600h;0;0~1;0~65536;171;148074;3B9AC9FFh~C4653600h::25 For my Search, the first flag is -1,812,715,520, I can use this value instead of the first 3B9AC9FFh~C4653600h for future Item Searches as long as I don't quit the game As my search is showing 0 I need to change the Activation Code to 1 and the value below it to 65536 Now it's time to change the Quantity Search Syntax ItemCode;-1;ItemCode;0~~0::13 ItemCode - Flag that points to the Item -1 - Flag ItemCode - Flag that points to the Item 0~~0 - Quantity Now to put in the Kairo Cookie Values Kairo Cookies - ItemCode 171 -1 - -1 Kairo Cookies - ItemCode 171 0 - Since we just activated the code it will be 0, you can change this to the quantity you have if the item was activated 171;-1;171;0::13 I can change the Quantity of Item, some items will reset after you quit the game, like Kairo Cookies, it's up to you whether you put in a low value then freeze it This search is pretty straight forward Activate 3B9AC9FFh~C4653600h;0;0~1;0~65536;ItemCode;ItemFlag;3B9AC9FFh~C4653600h::25 Change Quantity ItemCode;-1;ItemCode;Quantity::13 Item ItemCode;ItemFlag Accessory Sample 168;262762 Apple 110;197226 Armor Sample 166;262762 Banana 111;197226 Beef Stew 155;149226 Berry 108;197226 Bread 140;149226 Bronze 80;270954 Cabbage 103;197226 Cake 147;149226 Carrot 101;197226 Cheese 139;148202 Clam 119;197226 Copper Coin 12;96 Crab 125;197226 Creamy Soup 153;149226 Curry 159;149226 Cut of Meat 129;131690 Donut 144;149226 Egg 138;148202 Enchanted Root 87;328426 Energy Drink 94;328426 Farm Produce 71;270954 Fizzy Juice 137;149226 Flan 145;149226 Fragrant Flower 88;328426 French Toast 141;149226 Fresh Beans 98;197226 Fried Noodles 161;149226 Fried Potatoes 149;149226 Fried Rice 162;149226 Fruit Basket 117;149226 Garlic 106;197226 Gold Coin 14;96 Gold Nugget 81;270954 Grape Juice 136;149226 Grapes 114;197226 Hamburger 143;149226 Healthy Mushroom 97;197226 Hearty Soup 154;149226 Helmet Sample 167;262762 High Grade Brick 78;270954 Icecream 146;149226 Iron Ore 79;270954 Kairo Cake 148;149226 Kairo Cookie 171;148074 Large Nail 76;270954 Leaf of Life 86;328426 Mackerel 120;197226 Mage's Bottle 91;328426 Magic Bottle 90;328426 Marbled Beef 131;149226 Meat on the Bone 128;131690 Medical Herb 85;270954 Melon 115;197226 Milk 135;148202 Mixed Fruit Juice 134;149226 National Flag 73;270954 Nuts 72;270954 Octopus 127;197226 Onion 102;197226 Orange 109;197226 Paella 156;149226 Pasta 163;149226 Pear 112;197226 Pineapple 116;197226 Pizza 157;149226 Potato 99;197226 Pretty Cloth 84;270954 Radish 100;197226 Rice Omelete 160;149226 Rope 77;270954 Sage's Potion 93;328426 Sage's Tome 169;262762 Salad 107;149226 Sashimi Platter 151;149226 Scroll of Knowledge 170;262762 Sea Bream 122;197226 Sea Snail 118;197226 Sea Urchin 123;197226 Shield Sample 165;262762 Shrimp 124;197226 Silk Cloth 82;270954 Silver Coin 13;96 Sliced Bread 142;149226 Sorceror's Bottle 92;328426 Spit Roast 130;149226 Spring Water 74;328298 Squid 126;197226 Steak 158;149226 Strawberry 113;197226 Strong Cloth 83;270954 Sturdy Board 75;270954 Sushi 150;149226 Sweet Medicine 95;328426 Sweet Mushroom 96;197226 Sweetcorn 105;197226 Tomato 104;197226 Top Grade Beef 132;149226 Tuna 121;197226 Vegetable Soup 152;149226 Veggie Juice 133;149226 Vitality Bottle 89;328426 Wairo Cookie 172;148074 Weapon Sample 164;2627621 point
-
1 point
-
Then don't touch the points, just ignore them...then no issues with negative. Let me know if this works for you: MENACING: -472273170 specialDefense: -1001418754 defense: -1263051503 attack: 1591370207 hp: 5734 specialAttack: 1224542453 sp: 5741 speed: 280450252 stringformatting.lua You can also just use the attack value. Then when fighting a pokemon you get more XP resulting in max leveling your pokemon.1 point
-
since this thread gained attention i will post here on how to hack gold. Gold can be hacked from the map where you collect gold. Level each zone 1 by 1. Search level by D-word. once you have 1 value of level left. Change it to 99999 and upgrade. Your gold will increase based on the level. Keep doing this for every new gold farm zone you unlock. Diamond is a bit more complicated but is possible to hack. i figured this out from the PVP rewards. once you unlock a PVP tier level, lets say wood, silver whatever tier you unlock, it gives you a chest as reward. once you open the chest you get diamonds as reward. Once you open the chest i think it had a long cool down. So basically the trick is to reset the timer of the chest so you can open infinitely. Search time in game by fuzzy search and value float. so for e.g. lets say the PVP chest has a 12 hr cooldown (12 hr * 3600 = 43200.00) so do a fuzzy search for value type of float. And keep refining search by decreasing. So check how much time is left on your pvp rewards chest and keep refining value until search matches the value closest to your PVP chest time. set it to 0 and freeze. Then spam open the pvp chest for unlimited diamonds. This method is tiresome but it works. The only method i could find. I haven't logged in game for a while, so not sure if its patched or not. Give it a try and see what you can find. Hope this helps.1 point
-
1 point