Injustice™ 2

Injustice™ 2

View Stats:
PapayaPhil Jan 10, 2018 @ 8:49am
AFK Farm???
So I was browsing the injustice reddit page and I've noticed a particular thread. It was about macros on the ps4 remote play to grind characters on the endless matches. That got me curious if it was possible to use the AutoHotKey on keyboard to just keep pressing enter.

Is this possible?
< >
Showing 1-15 of 15 comments
⛧NecRoBile⛧ Jan 10, 2018 @ 8:50am 
I don't know how to do it, but I've heard people are able to get it to work. Just set it to press space bar every few seconds, and just let the game auto it's way into oblivion. lol I recall seeing a thread where one guy put over 4k defense on his Batman, and if I remember correctly, he was over 400 battles before he was thinking of calling it good.
Frozentooth Jan 10, 2018 @ 1:27pm 
Go to your loadouts and equip gear and abilities on your AI loadout. When in multiverse just pick that loadout and voila
Dr Nighty Jan 10, 2018 @ 2:45pm 
Originally posted by Frozentooth:
Go to your loadouts and equip gear and abilities on your AI loadout. When in multiverse just pick that loadout and voila
You need to press A , everytime a fight ends. Read before posting nonsense, he is talking about a way to avoid that issue & just have the ai afk farm for you.
Last edited by Dr Nighty; Jan 10, 2018 @ 2:45pm
squidski_ (Banned) Jan 10, 2018 @ 2:56pm 
Download AutoHotKey, make a new script or open a .txt and save it as Injustice2.ahk

Put this in it :

Originally posted by Injustice2.ahk:


#Persistent
Random, randsleep , 5000 , 2500
SetTimer, PressTheKey, %randsleep% ; call press the key between 5 and 3 seconds
Return



PressTheKey:
IfWinExist, Injustice
WinActivate ; grab PS4 as the active window in case it loses focus
else
Return

Send {Enter down} ; Press down the Enter key.
Random, rand2, 1001, 1347
Sleep, %rand2% ; hold the Enter key down for at least 1sec. Neccesary for ps4 remote play to register
Send {Enter up} ; Release Enter key.
Return

Ignore the PS4 part of the script, doesn't matter. Start injustice 2 (preferably in windows mode) select the AI, start the endless multivere or whatever, right Injustice2.ahk and run as administrator.

Profit.
Gaxkang Jan 10, 2018 @ 3:57pm 
I suppose a non-technical way is if on your gamepad you were able to keep the "3" face button depressed since the progression in ladders etc requires that button to be pressed.

I don't think it constantly depressed would interfere with the AI fights.
King Hadu Jan 10, 2018 @ 5:18pm 
So you are saying I could let the AI play this multiverse crap for me? I don't actually have to waste my time on this just to get different look ./ costumes ?

Never knew that.
Last edited by King Hadu; Jan 10, 2018 @ 5:19pm
Lock Jan 10, 2018 @ 10:35pm 
Originally posted by AMX:
IfWinExist, Injustice™ 2
WinActivate
else
Return

Insert::
Loop
{
SetTimer, KeyPres, 100
Return
KeyPres:
Send, {Space down}
Sleep, 100
Send, {Space up}
Sleep, 100
Send, {Enter down}
Sleep, 100
Send, {Enter up}
Return
}
return

Home::Pause, Toggle



That's the script I use for Endless. Constantly pressing Space and Enter every second. But now the thing I'm doing just for the profile XP is creating a single match, very easy difficult, select the Fortress of Solitude arena (fastest to load) and go to sleep lol. The script makes the character constantly grab the opponnent, winning every match and getting like 600 xp per match. I leveled my profile 3 levels last week.

I do this just for the source crystals. It doesn't give you any gear though.


You activate it with Insert and pause / resume with Home.
thanks man.. it worked
Seerk Jan 11, 2018 @ 1:51am 
Originally posted by King Hadu:
So you are saying I could let the AI play this multiverse crap for me? I don't actually have to waste my time on this just to get different look ./ costumes ?

