Rapid fire mode on Blue Marine and Landmaster

This commit is contained in:
Kiloku 2025-01-04 21:27:25 -03:00 committed by Alejandro Asenjo Nitti
parent 0b5dfd900e
commit 76dab3e20d
2 changed files with 35 additions and 6 deletions

View File

@ -3476,8 +3476,21 @@ void Player_Shoot(Player* player) {
case FORM_LANDMASTER: case FORM_LANDMASTER:
if (!Player_UpdateLockOn(player)) { if (!Player_UpdateLockOn(player)) {
if (gShootButton[player->num] & gInputPress->button) { if (rapidFire) {
if (gShootButton[player->num] & (gInputHold->button)) {
if (player-> shotTimer > 0) {
player->shotTimer--;
}
if (player->shotTimer <= 0){
Player_TankCannon(player); Player_TankCannon(player);
player->shotTimer = 3;
}
}
}
else {
if (gShootButton[player->num] & (gInputPress->button)) {
Player_TankCannon(player);
}
} }
Player_SmartBomb(player); Player_SmartBomb(player);
} }

View File

@ -1328,11 +1328,27 @@ void Aquas_BlueMarineShoot(Player* player) {
Aquas_801A9DE4(player); Aquas_801A9DE4(player);
} }
bool rapidFire = CVarGetInteger("gRapidFire", 0) == 1;
if (rapidFire){
if (gInputHold->button & A_BUTTON)
{
if (player-> shotTimer > 0) {
player->shotTimer--;
}
if (player->shotTimer <= 0){
Aquas_BlueMarineLaser(player);
player->shotTimer = 3;
}
}
}
else {
if (gInputPress->button & A_BUTTON) { if (gInputPress->button & A_BUTTON) {
Aquas_BlueMarineLaser(player); Aquas_BlueMarineLaser(player);
} }
}
if (gInputPress->button & B_BUTTON) { if ((rapidFire ? gInputHold->button : gInputPress->button) & B_BUTTON) {
Aquas_BlueMarineTorpedo(player); Aquas_BlueMarineTorpedo(player);
if (D_i3_801C4190[0] != 0) { if (D_i3_801C4190[0] != 0) {
D_i3_801C4190[3] = 1; D_i3_801C4190[3] = 1;