Injustice™ 2

Injustice™ 2

檢視統計資料:
PapayaPhil 2018 年 1 月 10 日 上午 8:49
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?
< >
目前顯示第 1-15 則留言,共 15
⛧NecRoBile⛧ 2018 年 1 月 10 日 上午 8:50 
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 2018 年 1 月 10 日 下午 1:27 
Go to your loadouts and equip gear and abilities on your AI loadout. When in multiverse just pick that loadout and voila
Dr Nighty 2018 年 1 月 10 日 下午 2:45 
引用自 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.
最後修改者:Dr Nighty; 2018 年 1 月 10 日 下午 2:45
squidski_ (已封鎖) 2018 年 1 月 10 日 下午 2:56 
Download AutoHotKey, make a new script or open a .txt and save it as Injustice2.ahk

Put this in it :

引用自 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 2018 年 1 月 10 日 下午 3:57 
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 2018 年 1 月 10 日 下午 5:18 
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.
最後修改者:King Hadu; 2018 年 1 月 10 日 下午 5:19
Lock 2018 年 1 月 10 日 下午 10:35 
引用自 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 2018 年 1 月 11 日 上午 1:51 
引用自 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 2018 年 1 月 11 日 上午 2:18 
^ 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 2018 年 1 月 11 日 上午 2:49 
Amazing how much effort people put into this so they dont have to play the game.
PapayaPhil 2018 年 1 月 11 日 下午 3:10 
引用自 squiddlydoo
Download AutoHotKey, make a new script or open a .txt and save it as Injustice2.ahk

Put this in it :

引用自 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 2018 年 1 月 11 日 下午 3:14 
引用自 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 2018 年 1 月 11 日 下午 3:16 
引用自 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 2018 年 1 月 12 日 上午 2:31 
LOL he got banned for posting that that script?
RhodosGuard 2018 年 1 月 12 日 上午 3:13 
引用自 DeOnlyGman
引用自 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.
< >
目前顯示第 1-15 則留言,共 15
每頁顯示: 1530 50

張貼日期: 2018 年 1 月 10 日 上午 8:49
回覆: 15