Jump to content

NotKaizo

Member
  • Posts

    204
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by NotKaizo

  1. 4 hours ago, Witho said:

    I've been having many problems with skript recently and one of the big ones is that it is not letting me do "format gui." It lets me make it, but I can't format it. If I format it it will not work at all. I have deleted all of my guis and it still doesn't work if I make another, please help

    TuSke is outdated. Use either Vanilla Guis or skript-gui

  2. Well yes you can be mad at other sales but the other sales are 50% usually. Not its 85% which is a big difference. And instead, why not just make server plans 85% off? Since Unleashed changes things about servers.  And this sale in particular flooded the chat. They didn't like ad rewards because it flooded Minehut chat, why are they not doing anything about this? It's basically the same thing. Other sales didn't have this much Ads.

  3. 6 hours ago, _Tarna_ said:

    I can understand why people are mad but don't understand why people don't say this for every other sale in existence. Like you could say this thing about any sale anyone has. And for the sale Minehut had last, I didn't see people complaining about it. I know it was a smaller one but still, the same could be said about it. 

    This is different since its a sale on ranks. When there was sale for credits, people would use the credits to save up so they could keep their server running and only a small amount would buy ranks. This is a 85% sale on basically everything and its also 25% more than the usual sale Minehut makes (50% usually). The chat is basically full with advertisement now (More advertisements that when ad rewards was a thing). 

  4. Minehut made a 85% off sale, for what? Minehut's unleashed. I am just gonna say that this sale will destroy tons of server. People paid hundreds of dollars for a rank and now its all less than a hundred dollars. They removed Ad Rewards so the chat won't be flooded with advertisements but what's the difference now? That the sale benefits Minehut and not others? Haven't they think about what will happen if they make such big sale? Maybe make a checkout code like last time for 50% off instead of 85% off almost everything?

  5. 1 hour ago, _Hall0w said:

    so i read your message just5moreminutes and i didn't follow the rules to well but then again the staff were being quite mean to me and they didn't treat me so well. they also mis took one of messages which got me banned but i excepted the ban i was just wondering how i could get a refund

    Make sure to check if their store has a non refund policy, if there isn't you can contact your bank or PayPal to issue a refund. If there is a non refund policy, you could still refund but that will most likely get you banned on the server forever (I don't recommend it).

  6. Hello, try utilizing options so people can customize it easier, for example:

    options:
    	your_custom_message: &6Hello! This is my custom message.
    
    command /test:
    	trigger:
    		send "{@your_custom_message}" to player

    You can use the options {@your_custom_message} anywhere in your Skript and it will return that specific option. So if you want to change the message in all the codes, just change one and boom everything is changed as well.

  7. Hey! Nice Skript! But there is some changes that can be made to make this shorter and nicer. Instead of repeating the glass format, you could easily just do this:

    format gui slot (integers between 0 and 26) of player with lime stained glass pane named "&a"

    That will take all those lines and compact it into just one singular line! 

  8. on death:
    	victim is a player
    	attacker is a player
        set {_diff} to difference between {cooldown::%victim's uuid%} and now
    	if {_diff} < 1 minute:
            send "This player has been killed recently, please wait or kill someone else!"
        else:
            send "You killed &4&l%victim%&r and recieved a soul!" to damager
            give attacker 1 of soul sand named "&4&lSoul"
            delete {cooldown::%victim's uuid%}

     

  9. 8 hours ago, 5vl said:

    Hello, I'm having problems with my custom domain on Minehut. I can connect to the server just fine, and playing works good as well.

    The problem I'm having is with the MOTD. 

     

    The MOTD it's supposed to show:

    image.png.dcdd53031904e2d245c7f499814b9bf5.png

     

    What it's showing with the custom domain:
    image.png.480b6b80701848603c51f354ba226f54.png

     

    This is my SRV record on Cloudflare:
    image.thumb.png.287a922c04b3f73169e665257f4e7fc0.png

     

    Please help me!

    So, that only happens when you are on 1.17. For some reason custom domains are broken on that version

  10. 5 hours ago, CraftingHimself said:

    Okay so im making my own gen server alone and I had an error with this skript:

    on first join:
        set {start} to 0

    command /start:
        trigger:
            if {start} is set to 0:
                execute console command "give %player% white concrete named "&f&lSugar Generator"
            else:
                send "&b&lBakedGens &7You already have a plot!"

     

    Error: can't understand this condition: '{start} is set to 0'

    If you want to help me make the gen server (only for good skripters) dont be scared and DM me (CraftingHimself#1278)

    So that's not the best way to make a 1 time use command.. Here, use this one instead:
     

    command /start:
    	trigger:
    		if {start::%player's uuid%} isn't set:
    			give player white concrete named "&f&lSugar Generator"
    			set {start::%player's uuid%} to now
    			stop
    		else:	
    			send "&b&lBakedGens &7You already have a plot!"

    So what that does it, when they execute /start, it sets a variable to when they did it so if you ever want to get how long they have been playing the server, you can (Placeholders/skript expression works aswell). 

  11. On 10/7/2021 at 11:29 AM, S1LENT_EG said:

    #-=-=-=-=-=-=-=-=-=-=-
    #   Skript Made By:
    #     S1LENT_EG
    #-=-=-=-=-=-=-=-=-=-=-

    every 15 seconds:
        loop all players:
            if {_grant} is true:
                give loop-player a random element of all items
                
    command /randomitem [<text>]:
        permission: randomitem.player
        trigger:
            if arg-1 is "on":
                set {_grant} to true
                send "&fRandom item generator is now &aOn" to player
            if arg-1 is "off":
                set {_grant} to false
                send "&fRandom item generator is now &cOFF" to player

     


    Commands:

    /randomitem ON

    /randomitem OFF


    This skript has a ON/OFF

    Hope this helps!

     

    Edited just now by __S1LENT__

    Won't work. You need to use a global variable instead of local.

    • Like 1
  12. 2 hours ago, Lapzzo said:
    command /dupe <number>
    	aliases: /d
    	trigger:
      		loop %arg-1% times:
    			set {dupe::%player's uuid%} to player's held item
    			give player 1 of {dupe::%player's uuid%} to player

    Like this?

    Uhm, don't use % if its not in a string (Line 4). Don't use global variables for that (Use local). Last line has a wrong syntax. And lastly, I'm pretty sure that isn't what he said he wants.
     

    command /dupe [<number>]:
    	aliases: /d
    	trigger:
      		loop arg-1 times:
      			give (1 * 2) of tool to player
      
    # Not sure if this is what you want but if I didn't read wrongly, it should be what you needed.

     

  13. On 10/1/2021 at 3:45 AM, TheRebornChild__ said:

    Could you make a Skript for boxes so like if I mine I get levels *not xp levels* and then it shows you ur xp in the sidebar and if u reach max xp you get an item?

    Could you add more context?

  14. On 9/29/2021 at 9:00 AM, belac136 said:

    A queue skript that doesn't let you in the queue unless there is less than 4 players

    command /queue:
    	permission: queue.use
    	trigger:
    		if {queue::amount::*} < 5:
    			add player to {queue::list::*}
                add 1 to {queue::amount::*}           
                send "You have been added to the queue"

     

×
×
  • Create New...