Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
x3Karma authored Mar 31, 2022
1 parent 21639f9 commit 90bd384
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions Karma.Abuse/mod/scripts/vscripts/rearm.nut
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,15 @@ void function RearmTest(entity player)
printt( weapon.GetWeaponClassName() + " needs to be updated to support cooldown_type setting" )
continue;
}
if (player.IsTitan()) {
player.Server_SetDodgePower(100.0);
entity soul = player.GetTitanSoul();
SoulTitanCore_SetNextAvailableTime( soul, 100.0 );
}
Kprint( CMDsender, "Rearmed " + player.GetPlayerName() + "!")
}
}
if (player.IsTitan())
{
player.Server_SetDodgePower(100.0);
entity soul = player.GetTitanSoul();
SoulTitanCore_SetNextAvailableTime( soul, 100.0 );
}
Kprint( CMDsender, "Rearmed " + player.GetPlayerName() + "!")
} catch(e)
{
print( e )
Expand Down

0 comments on commit 90bd384

Please sign in to comment.