Jump to content

Spiderman's Webslinger skript (made by crafty code ai!)


Dezorc

Recommended Posts

command /webslinger:
    permission: webslinger.use
    trigger:
        give player a cobweb named "Spiderman's Webslinger"
        set lore of player's weapon to "Swing through the city!"

on rightclick with cobweb named "Spiderman's Webslinger":
    cancel event
    set {web.slinger.%player%} to true
    send "You are now using the Spiderman's Webslinger!" to player

on move:
    if {web.slinger.%player%} is true:
        set player's velocity to (vector of player's facing direction) * 2
        wait 1 ticks
        set player's velocity to (vector of player's facing direction) * 1.5
        wait 1 ticks
        set player's velocity to (vector of player's facing direction) * 1
        wait 1 ticks
        set {web.slinger.%player%} to false

Crafty Code AI: Create minecraft skripts and plugins in a simple message!

https://discord.gg/WQwPYwvH7Y
The best part is that its 100% free!


Heres an example of a simple broadcast skript it made:

command /broadcast <text>:
    description: Broadcasts a message to all players.
    usage: /broadcast <message>
    permission: broadcast.use
    trigger:
        broadcast "&6[Broadcast] &e%arg-1%
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...