Jump to content

Search the Community

Showing results for 'Huawei mate 10'.

  • Search By Tags

    Type tags separated by commas.
    For example, the common name of the game: PUBG, Free Fire, Rules of Survival, Critical Ops, Mobile Legends: Bang Bang, etc.
  • Search By Author

Content Type


Forums

  • GameGuardian
    • Requests
    • Help
    • Guides
    • Cheats
    • Video Tutorials
    • Unintended Effects
  • General
    • General Discussion
    • Introduce yourself (:
    • Announcements
    • Website suggestions/Bugs
  • Downloads Support
    • Apps
    • LUA scripts
  • Online Multiplayer Mods
    • Altering Online Games with Gameguardian
    • Download Mods
  • Other Hacks
    • Tutorials
    • Non-GameGuardian
  • Archive
    • Archived topics

Categories

  • Official Downloads
  • Virtual spaces (no root)
  • LUA scripts
    • Forward Assault
    • Free Fire
    • PUBG
    • Rules of Survival
    • Templates
    • Tools
  • Test applications
  • Other

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Device


Discord ID

  1. Version 2.1.0

    2,399 downloads

    Description: extracts PE-files (.exe, .dll, etc.) from .bin files. For example, memory dumps. For example, from the one that can be obtained through GameGuardian. Use cases: 1. .exe file to be placed in one folder with a .bin file (s) and run. 2. On the .exe file, drag the folder with the .bin file (s). 3. Write in the command line: > get_dll_from_bin.exe path/to/your/.bin/files Result: In the same folder where there were .bin files there will appear .dll files if something was found. Example of output: Usage: drag dir with .bin files to .exe. Tool scan its and extract pe files as .dll files in same folder. Author: Enyby. Used dir: dump dump/com.raongames.growcastle-00008000-0000a000.bin: dump/com.raongames.growcastle-04000000-1c106000.bin: Not valid PE header: 2e746578 dump/com.raongames.growcastle-1c179000-1c17c000.bin: dump/com.raongames.growcastle-94ebb000-95161000.bin: Make 0.dll with size 2737152 dump/com.raongames.growcastle-95169000-951ae000.bin: dump/com.raongames.growcastle-951c6000-95321000.bin: Make 1.dll with size 359424 Make 2.dll with size 878592 dump/com.raongames.growcastle-95325000-95335000.bin: dump/com.raongames.growcastle-9533d000-95583000.bin: Make 3.dll with size 309248 dump/com.raongames.growcastle-95783000-96fe2000.bin: Make 4.dll with size 1684480 dump/com.raongames.growcastle-96fe5000-97371000.bin: dump/com.raongames.growcastle-976f5000-b7756000.bin: dump/com.raongames.growcastle-b7942000-bac40000.bin: Make 5.dll with size 3072 Make 6.dll with size 9728 Make 7.dll with size 171520 Make 8.dll with size 103936 Make 9.dll with size 6656 Make 10.dll with size 10240 Make 11.dll with size 13824 Make 12.dll with size 24576 Make 13.dll with size 65536 Make 14.dll with size 47104 Make 15.dll with size 9216 Make 16.dll with size 41472 Make 17.dll with size 66560 Make 18.dll with size 44032 Make 19.dll with size 18432 Make 20.dll with size 29184 Make 21.dll with size 33280 Make 22.dll with size 175616 dump/com.raongames.growcastle-bf810000-bf831000.bin: Topic: https://gameguardian.net/forum/topic/16999-utility-for-extracting-dll-files-from-various-dumps/
  2. Enyby

    Can i lua this?

    function conv(B1) return 1072693248+1048576*math.floor(math.log(B1)/math.log(2))+math.floor(1048576*((B1+B1-math.pow(2,math.floor(math.log(B1)/math.log(2))+1))/math.pow(2,math.floor(math.log(B1)/math.log(2))+1))) end local d = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} while true do while not gg.isVisible() do gg.sleep(100) end d = gg.prompt({'health 1', 'attack 1', 'health 2', 'attack 2', 'health 3', 'attack 3', 'health 4', 'attack 4', 'health 5', 'attack 5'}, d, {'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number'}) if (d == nil) then os.exit() end for i = 1, 10, 2 do gg.clearResults() local s = conv(d[i])..';'..conv(d[i+1])..'::1024' gg.searchNumber (s, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) local log = i .. '; request = "' .. s .. '"; found = ' .. gg.getResultCount() .. '; edited = ' .. gg.editAll(conv(9999999999), gg.TYPE_DWORD) print(log) -- gg.toast(log, true) end gg.toast('Click on icon for next search') gg.setVisible(false) end
  3. Enyby

    LUA scripting

    For save order of fields in gg.prompt need use table without indexes: local d = gg.prompt({'health 1', 'attack 1', 'health 2', 'attack 2', 'health 3', 'attack 3', 'health 4', 'attack 4', 'health 5', 'attack 5'}, nil, {'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number'}) You can access to fields by it index starting from 1. In this example it be d[1], d[2], d[3], ..., d[10].
  4. Enyby

    Can i lua this?

    function conv(B1) return 1072693248+1048576*math.floor(math.log(B1)/math.log(2))+math.floor(1048576*((B1+B1-math.pow(2,math.floor(math.log(B1)/math.log(2))+1))/math.pow(2,math.floor(math.log(B1)/math.log(2))+1))) end local d = gg.prompt({'health 1', 'attack 1', 'health 2', 'attack 2', 'health 3', 'attack 3', 'health 4', 'attack 4', 'health 5', 'attack 5'}, nil, {'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number', 'number'}) if (d == nil) then os.exit() end for i = 1, 10, 2 do gg.clearResults() local s = conv(d[i])..';'..conv(d[i+1])..'::1024' gg.searchNumber (s, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) print(i, 'request =', s, 'found =', gg.getResultCount(), 'edited =', gg.editAll(conv(9999999999), gg.TYPE_DWORD)) end I used other app for run because of that found and edit 0.
  5. Illuminus

    Can i lua this?

    Hi Guys, My knowledge in mem hacking is very basic, but I love to trail and error and find my way somehow. But sometimes I need to ask if what I am trying to do is even possible or not. I have an RPG game (doesn't matter what game) with a team of 5 Avatars each has two attributes I like to change, this makes a value of 10. I can single search each value and change them no problem. But here my problem starts. I have to search them all 10 each match, and a match only last a few seconds. I spare more time in searching all 10 values one by one changing them start the match and then start the whole process over and over. I tried to pair them and do a group search I learned to narrow the process down by pairing the two values of each Avatar I want to change. I tried to group search 8 values at once but the range between each value is over 65536 so I don`t find any results this way(is there a way to make this range unlimited, since I know the values are there and I just would like to do the whole search in one go?). Ok, now we have this great Lua. I had my first slight touch with Lua in World of Warcraft and done everything I wanted there really good I had my fun (even if I don't know how it works I still managed to get the things I want in trial and error to run like I wanted so I was happy about my results). Ok back to my RPG. Is it possible to write a gg Lua where I can add in all 2 values of each 5 Avatars so the Lua makes 5 times a group search of each Avatar in one rush? Bonus question if the first question all positive: To top this I have one more issue in order to change values I have to use a formula that I have created in an excel File. So I take the visual values (they only change when an Avatar levels up so I don't do this so often) that I want to change but them in the excel(the Formula never changes), calculate the Values I have to search, enter them in game guardian, change my values and voila! would be cool if I can do all this in a Lua script that would be great fun.
  6. NoFear

    Dandy Dungeon

    Game Guardian. Can't give yourself more than like 200 at a time. Also can do +10 slots. Some gold star thing and something else.
  7. I don't have the game anymore. Try to hack the prize of something that gives you "tokens" Like if it gives you 10, search for it and Set it to 100000 to get more.
  8. Enyby

    LUA scripting

    You can store state to file and load on each start script. Or wait for some actions. In last case user do not need run script each time. But this not always possible. function sleep(s) local ntime = os.clock() + s repeat until os.clock() > ntime end while gg.getResultCount() < 10 do c = gg.getResultCount() gg.toast('I wait for you! Only '..(10 - c)..' need!', true) sleep(3) end gg.alert('You done!')
  9. I've been selling game hacks for PC games and Mobile for YEARS... You saying that the "VIP" model doesn't work is only half true. It depends on the game I first started with Combat Arms on PC. Making hacks with D3D9 SDK and C++ with custom DLL injector loaders for the game that would hide the DLL's and make them undumpable from ram. Had a ton of great friends who have moved on to carriers in PC science and security because of the things we made for PC games to keep our stuff secure. Especially since some features we had, we were the only ones who knew how to make it. Obviously we didn't want it to leak As for Mobile... I started with Racing Rivals. I discovered tons of features on that game before they moved to IL2CPP. Force Paint Cars, Auto Launch/Auto Shift, Custom Gear Ratios, etc... I can name SO many. The way I would make money from these hacks actually sounds VERY stupid, but it was also crazy effective. I had a Toast message for my signature on the APK's I would sell. I didn't have a "VIP" section to access, as it was the only game I'd hack and sell. I simply had a Paypal button with a script that would check for successful payment. From there, it'd give them a download for the APK. That was it. There were instructions on the web page of how to download and install it of course, with a list of features, and a gallery of screen shots of the features working. Honestly, it looked like a scammers web page, but it was real. I had NO security on leaching my APK's, but guess what?!? That actually made me MORE money off the hacks because people would get the leached "VIP" hack, want an update (as I'd release slight updates daily), buy it, and use it. The best way I've always thought about going at it is actually a feature I temporarily had in my Racing Rivals hacks. I found how to send messages while in a live race room on RR. My scripted hack on something always running in the background (for example, saving info to server functions since it was called nearly every frame....stupid way to code it) would check the time when the App was open... From there, after 10 minutes, it would start spamming the in-game chat my website's URL. It got people to buy the hack real damn quick because obviously no one wants someone else to know they're hacking.
  10. I found this guy in auto farm tool with cheat engine in pc, but when i try to search 150 in float, its about more than 300 results is showed, when i try to edit to -10, the game is dead
  11. NoFear

    Mini DayZ

    If you have 1,search 2. If you have 10,search 20. Basically search x2 your value. Will end up with 2 results. Edit to an EVEN number. Character selection. Choose character 1,search 2. Choose character 2,search 4.Choose character 3 search 6. Keep doing this until you have 1 result. Edit to 24,start new game. You'll have the last character being used.
  12. Backlift

    GameGuardian

    I have a suggestion. I have used cheat engine in PC. When you search and find some results, cheat engine colors some values green instead of normal black. It is said that cheat engine suspects that, the green values are most likely to be the value you are looking for. In some games, the final result can't be less than 5 or 10 values, that 1 is real and others are fake, wich by editing the fake value the game either crashes or detects you as a cheater, and odds of editing the fake value instead of real value is high. I Faced this situations on PC and cheat engine made a value green (so that means it suspects that one is the one we are looking for) and that solved the problem for me many times. I would be glad to have it on GameGuardian too, as many games these days using this trick and by trial-and-error either the game crashes or you get banned or game resets. Trial-and-error is also a bit tedious.
  13. I didn't spam the question. I created my own thread not knowing there were any references to it. As soon as I posted it, it gave me a "Here are some threads you might be interested". I found one that was similar to mine and posted on it as well. Then I saw this thread and you're like.. hey out there.. any requests? Well if you didn't see my thread already, I put my request in here as well. Just because I'm trying to find an answer for something in 3 different places does NOT mean its spam. It's called branching out in search of an answer. When you want to know how much a radiator for your car is, do you do a search, and the first result you find, you buy that one? Or do you go and check 3, 5, maybe even 10 places to see which has the best price and the best quality with the best reviews? I don't care if you are a developer or not, what I did was trying to find an answer by asking it. And so far, neither you, or anybody else has answered that question. Therefore it is not spam nor does it imply it should be given negative feedback. That's just being a dickhead. So instead of being a tool, can you help answer how to use GameGuardian with Transformers Earth Wars? Or are you just going to continue giving negative feedback?
  14. I can get maybe ?? 1 Dodge Dart GT 2 Audi R8 e-tron 3 Tesla Model S 4 Cadillac ATS 5 Cadillac XTS 6 Scion FR-S 7 Mini Cooper S Roadster 8 Alfa Romeo MiTo GTA 9 Audi S4 10 Nissan 370Z 11 Audi RS 3 Sportback 12 Mercedes-Benz SLS AMG Electric Drive 13 Audi TTS Coupe 14 Chevrolet Camaro GS 15 Ford Focus RS 16 Lamborghini Urus 17 Infiniti FX50 18 Lotus Exige S Coupe 19 Audi RS 4 Avant 20 Alfa Romeo 8C Competizione 21 DS Survolt 22 Aston Martin DB9 Coupe 23 Lamborghini Countach 25th Anniversary 24 Maserati GranTurismo Sport 25 Bentley Continental GT V8 26 Aston Martin V12 Zagato 27 Aston Martin V12 Vantage 28 Nissan GT-R (R35) 29 Ferrari 458 Italia 30 Ford Shelby GT500 31 Cadillac CTS-V Coupe Race Car 32 Mercedes-Benz SL 65 AMG Black Series 33 Dodge Viper SRT10 ACR-X 34 Chevrolet Corvette C7 35 McLaren 12C Spider 36 Pagani Zonda R 37 Ferrari F12berlinetta 38 Lamborghini Sesto Elemento 39 Marussia B2 40 RUF RT 12 S 41 Lamborghini Veneno 42 GTA Spano 43 RUF CTR 3 44 Ferrari FXX Evoluzione 45 Bugatti 16.4 Grand Sport Vitesse 46 Mercedes-Benz Silver Lightning 47 Koenigsegg Agera R 48 Ferrari 599XX 49 Lamborghini Gallardo LP 560-4 2013 50 Renault CLIO R.S. 200 EDC 51 BMW M6 52 Ferrari F430 53 Lotus Evora Enduro GT 54 Ferrari LaFerrari 55 W Motors Lykan HyperSport 56 Pagani Huayra 57 McLaren P1 58 SSC Tuatara 59 Ferrari Testarossa 60 SRT 2013 Dodge Challenger SRT8 61 Ford F-150 62 Hennessey Venom GT 63 Chrysler ME412 64 Ferrari FF 65 Ford 2006 GT 66 Mercedes-Benz SLS AMG GT Coupé Final Edition 67 2015 Ford Mustang 68 Jaguar C-X75 69 Mercedes-Benz CLK GTR AMG 70 Mercedes-Benz Biome 71 Peugeot Onyx 72 Jaguar F-Type R 73 Savage Rivale Roadyacht GTS 74 Mazda Furai 75 Nissan GT-R NISMO 76 SSC Ultimate Aero XT 77 Rimac Consept One 78 Savage Rivale GTR 79 Maserati MC12 80 Volkswagen W12 81 Koenigsegg One:1 82 9FF GT9 VMAX 83 Tramontana XTR 84 Felino cB7 85 Spada Codatronca 86 Arrinera Hussarya 87 Lucra L148 88 Acura NSX 2005 89 Renault DeZir 90 Ferrari F40 91 Ferrari Enzo Ferrari 92 Ferrari 612 Scaglietti 93 Ferrari F50 94 Ferrari 308 GTS 95 Ferrari 330 P4 96 Volkswagen Golf Design Vision GTI 97 BMW M3 Sedan 98 Audi R8 LMS Ultra 99 BMW M1 100 HTT Plethore LC 750 101 Lamborghini Aventador LP 700-4 102 Geely GC9 103 ONUK Sazan LM 104 Mitsubishi Lancer Evolution X 105 Chevrolet SS 106 AC 378 GT Z 107 Kepler Motion 108 McLaren 675LT 109 Bentley EXP10 Speed 6 110 McLaren P1 GTR 111 Camaro Z/28 112 Datsun 280Z 113 Shelby Cobra 427 114 SUBARU IMPREZA WRX STI 115 McLaren 570S 116 Lamborghini Huracan 117 Cadillac 16 Consept 118 McLaren F1 XP-5 119 DS 3 Racing 120 Honda S2000 121 Range Rover Evoque Coupe HSE Dynamic 122 Mercedes-Benz SLK 55 AMG 123 Toyota Supra RZ (Mark IV) 124 Nissan Skyline GT-R (R34) 125 Peugeot SR1 126 Lamgorghini Asterion 127 Mazzanti Evantra 128 Mosler GT3 129 Lamborghini Egoista 130 Renault Sport R.S. 01 131 TRION NEMESIS 132 ED Design Torq 133 Alfa Romeo 4C 134 Lamborghini Estoque 135 Rinspeed zaZen 136 Sbarro Alcador 137 Holden Coupe 60 138 Volkswagen Beetle Turbo 139 Lamborghini Miura 140 Cheverolet 2016 Camaro SS 141 Ferrari 458 Italia 142 Mosler Super GT 143 Mazda RX8 144 BMW 3.0 CSL Hommage 145 Honda Integra Type-R 146 Devel Sixteen Prototype 147 Mazda 6 148 Mitsubishi Eclipse 149 nanoFlowcell QUANT FE 150 Fenyr SuperSport 151 nanoFlowcell QUANTINO 152 Weber Faster One 153 Mercedes-AMG GT3 154 Nissan Juke Nismo 155 Jaguar XJ220S TWR Motorsport 156 Mercedes-AMG C 63 Couple 157 Jaguar F-TYPE Project 7 158 Aston Martin One-77 159 Donkervoort D8 GTO 160 Caddilac ATS-V Coupe 161 BXR Blade 162 MB GLC Coupe 163 2015 GTA Spano 164 Falcon F7 165 TVR Sagaris 166 Citroen GT 167 Icona Vulcano 168 Chevrolet Corvette C3 169 AlfaRomeo Giulietta 2016 Veloce 170 Mercedes Benz CLA 45 AMG Racing Series 171 McLaren M14A 172McLaren Mercedes MP4-25 173 Arash AF10 174 Aston Martin Vulcan 175 impala 176 bently 2010 177 Mosler land sark 178 bmw m2 179 Mclaren mp4-8 180 renault alpine 181 Lamborghini aventor sv 182 buick avista consept 183 mercedes 55 special 184 mclaren mp4-31 185 Sbarro sparta 186 Chevrolet Corvette Grand Sport 187 SIN R1 188 Ferrari GTC4Lusso 189 Lotus Evora Sport 410 190 Porshe cayman gt4 191 Porshe 718 192 Porshe 959 193 Porshe 911 194 Porshe 918
  15. I was just thinking if i can do the same thing for XP . I mean, same level , get a changed fuzzy search at 10 seconds ...and if at the end i'm getting the same XP value i should be able to alter it. Is this doable? Maybe you didn't progress in the main story to allow XP ? Ghost
  16. Here are the steps i'm taking on trying to find the 53 value: 1. load the screen for Patrol 1 on easy 2. run the fuzzy search for Dword (28 mil results) 3. start the round and after load stop and run again fuzzy with changed . (4.4 Mil) 4. Resume, then stop run fuzzy with Unchanged. Then i repeat again this step (i got arround 2.5 mil results) 5. Then i pick up a few coins and run the fuzzy for changed (140K) 6. Resume then stop imediatelly, run fuzzy for unchanged (75k) 7. Resume pick again coins, then run fuzzy for changed (3500 results) 8. Resume and stop again, search fuzzy for unchanged (1970) 9. Resume and pick up again some coins , fuzzy changed (405) 10. Resume then stop , fuzzy for unchanged (247) 11.Resume + coins pick (176) 12. Because i had no more room to move, i've picked again coins, then stoped; fuzzy for changed (60) 13. Picked all the coins, paused, fuzzy for changed (54) 14. Resumed for the last time, stopped imediatelly then i run fuzzy for unchanged (42) I've attached two printscreens with the results. I've undestood that i should look for "2 dword that are like 53 apart" . In the video i saw"53" value into the "green" column (dword ...i think) but nothing in my results. So my first problem is that i don't know how to indentify the corect value ? And the second one is i'm not sure how to "check them with xor calc" by the way if i'm stopping the game after i pick up the coins i get always 117 instead of 53 (i'm on the first patrol level on easy). Sorry to keep bugging you, but i've tried this for 4-6 yesterday and i don't seems to make any progress on my own. thanks Ghost
  17. Ok, i see what you mean. The reason i did this is because the result number doesn't drop so fast...i still have 10-40 tousands values found if i use changed-unchanged only.
  18. Name of Game: Grow Castle Game Version: 1.16.5 Name of Cheat: Unlimited Gems, Ultra Exchange Rate, Unlimited Skill points Search type: Encrypted Xor for market exchange rate and gems, Encrypted Float for skill points Unlimited Gems>>>>>>>>>> Steps: Open both Grow Castle, and GameGuardian. Search the number of gems as "Encrypted Xor" Change the number of gems Redo step 2 & 3 until you get 3 or 2 values If you get 3 values, ignore the first value and count value number 2 as #1 and count value number 3 as #2 Edit the #2 value and delete last 3 digits of it (gem will be a minus value now) Edit the #1 value and delete it's last 3 digits (Gem resets) Now edit the #2 value again and add 000 at the last of it Wait your gems tp be updated in game, you will see it will go "99Max" Freeze the #2 value TIP: For gold you can use market to exchange gem into golds Ultra Exchange Rate>>>>>>>>>> Steps: Open both Grow Castle, and GameGuardian. Wait the timer gets to 1 min ( so it will not change while you are searching) Search the exchange value as "Encrypted Xor" Now wait for the timer to change the value or use GG Speedhack to speedup the timer Redo step 3 and 4 until you find 1 value When you found 1 value, if it is a positive value, wait for it to change, if it is a negative value, Delete 1 digit from the last of it and FREEZE it. TIP: You can use Repetitouch here to exchange a lot of money at very high rate but remember, the money has a cap or limit, if it exceeds that, it resets to zero. I was able to reach the money till 50,000,000K safely Unlimited Skill Points>>>>>>>>>> Steps: Open both Grow Castle, and GameGuardian. Level Up a few to have something like 10 skill points Search it as "Encrypted Float" Change the value either by using skill points or leveling up Redo step 3 and 4 until you found 1 value The value is like this: 2.4E30 Edit it to: 4.4E24 Screenshot of cheat: https://ibb.co/d31rXv
  19. Sorry Enyby , I got no word from the second paragraph, too expert I think, need screens. Here is what I got in simple form: 1_Pointer is not the value, for example if I have 120 coins the pointer is not 120, it's something else with an offset that we don't know 2_Pointer may change without being noticed 3_we can find pointer by using fuzzy search (yet it takes an era to make it under 10 values in most games by just "increased", "decreased" and "unchanged") 4_You are not an English person
  20. I made a video, hopefully you figure it out. I'm sure you know how to find values. The second value is just the dword above the Initial dword value I used 'goto' on. And we freeze them both if you need to you can unfreeze both to top up the original item to 20 so you can re split as 10 https://drive.google.com/file/d/0B6_TWYDVPgxpcGdzOFdaM0dCXzA/view?usp=drivesdk
  21. @Enyby @FADL198Hey guys.uhmm.1 got something so share.did you know that you can decrease the amount of tests.it all happens in the 3th lab test 31.i tried to do what ever needed to be do but I ended up edit other codes.remember lab 3 has 15 test.it somehow dropped to 8 and skipped a vew tests. i wish I had made a screens hot but I hope this can come in handy for you guys.you are pros in the coding.this will be good if you're to late or you don't have much time to play. 1 more thing can some1 link the tut for multiplying the dubbed thank in mastery or anywhere whiteout ban .I can't keep using titanium to use extra tank.i don't level up.right now I'm way to fast or strong for a level 10 you know..
  22. Hi, there is a way to split items without splitting, it pretty much duplicates an item. Eg. I have 20 wood I can split 10/10 the hack is to freeze the items. So you can keep splitting 10 off the original until you fill all boxes. Hack modifying dword
  23. Thx for the quick reply mate. So basically in ur videos u buy the keys and time jump to unlock the labs?
  24. Log empty it must be recorded from first attempt use speedhack in current game run. And valid log is huge. Bigger from 10 KB and contains thousand of lines. Try use another recorder. You must have root for collect logcat from the app. Without root you can collect logcat only from PC connected over USB via adb.
  25. Porsche 959 Championship IDs Alps:16160-16162 Patagonia:16163-16166 French Guiana:16167-16170 Rio:16171-16175 Tenerife:16176-16180 Tokyo:16181-16186 Venice:16187-16192 London:16193-16199 Happy Hacking Have Fun Keep Calm And Support @Enyby & Game Guardian... ^_^ Best Of Luck _______________________________________________ added 4 minutes later Check The Video... And keep in mind 1 sec=1000ms ?? For Example If you see beat the time:1:10:000 Search For 70000 Dwrod And do as the video shows Have fun... Happy Hacking Best of Luck
×
×
  • 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.