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. Hi, I have checked all versions from 84 to latest 96.1 of gg ..but none of the versions it seems to be working with andriod 10.It is showing "the app was built for an older version of andriod and may not work properly.Try checking updates or contact the developer". I am using virtual app octopus pro versn 5.7 something ..the virtual app seems to be working fine but gg is not supporting, while opening through virtual app..it is showing "Failed to load daemon, unable to obtain root access". After checking with versions from 84 to 96.1, I searched on Google and came across this forum and found same issue people are having and has been posted in this forum, since last year November month, but still I think the issue seems to be exists, as I have been the recent one to face this..so please anyone who came across this issue and has fixed it ...please help here and also author please any solution relevant to it , please let us know and if not, hope the solution for it will be there in very near future.please do help..lot of ppl are facing this issue now.
  2. Enyby

    devide and variables

    You better show full example with all numbers. For example for 10 rows. What you get from search, what you want receive as result and so on. Because you use word "devide" with some sence only known for you.
  3. Haitiaan

    devide and variables

    1. I doubt that you understand how a machine understand, your not understanding machine language, you understand high level language and closed "you" will get is perhaps Assemble(s) 2. You pointed out what is explained 10 times to me through the GG error, amd then give some half baked amswer with it, with evem the effort to try to make a fool out of someone who is requesting help. 3. Because of 2 you got Ego issue and it seems a lot here have that problem. Thats why i can't ask questions here because here you cant feel confident to ask a question with people like you around, you can't ask something without getting in to a guessing game with someone who is supposed to be helping atleast. And now i think about it i saw your name several times in this forum always having problems with someone, then you even had the balls to say somewere that your the best scripter on the forum or the best cheater(the topic got deleted), but don't put your attitude to me or anyone else. 4. To search something you must understand first, thats why i say a proper explenation: Son: How do i fish? Father: Gives his son a stick and explains him once how to use and prepare the stick. Son: Knows and understand how to fish. your not giving the fish, your teatching how to fish.
  4. Oops yes I missed the save value. function Flash() gg.searchNumber("17~20", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.refineAddress("6??????4", -1, gg.TYPE_DWORD, gg.SIGN_EQUAL, 0, -1) while gg.getResultsCount() > 2 do gg.processResume() gg.sleep(2000) gg.processPause() gg.searchFuzzy("-4~-1", gg.SIGN_FUZZY_EQUAL, gg.TYPE_DWORD, 0, -1) end local table = gg.getResults(10) for i = 1, #table do table[i]["value"] = -1 table[i]["freeze"] = true --table[i]["freezeType"] = gg.FREEZE_NORMAL This is not needed since already declare that freeze = true end gg.addListItems(table) gg.setValues(table) gg.toast('Done!') gg.setVisible(true) os.exit() end Add list before set the value.
  5. I didn't know why, but the values was not frozen. Only changed. If I manually freeze them, everything is OK, if not, the values change immediately. However, I didn't despair and found a way out of the situation, I found what you missed in your example: I don't know how critical this is, but you didn't specify table ["freezeType"] = gg.FREEZE_NORMAL line and the most important thing is that you forgot about gg.addListItems (table) line. But the main thing - the direction was set and eventually I was able to figure it out on my own. Thanks a lot! function Flash() gg.searchNumber("17~20", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.refineAddress("6??????4", -1, gg.TYPE_DWORD, gg.SIGN_EQUAL, 0, -1) while gg.getResultsCount() > 2 do gg.processResume() gg.sleep(2000) gg.processPause() gg.searchFuzzy("-4~-1", gg.SIGN_FUZZY_EQUAL, gg.TYPE_DWORD, 0, -1) end local table = gg.getResults(10) for i = 1, #table do table[i]["value"] = -1 table[i]["freeze"] = true table[i]["freezeType"] = gg.FREEZE_NORMAL end gg.setValues(table) gg.addListItems(table) gg.toast('Done!') gg.setVisible(true) os.exit() end
  6. Welcome to learn Lua scripting. Try to use table if you failed this, it's a powerful feature. https://www.lua.org/pil/2.5.html function Flash() gg.searchNumber("17~20", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) while gg.getResultsCount() > 2 do gg.processResume() gg.sleep(1250) gg.processPause() gg.searchFuzzy("-3~-1", gg.SIGN_FUZZY_EQUAL, gg.TYPE_DWORD, 0, -1) end local table = gg.getResults(10) for i = 1, #table do table[i]["value"] = -1 table[i]["freeze"] = true end gg.setValues(table) gg.toast('Done!') gg.setVisible(true) os.exit() end
  7. Hello! I am trying to write a small script, with lua familiar for the second day and have made some progress. In this function, I search for values and filter them out until there are exactly two left. Then I change them, but how do I freeze them? I tried to search for the answer using the example of other scripts, but most of them are encrypted, and in those that are not encrypted, I did not find the answer (or did not understand it). How do I use FREEZE_NORMAL correctly? Can someone help me with an example of my script? Thanks. function Flash() gg.searchNumber("17~20", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) while gg.getResultsCount() > 2 do gg.processResume() gg.sleep(1250) gg.processPause() gg.searchFuzzy("-3~-1", gg.SIGN_FUZZY_EQUAL, gg.TYPE_DWORD, 0, -1) end gg.getResults(10) gg.editAll('-1', gg.TYPE_DWORD) gg.FREEZE_NORMAL() -- Incorrect usage, but I don't know how to use it correctly. :( gg.toast('Done!') gg.setVisible(true) os.exit() end
  8. View File Heroic Magic Duel Ver. 2.0.9 | HIGH MANA NOTE1: Activate when your mana reaches 3/3 (battle starts) NOTE2: 100 Mana will be added when your mana reaches 4/4 about 5-10 seconds. *TITANIUMZSEA is my profile in PM forum Submitter TheusBR18 Submitted 05/14/2020 Category LUA scripts  
  9. Syahmi221

    Mini DayZ

    I hope this will be helpful <list> <!--INVENTORY ITEMS--> <item> <id>1</id> <name>Canned beans</name> </item> <item> <id>2</id> <name>Canned tuna</name> </item> <item> <id>3</id> <name>Tactical bacon</name> </item> <item> <id>4</id> <name>Rice</name> </item> <item> <id>5</id> <name>Tomato</name> </item> <item> <id>6</id> <name>Apple</name> </item> <item> <id>7</id> <name>Banana</name> </item> <item> <id>8</id> <name>Pipsi</name> </item> <item> <id>9</id> <name>Spite</name> </item> <item> <id>10</id> <name>Kvas</name> </item> <item> <id>11</id> <name>5.56x45 ammo</name> </item> <item> <id>12</id> <name>.45 ACP ammo</name> </item> <item> <id>13</id> <name>7.62 ammo</name> </item> <item> <id>14</id> <name>7.62x39 ammo</name> </item> <item> <id>15</id> <name>5.45x39 ammo</name> </item> <item> <id>16</id> <name>.357 ammo</name> </item> <item> <id>17</id> <name>12cal ammo</name> </item> <item> <id>18</id> <name>Bandage</name> </item> <item> <id>19</id> <name>Blood bag</name> </item> <item> <id>20</id> <name>Flare</name> </item> <item> <id>21</id> <name>F1 grenade</name> </item> <item> <id>22</id> <name>Battery</name> </item> <item> <id>23</id> <name>Campfire kit</name> </item> <item> <id>24</id> <name>Matches</name> </item> <item> <id>25</id> <name>Whiskey</name> </item> <item> <id>26</id> <name>Rags</name> </item> <item> <id>27</id> <name>Cranberry</name> </item> <item> <id>28</id> <name>Saline bag</name> </item> <item> <id>29</id> <name>Vitamins</name> </item> <item> <id>30</id> <name>Nota-Cola</name> </item> <item> <id>31</id> <name>Zucchini</name> </item> <item> <id>32</id> <name>Bell pepper</name> </item> <item> <id>33</id> <name>Orange</name> </item> <item> <id>34</id> <name>Heatpack</name> </item> <item> <id>35</id> <name>Sewing kit</name> </item> <item> <id>36</id> <name>Cleaning kit</name> </item> <item> <id>37</id> <name>Ashwood stick</name> </item> <item> <id>38</id> <name>Wood sticks</name> </item> <item> <id>39</id> <name>Duct tape</name> </item> <item> <id>40</id> <name>Burlap sack</name> </item> <item> <id>41</id> <name>Rope</name> </item> <item> <id>42</id> <name>Hunter knife</name> </item> <item> <id>43</id> <name>Army knife</name> </item> <item> <id>44</id> <name>Butcher knife</name> </item> <item> <id>45</id> <name>Morphine</name> </item> <item> <id>46</id> <name>Tetracycline</name> </item> <item> <id>47</id> <name>Tomato seeds pack</name> </item> <item> <id>48</id> <name>Pepper seeds pack</name> </item> <item> <id>49</id> <name>Papers</name> </item> <item> <id>50</id> <name>Wood piles</name> </item> <item> <id>51</id> <name>Crafted arrows</name> </item> <item> <id>52</id> <name>Composite arrow</name> </item> <item> <id>53</id> <name>Gasoline</name> </item> <item> <id>54</id> <name>Water bottle</name> </item> <item> <id>55</id> <name>Canteen</name> </item> <item> <id>56</id> <name>Landmine</name> </item> <item> <id>57</id> <name>Bear trap</name> </item> <item> <id>58</id> <name>.22lr ammo</name> </item> <item> <id>59</id> <name>Car toolbox</name> </item> <item> <id>60</id> <name>Raw steak</name> </item> <item> <id>61</id> <name>Cooked steak</name> </item> <item> <id>62</id> <name>Nuko Cola</name> </item> <item> <id>68</id> <name>Zuccini seeds</name> </item> <item> <id>69</id> <name>9mm ammo</name> </item> <item> <id>70</id> <name>Barbed wire</name> </item> <item> <id>71</id> <name>Rabbit meat</name> </item> <item> <id>72</id> <name>Cooked rabbit meat</name> </item> <item> <id>73</id> <name>Cloudberry</name> </item> <item> <id>74</id> <name>Bilberry</name> </item> <item> <id>75</id> <name>Radio</name> </item> <!--WEAPONS--> <item> <id>151</id> <name>FNX pistol</name> </item> <item> <id>152</id> <name>Colt 1911</name> </item> <item> <id>153</id> <name>Magnum</name> </item> <item> <id>154</id> <name>IZH-43</name> </item> <item> <id>155</id> <name>Remington shotgun</name> </item> <item> <id>156</id> <name>Mosin Nagant</name> </item> <item> <id>157</id> <name>SKS</name> </item> <item> <id>158</id> <name>M4 carbine</name> </item> <item> <id>159</id> <name>AKM</name> </item> <item> <id>160</id> <name>AK-74</name> </item> <item> <id>161</id> <name>AKs-74u</name> </item> <item> <id>162</id> <name>L85</name> </item> <item> <id>163</id> <name>Improvised bow</name> </item> <item> <id>164</id> <name>Crossbow</name> </item> <item> <id>165</id> <name>Amphibia pistol</name> </item> <item> <id>166</id> <name>Sporter 22</name> </item> <item> <id>167</id> <name>Repeater</name> </item> <item> <id>168</id> <name>SVD</name> </item> <item> <id>169</id> <name>MP5k</name> </item> <item> <id>170</id> <name>Glock</name> </item> <!--Melees--> <item> <id>200</id> <name>Pipewrench</name> </item> <item> <id>201</id> <name>Shovel</name> </item> <item> <id>202</id> <name>Hatchet</name> </item> <item> <id>203</id> <name>Baseball bat</name> </item> <item> <id>204</id> <name>Fire axe</name> </item> <item> <id>205</id> <name>Crowbar</name> </item> <item> <id>206</id> <name>Pickaxe</name> </item> <item> <id>207</id> <name>Pitchfork</name> </item> <item> <id>208</id> <name>Sledgehammer</name> </item> <!--Helmets--> <item> <id>250</id> <name>Gasmask</name> </item> <item> <id>251</id> <name>Army helmet</name> </item> <item> <id>252</id> <name>Moto helmet</name> </item> <item> <id>253</id> <name>Moto helmet</name> </item> <item> <id>254</id> <name>Warm hat</name> </item> <item> <id>255</id> <name>Beret</name> </item> <item> <id>256</id> <name>Cap</name> </item> <item> <id>257</id> <name>Balaclava</name> </item> <item> <id>258</id> <name>Ushanka</name> </item> <item> <id>259</id> <name>Hard hat</name> </item> <item> <id>260</id> <name>Headlamp</name> </item> <item> <id>261</id> <name>Cowboy hat</name> </item> <item> <id>262</id> <name>Welding mask</name> </item> <item> <id>263</id> <name>Gorka helmet</name> </item> <item> <id>264</id> <name>Police hat</name> </item> <item> <id>265</id> <name>NVG</name> </item> <item> <id>266</id> <name>Bandana</name> </item> <!--Pants--> <item> <id>300</id> <name>Jeans</name> </item> <item> <id>301</id> <name>Worker pants</name> </item> <item> <id>302</id> <name>Tracksuit pants</name> </item> <item> <id>303</id> <name>Gorka pants</name> </item> <item> <id>304</id> <name>Orel pants</name> </item> <item> <id>305</id> <name>Paramedic pants</name> </item> <item> <id>306</id> <name>Hunter pants</name> </item> <!--Outerwears--> <item> <id>350</id> <name>T-shirt</name> </item> <item> <id>351</id> <name>Shirt</name> </item> <item> <id>352</id> <name>Shirt</name> </item> <item> <id>353</id> <name>Raincoat</name> </item> <item> <id>354</id> <name>Jacket</name> </item> <item> <id>355</id> <name>Gorka jacket</name> </item> <item> <id>356</id> <name>Hoodie</name> </item> <item> <id>357</id> <name>Hoodie</name> </item> <item> <id>358</id> <name>Cloak</name> </item> <item> <id>359</id> <name>Paramedic jacket</name> </item> <item> <id>360</id> <name>Orel jacket</name> </item> <item> <id>361</id> <name>Tracksuit jacket</name> </item> <item> <id>362</id> <name>Dress</name> </item> <item> <id>363</id> <name>Down jacket</name> </item> <item> <id>364</id> <name>Hunter jacket</name> </item> <!--Vests--> <item> <id>400</id> <name>Bulletproof vest</name> </item> <item> <id>401</id> <name>Press vest</name> </item> <item> <id>402</id> <name>Assault vest</name> </item> <item> <id>403</id> <name>High capacity vest</name> </item> <!--Backpacks--> <item> <id>450</id> <name>Taloon backpack</name> </item> <item> <id>451</id> <name>Hunting backpack</name> </item> <item> <id>452</id> <name>Mountain backpack</name> </item> <item> <id>453</id> <name>School backpack</name> </item> <item> <id>454</id> <name>Improvised bag</name> </item> <item> <id>455</id> <name>Improvised backpack</name> </item> <item> <id>456</id> <name>Civilian tent</name> </item> <item> <id>457</id> <name>Tortilla backpack</name> </item>
  10. Version 1.0.3

    873 downloads

    NOTE1: Activate when your mana reaches 3/3 (battle starts) NOTE2: 100 Mana will be added when your mana reaches 4/4 about 5-10 seconds. *TITANIUMZSEA is my profile in PM forum
  11. There are 2 methods to put script expiry 1st is os.clock() method to get current date of device, it is offline so can be easily bypassed by changing device date. 2nd my method is online method using html date header, it cannot be bypassed Put the following code at top of your script (and change expiry date) Date=15 -- Expiry date Month=5 -- Expiry month Year=2020 -- Expiry year expiremessage="Script has expired. New version available" --Expiry message --This script will expire on 15/05/2020 --Do not change below code function check(t) if t<10 then t="0"..t end return t end expiredate=Year.. check(Month).. check(Date) date=gg.makeRequest("http://www.guimp.com").headers["Date" ][1] --guimp.com is smallest webpage so takes less time for loading month={"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"} for i=1,12 do if month[i]==string.sub(date,9, 11) then if i<10 then i="0"..i end currentdate=string.sub(date,13, 16)..i..string.sub(date,6, 7) end end if tonumber(currentdate)>=tonumber(expiredate) then gg.alert(expiremessage) os.exit() end -- Your script code below
    The app is very slow at my device Android 10 and Android 6 and some times can't open the apps so it's bad app
  12. It is a good app for who have Android 5 or higher to Android 10. It is correct that the app is Similar to the application parrallel space but it's faster than parrallel space and its design It reduces battery consumption and the application is smaller than it
  13. View File Car Parking Multiplayer Lua Script Hi nice to meet you peeps im LeviaC! This script is for car parking multiplayer v4.6.5 Password is : 1356 Here's the feature of this script Buy people's car for free (online) Chrome Color Magic Chrome Color Money Hack (1st Level) Walkthrough walls/Wallhack Speedhack Car Glitch Submitter brokenexile1 Submitted 05/10/2020 Category LUA scripts  
  14. But that is for rooted device, The error he receives is this: i had the issue to but i did a factory reset(for other reasons) and then when i installed the game and after that GG it worked. so perhaps some path name has to be changed? only had this issue with my huawei though.. [added 1 minute later] i'm pretty sure xprivacy would work though.
  15. Hy bro i am new can you guide me how to use these scripts i am trying but i got banned 10 years and as well as script not works that was my 3rd day i am keep searching abut it but i cant find a good working material plzz can you guide me I am aslo a programer web app developer.
  16. renzo13

    Anima rpg 2020

    your welcome bro, but tier 10 is crazy lol
  17. renzo13

    Anima rpg 2020

    u must completed game 1 time to get menu rencarnation tier 2, then search 1 in tier 2 position. change to tier 1 search 0 , after u get 1 result change to 9. result tier 10 after get reincarnation first time.
    The App Doesn't work with me. Is this because my device is Android 10 or what?
  18. +A while after unlocking intro and a few restart _Work: 1, 2, 3, 6, 7, 8, 9, 10, 11 _Haven't worked: _Not tested: 4, 5 @silencesoulzDo i need to delete daily challenge crystal header BEFORE server time restarts or AFTER?
  19. +Update: Create New kingdom and recruit 3 units. _Work: 3, 8 _Haven't worked: 1, 2, 9, 10, 11 _Not tested: 4, 5, 6, 7 The "Haven't worked" shows "No result, please check you ____ (exp: D Rank Guard) stock CAREFULLY, script exits!". Maybe there's a condition you have to meet first, that's why i haven't tested the other ones yet.
  20. This script is a compilation of group search I made, based from this group's conversation and from myself. Born from my laziness of searching things over and over again, I decided to compile it using a script XD. Just run the script, pick the menu, respond any question that popped out, and finally wait and let my script do the job automatically for you Disclaimers : - I take no responsibility for anything happen to your device and/or your account as a result from using my script, so kindly DO IT WITH YOUR OWN RISK. - This script need to store indexing data performed by any group search made, so kindly review every permission for GameGuardian installed on your device especially read and write storage. - I made this script using GameGuardian v95.0, it may or may not work on newer version (PM me or quote my post if it doesn't support) How to : - Download my script (attached below) to your device. Run script from GameGuardian by clicking triangle icon on the right side of magnify icon (the icon you usually do search value) Features : - As listed in the Menu Just try it one by one and see it for yourself XD - At the first time game restarts, most of all menu will performed group search 2 times, one is for searching the value of -2000000000~-1000000000 (I called this header ID), another is for collecting its data range based on the header ID and save it for the next time execution as long as the game didn't restart. when it tells you to check your game, please check it and see for the changes. - If you check saved list (floppy disk icon on top), you may see this : As it says, please not to remove it. Doing so will perform group search again on the respective menu and it'll take some more time. Special notes : - If you placed another copper coin box after run my script option 4, you'll need to delete copper coin current header in saved list so my script will re-collect your copper coin box data - If you placed another townhall after run my script option 10 and/or 11, you'll need to delete townhall exp current header and energy current header in saved list so my script will re-collect your current exp and energy in each townhall - If you placed another townhall after run my script option 9, you'll need to delete resource current header in saved list, re-run option 9 with no modified resource, when it's done delete again in saved list, then re-run option 9 with modified resource using my script. this seems complicated, but I'll try simplified it later. - You'll need to delete daily challenge crystal header when server time restarts (you can see server time in briefing room, on the bottom right side) Have fun net.kairosoft.android.kingdom_en_v1b.lua
  21. Why i am getting this error in parallel space. I am not rooted running android 10. I also tried using the older MLBB app version it also gets stuck. Good work bro.
×
×
  • 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.