Solved Lowering Fist Damage

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the community!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Skzen

Member
Jun 15, 2017
15
1
0
Hello,

In 1.9 they changed the system to the attack speed delay, but I have reverted to 1.8 attack speed with MassiveCombat. However, my players now do more damage when using their fists since there is no attack speed. How can I lower the damage?
 
code_language.skript:
on damage:
    if attacker is a player:
        if attacker's tool is air:
            set damage to whatever
 
Hello,

In 1.9 they changed the system to the attack speed delay, but I have reverted to 1.8 attack speed with MassiveCombat. However, my players now do more damage when using their fists since there is no attack speed. How can I lower the damage?


code_language.skript:
on damage:
    set damage to damage/2#or lesser?

#edit
#well, the above of me was faster. ;_;
 
Something like this.
code_language.skript:
set damage to 0.5
 
Status
Not open for further replies.