Assist – striker system for Ikemen Go
Update 20/03/25: Updated to the latest Ikemen Go build.
Now, you can assign up to 2 different attacks for your assisting char.
You can choose betweeen a ground or air attack.
You can decide how far the character will go on screen before performing the attack.
More constants to control many characteristics.
Many bug fixes.
By request, I worked on a system that tries to simulate the mechanics of some fighting games that call a non-playable partner to assist you in the fight. I use two games as inspiration for this module, the first is The King of Fighters 2000. The other one is Dengeki Bunko from Sega.
What is this about?
A module that try to emulate the mechanics of games like The King of Fighters 2000 and Dengeki Bunko when one of your teammates works exclusive as an assistant, throwing attacks or movements who help the team leader in the battle.
This module, to work as close as the source of inspiration, needs a fixed configuration for Ikemen Go, where all modes except TAG are disabled. Check this video on my Youtube channel to see the module in action
One build comes ready with something similar to KOF 2000 system.
1- 3 strikers at the start of the match.
2- Every time a team member loses the match, that team gains 1 striker extra. Also, the maximum quantity of strikers increases by 1.
3- Taunting while having 1000 of power gives the team 1 extra striker.
4- Team 3 versus 3. The fourth character chosen will be the striker.
Download it here.
The other build comes with some sort of Dengeki Bunko / Nitroplus system.
1- Cooldown time for assists help instead of strikers quantity.
2- Unlimited assist calls.
3- Single 1vs1. The second partner of the team becomes the “assist”.
Coming Soon!
Check the new FORUM SECTION for support and discuss any possible future feature. No registration needed.
Setting up the characters
The Striker / Assist module now supports two different type of assist attacks. To set everything correctly copy these constants under the [Constants] section to you char main CNS file just below the [Movement] bloc.
firstStrikerMovement = 1000
The state number of the attack or movement you want to use as the first assist movement.
firstStrikerDistance = 1
Set this constant to 0 if you want to launch the movement as soon as the character enters the screen, 1 to track current teamleader position or 2 to track enemy teamleader position.
firstStrikerInitialState = 1
Set to 0 for ground attack, 1 for an air movement.
secondStrikerMovement = 1100
The state number of the attack or movement you want to use as the second assist movement.
secondStrikerDistance = 1
Set this constant to 0 if you want to launch the movement as soon as the character enters the screen, 1 to track current teamleader position or 2 to track enemy teamleader position.
secondStrikerInitialState = 1
Set to 0 for ground attack, 1 for an air movement.
tauntStateNumber = 195
State number for the taunt, real important for the mechanic that allows you to recover 1 striker.
strikerInTime = 20 ; tag-in total switch time
strikerInVelX = 10.5 ; tag-in max horizontal Vel X
strikerInVelY = -3 ; tag-in vertical speed Y
startHeightForSwitch = 40;
These four are optional but useful to adjust the speed and the screen height of the assist character.
Constants for combo detection
normalAttacksStartStateno = 200 ; the stateno that starts ground attacks
normalAttacksEndStateno = 499 ; the stateno that ends ground attacks
airAttacksStartStateno = 600 ; the stateno that starts air attacks
airAttacksEndStateno = 699 ; the stateno that ends air attacks
specialAttacksStartStateno = 1000 ; the stateno that starts special attacks
specialAttacksEndStateno = 1999 ; the stateno that ends special attacks
superAttacksStartStateno = 2000 ; the stateno that starts special attacks
superAttacksEndStateno = 3999 ; the stateno that ends special attacks
These are to help the combo system detection to work properly. If your characters follow the standard state number notation you do not need these. Only add them if you cannot call strikers/assists while landing a combo.
General Config
If you want to tweak the module to your most obscure desires I let some constants in the inside the “data/assist-striker/orochi_kyocr-assist-striker.const” file.
carryHealthLastRound
The Ikemen Go builds I share with you are not using either “teams” or “single” modes. I have to use TAG mode with some tweaks on the config.json file to achieve something closer to both KOF 2000 and Dengeki Bunko. If you set this constant to 1 you can activate a behavior where the winner’s/ health is NOT set to full again in the next round but the remaining amount plus 20%.
initialStrikerQuantity
The quantity of strikers/assists available at the start of the match.
cooldownSystemOn
If you set this to 1, instead of having a fixed quantity of assists/strikers, you’ll have infinite assists. Every time you use an assist, you need to wait for the cooldown time to reach a certain value to use it again.
cooldownTime
The “cooldown time” previously mentioned in the “cooldownSystemOn”.
changeTeamleader
If you are planning to go 3vs3 Teams with 4th player as striker, let this set to 1. If you want to play 2vs2 but change teamleader if your team loses let it set to =1. Only set it to 0 if you do not want to change teamleader.
debugMode
Set this to 0 if you do not want to see the debug information during training mode. You can turn it off/on ingame with start button.
strikerTurnSystem
I develop a turn system. The mechanics in this system implies a lot of situations where the teamleader will get between the both characters of the enemy team. If this give any issues, turn it off setting the option’s value to zero.
strikerDamageDampening
Sometimes the movements you choose for the assist do high damage. Turn this ON to try to reduce the damage. Sometimes it won’t work because chars have their own attackmulset sctrl on statedef -2 or -3.
How to install this module in your build
Before you continue, beware! This module replaces TAG mode and only works in Ikemen Go Nightly. If you agree with this, let’s set everything up. In the zip file, you will find a full build of Ikemen Go Nightly as of 20/03/25. Inside the “data” folder, you can find the “assist-striker” folder. Copy that folder and paste it into your Ikemen Go build.
Now open the save/config.ini file and add this parameter to the “Const” line: data/assist-striker/orochi_kyocr-assist-striker.const
In the “States” line remove the data/tag.zss and add this one: data/assist-striker/orochi_kyocr-assist-striker.zss
In the end your config.ini file should look like this.
FAQ
Can you make this compatible with that other tag system you worked on?
No. Both are quite different at a technical level.
Can I use this in my current build?
Follow the instructions just above this section. This module is onnly compatible with Nightly Build as 20/03/2025.
Why did you remove the other modes? Single? Teams? Simul?
I did this module by request, someone asked me if we can replicate something closer to The King of Fighters ’99, and 2000 in the engine.
Single and team modes are not used because the engine only loads one character per team for every round.
Turning the AI OFF on simul is not possible if the character is using the AILEVEL trigger. Also, I need to reuse the same hacks some creators used in Mugen to force the partners to leave the screen. A total mess that is not worth the job.
TAG is the only mode that loads more than one character per round and allows finishing the round once the team leader is beaten. No AI to turn off and tagout{} sctrl is quite useful.
All this nonsense is just to tell you that the module was done to be used in a full game or a closed environment and not for general use in casual Ikemen Go builds.
You can still add those game modes and see what happens, no guarantees. I won’t be paying any attention to anyone that reports bugs when this module is being played between different game modes.
Where I can report bugs or suggest any possible improvement?
Visit this forum section https://costaricaonfoot.blog/forum/topic/assist-striker-system-for-ikemen-go/ and tell me about your issue. No registration needed.
What is next?
Good question!
1- KOF 2000 has a special assist move when you call the assist immediately after the grab. The partner will enter really fast from the air and hit the opponent sending it into a special custom state where the main player can easily land a special or a super.
2- Bug fixing I guess and maybe some cool screenpack adapted to the system if I find someone kind enough to provide me with good sprites.
Special thanks
Jefinho: For telling how to set up Ikemen Go to make this work as intended.
Lasombra Demon and !Wreq.
Gacel, K4thos, and all the devs working on Ikemen Go.
To character creators:
Mai – KoopaKoot
N Geese – Jin
Clark – Ikaruga
Chris – Ahuron
The King of Fighters 2000 screenpack – M.M.R.|KAINE|NDS-Silva
Anyone I forgot to mention, I apologize.