How to add a countdown for Whiter?

  • 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 community!

    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.

aescraft

Well-Known Member
Mar 1, 2017
295
13
0
I created a buffed whiter that is really hard to kill. But I don't want it to live "forever", so I want to add a countdown for like 1 day, after that, the whiter will despawn itself.

Is it possible? Thanks.
 
on spawn of wither:
while event-entity is alive?:
wait 1 day
kill event-entity.com?
 
I created a buffed whiter that is really hard to kill. But I don't want it to live "forever", so I want to add a countdown for like 1 day, after that, the whiter will despawn itself.

Is it possible? Thanks.
Just kill all entity at reload. (Server will be restart ever day?)

code_language.skript:
on script unload:
    kill all wither #not sure that works? else.
    loop all enitites:
        loop-enities is wither:
             kill loop-entities
 
Just kill all entity at reload. (Server will be restart ever day?)

code_language.skript:
on script unload:
    kill all wither #not sure that works? else.
    loop all enitites:
        loop-enities is wither:
             kill loop-entities
This will drop the nether star?
 
uhm no. do you wan't really drop a netherstar?!
No, I don't want it to drop the nether star.
[doublepost=1491599475,1491595352][/doublepost]Can you help me on how to log who spawned the wither?
 
Just kill all entity at reload. (Server will be restart ever day?)

code_language.skript:
on script unload:
    kill all wither #not sure that works? else.
    loop all enitites:
        loop-enities is wither:
             kill loop-entities
The code is not working :emoji_frowning:
This needs just skript?
 
"Cant understand this condition/effect: kill all wither"

"cant understand this loop: "loop all entities"
 
Try this:

code_language.skript:
loop all entities:

Entities is spelled wrong.
 
Status
Not open for further replies.