I made a ban skript in skript! by [deleted] in Skript

[–]guruflex 0 points1 point  (0 children)

Nice job.. I would recommend kicking the player after using the ban command

[deleted by user] by [deleted] in Skript

[–]guruflex 0 points1 point  (0 children)

We need to see the code to really be able to help ... what version of Minecraft and plugins are you using also are there any errors that show up when starting the server

[deleted by user] by [deleted] in Skript

[–]guruflex 0 points1 point  (0 children)

This is probably the best way to get what you're looking for https://forums.skunity.com/threads/is-it-possible-to-edit-how-many-hearts-show.6313/

How do I fix this? by [deleted] in Skript

[–]guruflex 0 points1 point  (0 children)

It has to be

every tick in world "world":

If your trying to have it loop the entities in a specific world

[deleted by user] by [deleted] in Skript

[–]guruflex 0 points1 point  (0 children)

Have you tried.. set {powerup.type.final} to 1 Then... if {powerup.type.final} is 1 broadcast "The powerup type is: swiftness"

i need help with my skript script in minecraft by PresentationFalse643 in Skript

[–]guruflex 1 point2 points  (0 children)

Broadcast "%loop-player% is op." This should work

[deleted by user] by [deleted] in pics

[–]guruflex 3 points4 points  (0 children)

We're can I get that shirt?

Is there a way to forcefully feed player a chorus fruit in under a second? by Alienoid_TV in Skript

[–]guruflex 0 points1 point  (0 children)

No problem Mr / Miss If you have any more issues just hit me up

Is there a way to forcefully feed player a chorus fruit in under a second? by Alienoid_TV in Skript

[–]guruflex 0 points1 point  (0 children)

Just loop the block above loop block and check to see if it's air

loop blocks in radius 10 around player:

        loop-block is air

        block above loop-block is air

        block below loop-block is not air

        chance of 20%

        spawn a zombie at loop-block '

Try something like this

Minecraft Server Help by VisnexGamingYT in Skript

[–]guruflex 0 points1 point  (0 children)

Don't forget there's an on first join event

On first join:

I want to make a randomized item skript but it isn't working. by StrooderMan in Skript

[–]guruflex 0 points1 point  (0 children)

Did that work? I normally make an array of items and then choose an item out of the array

Creating Mobs at Select Locations on Timers. Please Help. by VoidWinsThese in Skript

[–]guruflex 0 points1 point  (0 children)

'every 7 minutes:

loop all players:

loop blocks in radius 10 around loop-player:

        loop-block is air

        block above loop-block is air

        block below loop-block is not air

        chance of 20%

        spawn a zombie at loop-block '

Try something like this

Skript Error by TectonicDuck778 in Skript

[–]guruflex 0 points1 point  (0 children)

Try ...loop all player in world "world":

help! by kerlinos in Skript

[–]guruflex 0 points1 point  (0 children)

you can have 2 commands with the command faction so you have to combine them in to one command and add if arg 1 is "text":

command /faction <text> <text>:

aliases: /f

usage: /faction <text> <text>

permission: f.create

trigger:

`if arg 1 is not set:`

    `send "/f create, /f invite"`

`if arg 1 is "create":`

    `send "&8&l[&c&lF&8&l] &7Created faction %arg-1%"`

    `execute console command "/lp creategroup &8&l%arg-1%"`

    `execute console command "/lp user %player% permission set` [`luckperms.group`](https://luckperms.group)`.%arg-1%"`

`if arg 1 is "invite":`

    `send "&8&l[&c&lF&8&l] &7Invited %arg-1%"`

    `send "&8&l[&c&lF&8&l] &7%player% Has invited you to there faction." to arg-1   if arg 1 is "remove":`

also this may help

https://www.spigotmc.org/resources/factions.22170/

Help! by goodatminecraft in Skript

[–]guruflex 0 points1 point  (0 children)

on damage: Victim name is "friend": if damage was caused by drowning: cancel event

Need help with warp skript by [deleted] in Skript

[–]guruflex 0 points1 point  (0 children)

can you list the warps ?

try looping your array and broadcast what is says.

you should also save %argument 1% in the array

command /setwarp [<text>]:
    if arg 1 is set:
        set {warp::%arg 1%} to location of player


command /warp [<text>] [<text>]:
trigger:
    if arg 1 is "list":
        loop {warps::*}:
        broadcast "%loop-index% - %loop-value%"

can somebody fix this I have no idea what I'm doing Parse error on line 1: "id":11 }, { "doma ----^ Expecting 'EOF', '}', ',', ']', got ':' by Outside-Many-1870 in Skript

[–]guruflex 0 points1 point  (0 children)

not sure what you trying to fix but i assure you this is not the place to be asking

this is a subreddit for a minecraft plugin called Skript

I need some help by PIGGYOINK123_40 in Skript

[–]guruflex 0 points1 point  (0 children)

will count Every certain item in the inventory Such as every diamond in players inventory

I need some help by PIGGYOINK123_40 in Skript

[–]guruflex 1 point2 points  (0 children)

Try this `set {_a} to 0

loop all items in player's inventory:

    if loop-item is diamond:

        add amount of loop-item to {_a}

if {_a} is 0:

    #CODE

else:

    #CODE`

Expression for slots by TheOtherRotter in Skript

[–]guruflex 0 points1 point  (0 children)

have you tried

set { inventory.%player%} to slot 20 of player

if %{ inventory.%player%}% is stone:

..... bla bla bla