Page 1 of 1

[Newcomer] Dragon Ball FZ training Scripts

Posted: 27 Jan 2018, 21:20
by Youngling
Good morning/evening peoples of the community of AHK,

It's my first time posting here so I'll try to be as precise as possible,
So i decided to give scripting a try with the coming out of the new game from The dragon ball franchise "FighterZ"

I looked around the website and the forums trying to understand how was working the codes and differents way to make it work but it seemed I wasn't able to suceed. This is the different code I tried to make it work as a test to run the Y into a P :

Code: Select all

y::

Sendplay {p}

Return

Code: Select all

y::

Sendinput {p}

Return
It seemed that the second code worked on any other page of my computer : Notepad, Internet [etc...]
But somehow it didn't on the game I want it to work :cry:

I'll keep on looking for in the meantime, for a way to the following combo :
{j}
{Down, k}
{k}
{i}
{j}
{Down, Down left, left + k}
{Down, Down left, left + p}
If any of you have an idea, or could help me, That really would be amazing :dance:
Many thanks in advance,
Have a wonderful day !

Bit of news~

Posted: 28 Jan 2018, 09:28
by Youngling
Sorry in advance for the double post.

So I managed to learn how to SendInput and made it work in multiples windows.

So far, it seems that the window of the game won't allow my script to run. I tried to make a light attack into a heavy attack using this :
u::

SendInput p

Return
It made the game unable to recognize the Light attack anymore, like it was blocking the script.
Any idea ?
I'll go back to try finding myself in the meantime ~ :)

Re: [Newcomer] Dragon Ball FZ training Scripts  Topic is solved

Posted: 28 Jan 2018, 19:07
by Youngling
You guys can close subject I found all my answers <3

Re: [Newcomer] Dragon Ball FZ training Scripts

Posted: 29 Jan 2018, 00:12
by GreatGazoo
gg

Re: [Newcomer] Dragon Ball FZ training Scripts

Posted: 03 Feb 2018, 09:13
by Kyonshin
Anyone have an exemple of Autohotkey for Dragonball FighterZ ?

Because i want to take all of this combo in macro for playing with friends or against the AI, it's just 6 but with them is just perfect ! :superhappy:

Base Combo :

'Basic Combo 1: Light > Medium > Heavy > Heavy > Light > Medium > Jump Cancel > Light > Medium > Special Move > Super Move

Basic Combo 2: Light > Medium > Down + Heavy > Heavy > Light > Medium > Jump Cancel > Light > Medium > Special Move > Super Move

Intermediate Combo 1: Light > Down + Medium > Medium > Jump Cancel > Light > Medium > Down + Heavy > Heavy > Light > Medium > Jump Cancel > Light > Medium > Special Move > Super Move (in the air)

Intermediate Combo 2: Light > Down + Medium > Medium > Jump Cancel > Light > Medium > Down + Heavy > Heavy > Light > Medium > Jump Cancel > Light > Medium > Heavy > Super Move (on the ground)

Advanced Combo 1: Light > Down + Medium > Medium > Jump Cancel > Light > Medium > Light > Down + Heavy > Light > Light > Down + Heavy > Jump Cancel > Light > Light > Special > Super Move (in the air)

Advanced Combo 2: Light > Down + Medium > Medium > Jump Cancel > Light > Medium > Light > Down + Heavy > Light > Light > Down + Heavy > Jump Cancel > Light > Light > Light > Super Move (on the ground)

Re: [Newcomer] Dragon Ball FZ training Scripts

Posted: 03 Feb 2018, 22:10
by eventhorizon
Keep in mind that Dragon Ball FighterZ uses something called EasyAntiCheat that runs alongside the client software and scans your hardware and local memory for anti-cheat software. I'm not entirely sure what this anti-cheat does but it could be interfering with your ability to keybind or send your hotkey routines to the game. Since i don't have the game i'm unable to check further any interference with Autohotkey the game makes. Also you want to make sure that any scripts you make run the game as a window and not as a True Fullscreen. Start with something simple like trying to pop up a message box or a tooltip to see if the game can even respond to that before going all gung ho on a full script.

Re: [Newcomer] Dragon Ball FZ training Scripts

Posted: 04 Feb 2018, 10:29
by Kyonshin
Ok i try this !