Never knew that.
I found out about that ai controlled multiverse fighting because of that Reddit thread mentioned earlier, I still try to do the medium difficulties myself but anything above I tend to slide over to the AI. (The AI had beat some very hard fights for me that I'm not good enough for, even though it did take 10 tries)
King Hadu Jan 11, 2018 @ 2:18am 
^ thats great

How do I enable this AI thing? so I could just let the AI play multiverse whole day while I am at work and when I come home I could have a level 20 catwoman with all the legendary gear is what you are saying?
RhodosGuard Jan 11, 2018 @ 2:49am 
Amazing how much effort people put into this so they dont have to play the game.
PapayaPhil Jan 11, 2018 @ 3:10pm 
Originally posted by squiddlydoo:
Download AutoHotKey, make a new script or open a .txt and save it as Injustice2.ahk

Put this in it :

Originally posted by Injustice2.ahk:


#Persistent
Random, randsleep , 5000 , 2500
SetTimer, PressTheKey, %randsleep% ; call press the key between 5 and 3 seconds
Return



PressTheKey:
IfWinExist, Injustice
WinActivate ; grab PS4 as the active window in case it loses focus
else
Return

Send {Enter down} ; Press down the Enter key.
Random, rand2, 1001, 1347
Sleep, %rand2% ; hold the Enter key down for at least 1sec. Neccesary for ps4 remote play to register
Send {Enter up} ; Release Enter key.
Return

Ignore the PS4 part of the script, doesn't matter. Start injustice 2 (preferably in windows mode) select the AI, start the endless multivere or whatever, right Injustice2.ahk and run as administrator.

Profit.

This is very informative! Thanks for this!
PapayaPhil Jan 11, 2018 @ 3:14pm 
Originally posted by RhodosGuard:
Amazing how much effort people put into this so they dont have to play the game.

It's pretty productive if you think about it, you can just run the grinding game while you can do other stuffs. Especially those who barely have time.

Although this could foresight something "cancerous" in the long run but who knows...
PapayaPhil Jan 11, 2018 @ 3:16pm 
Originally posted by AMX:
IfWinExist, Injustice™ 2
WinActivate
else
Return

Insert::
Loop
{
SetTimer, KeyPres, 100
Return
KeyPres:
Send, {Space down}
Sleep, 100
Send, {Space up}
Sleep, 100
Send, {Enter down}
Sleep, 100
Send, {Enter up}
Return
}
return

Home::Pause, Toggle



That's the script I use for Endless. Constantly pressing Space and Enter every second. But now the thing I'm doing just for the profile XP is creating a single match, very easy difficult, select the Fortress of Solitude arena (fastest to load) and go to sleep lol. The script makes the character constantly grab the opponnent, winning every match and getting like 600 xp per match. I leveled my profile 3 levels last week.

I do this just for the source crystals. It doesn't give you any gear though.


You activate it with Insert and pause / resume with Home.

Another great method! Thanks man!
King Hadu Jan 12, 2018 @ 2:31am 
LOL he got banned for posting that that script?
RhodosGuard Jan 12, 2018 @ 3:13am 
Originally posted by DeOnlyGman:
Originally posted by RhodosGuard:
Amazing how much effort people put into this so they dont have to play the game.

It's pretty productive if you think about it, you can just run the grinding game while you can do other stuffs. Especially those who barely have time.

Although this could foresight something "cancerous" in the long run but who knows...
Productivity doesnt matter.
It's a game. it's supposed to be played.
Entertainment!
But well. Seems like people care more about having all the stuff than having fun playing the game.

But I understand. Starting at 4 Bars AI is retardedly unfair.
< >
Showing 1-15 of 15 comments
Per page: 1530 50

Date Posted: Jan 10, 2018 @ 8:49am
Posts: 15