OutdatedKiddion's Refund Mod [External]

Posts 115 of 436 · Page 1 of 30
Kiddion's Refund Mod [External]
It seems like such a great idea: the great Orbital Cannon. Until you look back at your life and your Maze account and start wondering: "Was it all worth it?"

And your mind starts to wonder and you find yourself thinking, why did I ever agree to pay a small fortune to fire one sorry shot, just to feel like a griever? Why did R* ever expose us to grieving features like these, shouldn't they be fixing the real doomsday scenario: dangerous exploits like remote bans? Why hasn't that been fixed, didn't we just receive a new DLC, with a new name? What were they thinking? So still, anyone joining your session now could potentially be the one ending it all...?!

Knowing your end might come when you least expect it, you start regretting mistakes in the past, like every dime spent on the Orbital Cannon, but what can you do...

Usage:
Well, you can undo your financial damage, because here's your refund. Just:
  • Download the mod,
  • start the program when you're online,
  • hit F9 for every 750k you once spent on the cannon - or didn't, I can't tell the difference anyway and I'm pretty sure no-one can.

I have no clue or advice when and how often you can do it, the best time between presses and for how long nor how safe it is. But life is short anyway, so make it count anyway...

(And it should work on Steam, but I can't test it...)

FAQ (Read this before posting here!):
  • "The program crashes and/or is deleted as soon as I press F9"
    This is caused by an overly protective anti-virus, consider using a different AV. This mod has been reviewed thoroughly by the forum's file moderators.
  • "Can I bind this to a different key instead of F9?"
    Yes you can, create a text file in the same directory as refund.exe, name the text file "refund.ini" and lookup the virtual keycode you want to use and add (without the line numbers):
    Code:
    [refund]
    MoneyKey=0xBB
    (In this case, it uses the [+ key.) For a list of virtual key codes, see: https://www.kbdedit.com/manual/low_level_vk_list.html
  • "Can I configure the amount of money?"
    No, that's not possible.
  • Is this an external mod?
    This mod is a completely external money mod, it doesn't use natives.


This is for EDUCATIONAL AND EVALUATION PURPOSES ONLY.
No responsibility is held or accepted for misuse.


Use at your own risk!



Virusscans:
https://r.virscan.org/language/en/re...7ee2dee695412b
https://virusscan.jotti.org/en-US/fi...job/nhjkcekaid


Screenshot:
refund-v1.0_mpgh.net.zip4 KB · 27,507 downloads 23/66 malicious
For anyone looking for a ahk script, you could use something like this to trigger a F9 press randomly somewhere between 3 and 5 minutes:
Code:
#Persistent
SetTimer, Generate, % Rand(180000, 300000)
Return

Generate:
SendInput {F9 down} 
Sleep, 100
SendInput {F9 up} 
Return

Rand(min, max)
{
Random, Rand, min, max
return Rand
}
When i click f9 nothing seems to happen except for me dropping the gun i have in my hand.
Kiddion, you're an absolute angel. I was spamming your job hopper every minute with AHK for about 300 million or more total, so I might spam this every 7 minutes or so. I'll post news if i get banned or smth.

Again, appreciate this.
Works like a charm, going to be using your AHK script.
Can confirm it works on Steam aswell. Amazing as always, Kiddion. Thank you for this! Was well worth the waiting.
Quote Originally Posted by kiddion View Post
It seems like such a great idea: the great Orbital Cannon. Until you look back at your life and your Maze account and start wondering: "Was it all worth it?"

And your mind starts to wonder and you find yourself thinking, why did I ever agree to pay a small fortune to fire one sorry shot, just to feel like a griever? Why did R* ever expose us to grieving features like these, shouldn't they be fixing the real doomsday scenario: dangerous exploits like remote bans? Why hasn't that been fixed, didn't we just receive a new DLC, with a new name? What were they thinking? So still, anyone joining your session now could potentially be the one ending it all...?!

Knowing your end might come when you least expect it, you start regretting mistakes in the past, like every dime spent on the Orbital Cannon, but what can you do...

Usage:
Well, you can undo your financial damage, because here's your refund. Just:
  • Download the mod,
  • start the program when you're online,
  • hit F9 for every 750k you once spent on the cannon - or didn't, I can't tell the difference anyway and I'm pretty sure no-one can.

I have no clue or advice when and how often you can do it, the best time between presses and for how long nor how safe it is. But life is short anyway, so make it count anyway...

(And it should work on Steam, but I can't test it...)

FAQ (Read this before posting here!):
  • "The program crashes and/or is deleted as soon as I press F9"
    This is caused by an overly protective anti-virus, consider using a different AV. This mod has been reviewed thoroughly by the forum's file moderators.
  • "Can I bind this to a different key instead of F9?"
    Yes you can, create a text file in the same directory as refund.exe, name the text file "refund.ini" and lookup the virtual keycode you want to use and add (without the line numbers):
    Code:
    [refund]
    MoneyKey=0xBB
    (In this case, it uses the [+ key.) For a list of virtual key codes, see: https://www.kbdedit.com/manual/low_level_vk_list.html
  • "Can I configure the amount of money?"
    No, that's not possible.
  • Is this an external mod?
    This mod is a completely external money mod, it doesn't use natives.


This is for EDUCATIONAL AND EVALUATION PURPOSES ONLY.
No responsibility is held or accepted for misuse.


Use at your own risk!



Virusscans:
https://r.virscan.org/language/en/re...7ee2dee695412b
https://virusscan.jotti.org/en-US/fi...job/nhjkcekaid


Screenshot:
Windows will not let me download and deletes it right away because it detects trojan


EDIT: Fixed
Quote Originally Posted by JbQwik View Post
Windows will not let me download and deletes it right away because it detects trojan


EDIT: Fixed
how? same problem here :/
Quote Originally Posted by markjose View Post
how? same problem here :/
turn of your windows defender first and then download this mod, then add this mod to ur exclusion on windows defender, then enable your defender again
How do I use the AHK script?
Quote Originally Posted by logicdn View Post
How do I use the AHK script?
-Download and install AHK
-Open notepad
-Paste text in
-Save file with .ahk at the end
-Run file

You should probably put something in to make it easier to end the script, like:
Code:
Esc::ExitApp
The example let's you press the ESC key to end the script.
Quote Originally Posted by SuicideX66 View Post
-Download and install AHK
-Open notepad
-Paste text in
-Save file with .ahk at the end
-Run file

You should probably put something in to make it easier to end the script, like:
Code:
Esc::ExitApp
The example let's you press the ESC key to end the script.
After this I just open the file before opening the .exe right?

- - - Updated - - -

It seems like the AHK script ain't working I don't know what I did wrong but isn't it suppose to add money itself after I press the first time F9?
Quote Originally Posted by logicdn View Post
After this I just open the file before opening the .exe right?

- - - Updated - - -

It seems like the AHK script ain't working I don't know what I did wrong but isn't it suppose to add money itself after I press the first time F9?
Yes, the script is to automate the process. Run the program first, make sure it's working, test out F9 just to be sure. Then alt-tab out and start up the script. Also, the way the script is now, GTA needs to be the active window in order for the script to work. If you're still having trouble my guess would be it's an issue with the SendMode. If I remeber right, by default everything is sent through SendEvent, try using SendInput or SendPlay instead of a normal send, or just change the mode.
Quote Originally Posted by SuicideX66 View Post
Yes, the script is to automate the process. Run the program first, make sure it's working, test out F9 just to be sure. Then alt-tab out and start up the script. Also, the way the script is now, GTA needs to be the active window in order for the script to work. If you're still having trouble my guess would be it's an issue with the SendMode. If I remeber right, by default everything is sent through SendEvent, try using SendInput or SendPlay instead of a normal send, or just change the mode.
Well what I did was first open the script then the programm, I'll try that first. If it doesn't work how do i enable that SendInput?
try SendInput, it work for me
Posts 115 of 436 · Page 1 of 30
This thread is closed for replies.

Similar Threads

Tags for this Thread

Need help?