Hello, I am making a FPS Minigame where I have a weapon that throws explosives.
I did this by making the shooter summon a potion that upon landing create an explosion
However, I wanted the shooter to get credit for the explosion, so I did this:
But when I reload a skript, it says that this expression isn't understood. Do I need a library to do this, or is there a different syntax? Thanks for the help.
I did this by making the shooter summon a potion that upon landing create an explosion
Code:
on projectile hit:
if "%projectile%" is "thrown potion":
create a safe explosion of force 3 at projectile
However, I wanted the shooter to get credit for the explosion, so I did this:
Code:
make shooter create a safe explosion of force 3 at projectile
But when I reload a skript, it says that this expression isn't understood. Do I need a library to do this, or is there a different syntax? Thanks for the help.