Help please

  • 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.

Souup_US

Member
Mar 8, 2019
2
0
0
25
My Skript has the function of killing an amount of mobs stacks.

on death of zombie:
if attacker is a player:
set {_drops} to number of drops
clear drops
set {_name} to name of victim

# Before this x has a number that represents the amount of mobs in a stack
# I wanted to setar the number of mobs in variable {_name}

if {_name} contais "x Zombie":
if {_name} has number:
set {_name} to number of victim name
set {_drops} to {_drops} * {_name}
add {_drops} to {zombie.%attacker%}
stop

# The code doesn't work and I'm already on time trying to make it work nothing else worked out
# Help Me please
 
try this

on death of zombie:
if attacker is a player:
set {_drops} to number of drops
clear drops
set {_name} of victim

---------------------------------------------------------------


if {_name} contains "x Zombie":
if {_name} has number:
set {_name} to number of victim's name
set {_drops} to {_drops} * {_name}
add {_drops} to {zombie.%attacker%}
stop
 
My Skript has the function of killing an amount of mobs stacks.

on death of zombie:
if attacker is a player:
set {_drops} to number of drops
clear drops
set {_name} to name of victim

# Before this x has a number that represents the amount of mobs in a stack
# I wanted to setar the number of mobs in variable {_name}

if {_name} contais "x Zombie":
if {_name} has number:
set {_name} to number of victim name
set {_drops} to {_drops} * {_name}
add {_drops} to {zombie.%attacker%}
stop

# The code doesn't work and I'm already on time trying to make it work nothing else worked out
# Help Me please
When you will post code, use the [ CODE ] format, obviously, without spaces. And the final close with [/CODE]
And I can not find meaning in your code.
 
Status
Not open for further replies.