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. All android now is 10 or earlier. You need detect behavior, not some flags. So find simple way to detect difference in memory layout and use it.
  2. In real Racing the value to search the fame points (and others) changes if you re running android 10 or earlier. I don t want perform double search because it is slow nor write 2 scripts. So if i can detect android version i can select right value to search directly... [added 1 minute later] Could you explain Please?
  3. Lua read codes from first line to last line. For example : print(a) a = 10 output = nil (Lua can't read what is a because it didn't declare before printing it) a=10 print(a) output = 10 (Lua know a = 10 , so it print 10) So you just move this entire thing to the end of the script. Then everything is fine.
  4. @Enyby shall I send the log file of gg. @MarioRossi93i I have tried the latest gg 96 also ,same issue, but mine is OnePlus OP6 with andriod 10, my patch is of November 2019, I have not updated to latest patch, so shall I need to update to latest patch and try and also are u using any virtual space app or ur device has been rooted.
  5. I run gg 96 on oneplus 7t pro running android 10 with latest patch. So the problem is not gg or android
  6. Of course, GG runs on 10 Android. This topic should be called "No version of GG works on my device through Octopus Pro 5.7." The problem is in the author’s device, or in his Octopus Pro 5.7. Maybe he turned on combining the memory card with the internal storage there, maybe something else. Gathering information about GG errors (#9ggo57t)
  7. This is a question "None of the GG versions are working on andriod 10" ? Or?
  8. 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.
  9. 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.
  10. 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.
    hey mate any plans to continue to update this? good luck
  11. 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.
  12. 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
  13. 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
  14. 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
  15. 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  
  16. 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>
  17. Version 1.0.3

    904 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
  18. 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
  19. 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
  20. 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  
  21. 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.
  22. 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.
×
×
  • 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.