Jump to content

Count_Nosferatu

Ascended
  • Posts

    111
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Count_Nosferatu

  1. Script announces that it has recorded the .mp4 file And in fact you are writing a .lua file bandicam 2023-08-26 14-33-04-191.mp4
  2. Restriction inside your game, GG or other applications will not help.
  3. You enter DWORD 2,147,483,646 (0x7FFFFFFE) In hexadecimal 0x7FFFFFFE, the high bit is 0 Score is 1,073,741,823 2147483646 / 1073741823 = 2 You enter DWORD 3,147,483,646 (0xBB9AC9FE) In the number 0xBB9AC9FE, the high bit is 1 Score is -573,741,823 3,147,483,646 / 2 = 1,573,741,823 Try entering a number 2,147,483,648 (0x80000000) Succeed score -73,741,824 ? If so, then the maximum positive number, in your game, will be 2,147,483,647 (0x7FFFFFFF)
  4. Why are you not using command gg.makeRequest ?
  5. View File RR3 Unlocks hidden vinyl packs Unlocks follow packs: St.Patrick's day - 12 vinyls Christmas - 14 vinyls Halloween - 24 vinyls Submitter Count_Nosferatu Submitted 08/19/2023 Category LUA scripts  
  6. Version 1.0.1

    418 downloads

    Unlocks follow packs: St.Patrick's day - 12 vinyls Christmas - 14 vinyls Halloween - 24 vinyls
  7. Many thanks. I expected something like that.
  8. Hi guys I looked at different scripts, and I see in some they use the gg.processResume () command. Basically after gg.searchNumber. And nowhere is there a command gg.processPause() Why are they doing this?
  9. View File RR3 Unlock next day If special event has one stage per day. Run script after finished first stage in special event. Script use search method, so it may work with any game version. Tested on NOX 7.1.2 (32bit) and tablet with Android 10 (64bit) and VirtualXposed. bandicam 2023-07-28 15-38-11-575.mp4 Submitter Count_Nosferatu Submitted 07/28/2023 Category LUA scripts  
  10. Version 1.0.0

    260 downloads

    If special event has one stage per day. Run script after finished first stage in special event. Script use search method, so it may work with any game version. Tested on NOX 7.1.2 (32bit) and tablet with Android 10 (64bit) and VirtualXposed. bandicam 2023-07-28 15-38-11-575.mp4
  11. Yes, I can't download my script either. Problems started after the site moved to Cloudflare The administration is ignoring this problem. Maybe you can download file in attachment rr3-reset-vp-v11.4_2.bin.lua
  12. Hi admin's! I can't download new added file, from this links: https://gameguardian.net/forum/files/file/3367-slayer-legends/ https://gameguardian.net/forum/files/file/3467-smash-party/ https://gameguardian.net/forum/files/file/3481-package-check-and-info-display-script/ https://gameguardian.net/forum/files/file/3480-menu-onoff-template/ https://gameguardian.net/forum/files/file/2901-simcity-real-server-script-2023/ and some others. Error on screenshot. Clear cookies, VPN - nothing helps. Browser - last FireFox.
  13. The subtraction operation is fast. Run this script and see how long it takes to run. Usually it takes a lot of time to search, you need to search HEX numbers, or use chainer How to use chainer local time = {} local addressA = 0xA7B26F2C local addressB = 0xA7B2A774 time[1] = os.clock() local offsetAB = addressB - addressA time[2] = os.clock()-time[1] local t = string.format("%.3f",time[2]) gg.alert('OffsetAB is : ' ..string.format("0x%2X",offsetAB) ..'\nRuntime: ' ..t ..' seconds')
  14. View File RR3 v12.0.1 Reset bonus price (VP) Reset bonus price (VP) in all rounds, both architectures And open all expired rounds. This script uses pointer chains, so it may not work with another game version. Tested on NOX 7.1.2 (32bit) and tablet with Android 10 (x64) and VirtualXposed. reset-vp.mp4 Submitter Count_Nosferatu Submitted 04/29/2023 Category LUA scripts  
  15. Version 1.0.6

    1,833 downloads

    Reset bonus price (VP) in all rounds, both architectures And open all expired rounds. This script uses pointer chains, so it may not work with another game version. Tested on NOX 7.1.2 (32bit) and tablet with Android 10 (x64) and VirtualXposed. reset-vp.mp4
  16. if you need to do, for example, 8 10 8 10, I have a small hint. Use this script to make 8 9 8 9, and then GG find Dword 8;9;8;9::16 and replace 9 with 10 in the results Script workig fine, on my x32 emulator. Thanks Mario!
×
×
  • 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.