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

PixelBlade_

Member
Apr 30, 2020
2
0
1
66
hi im trying to make a similar fairy soul plugin but with obsidian but i dont know why is there an error.
ive tried everything(atleast i think) but i couldnt fix it.
can someone fix the skript for me i know it takes time but pls?
Thank you.
--------------------------------------------------------------
on rightclick on a obsidian with a fishing rod
trigger:
set {dmg} to {dmg} + 1
brodcast "%player% Got the Block!!"
set clicked block to air
on damage:
attacker is player:
trigger:
damage victim by {dmg} + damage hearts
[doublepost=1588266490,1588222995][/doublepost]Help?
 
hi im trying to make a similar fairy soul plugin but with obsidian but i dont know why is there an error.
ive tried everything(atleast i think) but i couldnt fix it.
can someone fix the skript for me i know it takes time but pls?
Thank you.
--------------------------------------------------------------
on rightclick on a obsidian with a fishing rod
trigger:
set {dmg} to {dmg} + 1
brodcast "%player% Got the Block!!"
set clicked block to air
on damage:
attacker is player:
trigger:
damage victim by {dmg} + damage hearts
[doublepost=1588266490,1588222995][/doublepost]Help?
There is an error in the syntax, trigger doesn't go into events.

Try:
code_language.skript:
on rightclick:
    event-block is obsidian:
        player's held item is a fishing rod:
            set {dmg} to {dmg} + 1
            broadcast "%player% Got the block!"
            set event-block to air
on damage:
    attacker is a player:
        damage victim by {dmg}
 
  • Like
Reactions: PixelBlade_
Status
Not open for further replies.