Solved How to create a mob counter?

  • 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 comminuty!

    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.

Funtime

Active Member
Apr 24, 2017
54
0
0
22
I'm trying to create a mob counter, and just trying to count for 1 animal to make sure it works. The command works but it always says I've killed 0 chickens after I've killed many.
My current code:

on join:
if {chicken.%player%} is not set:
set {chicken.%player%} to 0

on death:
if attacker is a player:
if victim is a chicken:
add 1 to {chicken.%player%}
send "&aYou killed a chicken!"

command /chicken:
trigger:
send "&aYou have killed &c%{chicken.%player%}% &achickens!"
 
Status
Not open for further replies.