Jump to content

ItsKirby

Member
  • Posts

    119
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by ItsKirby

  1. 1 hour ago, ItRO said:

    So, I'm bored; I'm coming back to Minehut for a while, and I'm good at skript so I want some requests for skripts. After I get a couple of responses, I'll choose the ones that I find interesting and/or original (If you're chosen, I will DM you.). If it's too hard (entire server wise), then no. Simple, but not too simple projects. Something that I can work on for an hour or two.

    When the project is finished, I will DM you your finished product. 
    Specifications are allowed, so you can tell me any specific, personal things you want done to the project. Message prefixes, colors, etc.

    Thank you, and enjoy the product you receive! 😄

    Hmm seems interesting. I have a skript in mind that i would want someone to try creating. if you could, can you try creating cave spiders that doesn't harm the player that spawned the spiders but harms other spiders/players. Like some kind of cave spider army for each players.
    I am working on something that uses this idea.

    Discord: ItsDaKIRBY69#9460

  2. On 7/14/2021 at 7:33 PM, elitemax77 said:

    i want a gen skript

    There are several reasons why many skripters will not give you a gen skript. Gen servers kinda Sucks and it doesn't help as more and more of these kinds of servers with a supposed "twist" go to the server page. If you would want to create a gen server, i wouldnt recommend it because it's not as easy as it sounds like it. I suggest thinking of a great idea that no one has created in minehut and create it instead

  3. Hello everyone. I once again wasted hours to create a skript im not event going to use. Use it however you please! Please note that i could probably be the worst skripter in minehut when it comes to actually creating something. So there might be some bugs that could occur when using this skript.
    Anyways, have fun.

    What is the skript about?:

    The skript is a recreation of a minigame i used to play long ago with my friends called "Find the button", the name says it all.


    Featured commands:

    /Ftb game create (game) {to create a find the button game, made it so you can create multiple games}
    /Ftb game spawn (game) {to set the starting location of a game, recomended you create a map with the size of a chunk and put the button in the map as a level}
    /Ftb game button (game) {to get the button needed to play the game}

    How to create a game:

    Start by doing /Ftb game create (game) to create a game, then set the spawn for the game by doing /Ftb game spawn (game). Get yourself the button for the game by doing /Ftb game button (game) and you're done. More helpful commands like /gamelist and /joingame {to join a game} are in the skript.

    Helpful notes:
    Might be a good idea to make the games in a box like i mentioned and place the button inside as a level. Do not remove the button when placed because players won't be able to finish the game, so if that happens, get the button for the game again. Removal of games are in the skript. /Ftb game delete (game)

    This is my second time creating something like this. There will be bugs, ofc, and it might not be the greatest re-creation, this is just for fun. 

    Pastebin for skript: https://pastebin.com/W5URQJvK

    If there is any suggestions on how i can improve, don't hesitate to tell me! 

     

  4. On 8/12/2021 at 10:27 AM, Lapzzo said:

    I set the walkspeed to 0 tho. Were there any errors?

    You could add something like this:
     

    on any movement:
    	if {verify::%player%} is false:
    		cancel event
    		send "Do /vertify" to player

    But im guessing it's already too late

  5. On 8/9/2021 at 2:14 AM, TankSniperD said:

    Reply to this with your IGN, your server type(Gens, Mining, etc.) and What skript you want. I will try my best to do it, I might not be able to do all your requests. Just to let you know, I have about 5 years of experience Skripting. Thanks. I will contact you if I am working on your Skript! 😄

    IGN: Itsdakirby69
    Server type: Game (currently working on)

    Im trying to find out how i can create a skript that detects if a 3x3 area of an event-block is solid (meaning no air, no water, etc) and checks if the 3x3 area above the event-block is air when the player is right-clicking a certain block. Trying to make a skript that can tell if the area around the event-block is a flat area. For some game purposes. 
    EDIT: Created the skript myself : p

  6. 16 hours ago, LastMC said:

    command /freeop [<offline player>]:
        permission: op
        trigger:
            send "&7&o[%player%&7&o: Made %arg-1%&7&o a server operator]" to arg-1
            send "&7&o[%player%&7&o: Made %arg-1%&7&o a server operator]" to player

    Im going to now use this to troll people lol. Nice skript

    • Like 1
  7. 1 hour ago, Zuixik said:

    How do I save the location of the block but then it could not be destroyed? 

    Here is the script but it does not work. I don't know how to fix it

    1.  

       

    It may not work i haven't tried. But the indention should be like this from my knowledge:
     

    on break:
        {crates::NAME::locations*} is set:
            if {crates::NAME::locations*} contains location of event-block:
                add 1 to {crates::NAME::progress}
                cancel event
                # play sound
    
    command /crate <string>:
        trigger:
            add location of target block to {crates::%argument 1%::locations::*}
            send "added crate %argument 1%"

     

  8. On 8/8/2021 at 4:26 AM, TankSniperD said:

    Here is a Basic Mutechat Skript! I will be post more skripts soon!

     

    Skript Made By: TankSniperD

    Do not take credit for this skript and say it is yours! Thanks

    command /mutechat:
        permission: staff.mute
        permission message: &c You don't have the required permission to perform that command.
        trigger:
            if {Globalchat} is not set:
                set {Globalchat} to true
                broadcast "&c&lServer-name &c| &cChat has been muted by &r&c%player%"
                stop trigger

            if {Globalchat} is set:
                clear {Globalchat}
                broadcast "&c&lServer-name &c| &aChat unmuted by &r&a%player%"

    on chat:
        if {Globalchat} is true:
            if player has permission "chat.mute.bypass":
                stop trigger
            else:
                cancel event
                send "&cChat is currently muted."

    Havent tested it but it looks neat!

     

  9. 17 hours ago, nolando09 said:

    Im working on a custom join message skript but im stuck 😞

     

    on join:
      loop all players
      set {_pref} to formatted convHex(loop-player's prefix)
      broadcast "&7[&b+&7]%{_pref}%loop-player'sprefix%"

    Im not too sure about the third line but you have to add a : at the end of the second line and add spacing to the third line

    • Like 1
  10. Long time ago when i was back at 4th grade or something, i was invited to play at my friend's house. He wanted to play smash bros with all of the friends that were playing at the house. I never played the game but heard of it before and picked Kirby as my smash. I almost won against everyone and picked this username when i was introduced to the internet.

  11. 2 hours ago, LapEvents said:

    Edit: Skript-yaml has been requested multiple times by many people of the minehut community, but has been denied each time. It will be hard getting this added

    Just an addon to why Skript-yaml has been denied each time, Minehut doesn't support the plugin for Security Issues, same goes with Skript-reflect. I don't know too much about this but this is what i found when searching for a reason to this.

  12. Just now, nolando09 said:

    Im sorry but i have no clue how to ad one

    just add something like "wait 1 second" or "wait 5 ticks" below the "While player is online:"
    But note that im not too sure about it

  13. 3 minutes ago, nolando09 said:

    This is all i have done so far

    on join:
     while player is online:
      set title of player's scoreboard to "&4&lVelvetSurv"
      set line 10 of player's scoreboard to ""
      set line 9 of player's scoreboard to "&4Rank:"
      replace all "[" and "]" with "" in {_prefix}
      set {_suffix} to "%colored player's suffix %" 

    Don't take my word for this one but i think you need a wait line.

  14. 10 hours ago, Ezekia said:

    so about 5 months ago I was working on a server called uhc-pie and today I'm revamping it! Leave a PM if you would like to get notified when the first UHC starts (or when the server opens)!

    Progress:

    • UHC - 98%
    • Duels - 100%
    • Arena (Hypixel Pit style KitPvp) - 100%
    • UHC Queue System - 100%
    • Lobby - 75%

    Duels Maps:

    unknown.png

    unknown.png

    unknown.png

    Nice looking server. Seems like it has good potential! Just a note, i hope you can make the server high quality!
     

    • Like 1
×
×
  • Create New...