Jump to content

Yodexx

Member
  • Posts

    75
  • Joined

  • Last visited

Posts posted by Yodexx

  1. 1 hour ago, StarBunnie said:

    Just use SkBee it offers way more and better features than SkStuff + SkStuff hasn't been updated in a whiiile so I'm unsure if it even runs on 1.16.5

    Ah ok. 

    SkBee does have nbt editing for mobs right?

  2. 23 hours ago, SkripterMan said:

    Hey there!

    I'm pretty sure they have a suggestions section, although yes! I agree with this 100%. I heard Minehut plans on adding many new features and I hope this will be apart of one of their new updates 😄.

    They didn't allow the suggestions channel. And I'm hoping that they do add the feature as well! 😄

  3. HELLO! So I have a suggestion for the Minehut panel..

    Panel Team Accounts

    Basically, a way to add people to your server panel, customizing their permissions like access to backups, dangerzone, server settings, etc.

    I think it would be a very nice addition to Minehut, and it would be really cool if it was added!

    ~ Yodexx

    • Like 1
  4. Hey! Is it possible to export data (groups, tracks, users, and perms) with luckperms? Because, I'm trying to create server backups on my pc (worlds & plugins) and I don't know if I can export it.

    I've watched a tutorial and did everything, but when I go to the file, it's locked (with the stop sign), is their a way to export the data on to my pc?

    Thanks! 🙂 

  5. On 9/15/2020 at 4:18 PM, defty69 said:

    hmm , but i really need the plugin.

    the only minehut bedwars plugin doesn't have emeralds/diamonds.

     

    First of all, which bedwars plugin are you using?

    If it is ScreamingBedwars, than you just have to go into the config and add a new resource

    • Like 1
  6. options:
    #Put "on" to turn on that part of the script and "off" to turn off that part of the script! 
    	mutechat: on
    	clearchat: on
    #Change the prefixes and permission message here!
    	serverprefix: &3&lChat &8>>
    	pm: &3&lChat &8>> &4You can't do that!
    #Change the permission commands here!
    	talkpower1: /pex user %arg-2% add chat.mute.bypass
    	talkpower2: /pex user %arg-2% remove chat.mute.bypass
    #Change the permission nodes here!
    	talkpower: chat.chat.mute.talkpower     #Permission to do /talkpower
    	chatmute: chat.chat.mute                #Permission to do /mutechat
    	chatbypass: chat.mute.bypass       #Permission to talk when chat is muted
    	chatclear: chat.clearchat               #Permission to clear the chat
    			
    command /talkpower <text> <player>:
    	permission: {@talkpower}
    	permission message: {@pm}
    	trigger:
    		if {@mutechat} is on:
    			if arg-1 is set:
    				if arg-2 is not set:
    					send "{@serverprefix} &cPlease insert a username!" 
    			if arg-2 is set:
    				if arg-1 is not "on" or "off" or "check":
    					send "{@serverprefix} &cPlease insert &c&lon&c, &c&loff&c&c, or &c&lcheck&c!"
    			if arg-1 is "on":
    				if arg-2 is set:
    					send "{@serverprefix} &7You're chat mute bypass has been &8enabled" to arg-2
    					make console execute "{@talkpower1}"
    			if arg-1 is "off":
    				if arg-2 is set:
    					send "{@serverprefix} &7You're chat mute bypass has been &8disabled" to arg-2
    					make console execute "{@talkpower2}"
    			if arg-1 is "check":	
    				if arg-2 is set:
    					if arg-2 has permission "chat.mute.bypass":
    						send "{@serverprefix} &8%arg-2% &7has chat bypass &8enabled"
    					else if arg-2 does not have permission "chat.mute.bypass":	
    						send "{@serverprefix} &8%arg-2% &7has chat bypass &8disabled"
    		if {@mutechat} is off:
    			stop
    
    command /mutechat:
    	trigger:
    		if player have permission "mutechat.*":
    			if {mutechat} is not set:
    				set {mutechat} to false
    				broadcast "&3The chat has been unmuted by %player%"
    			else if {mutechat} is true:
    				set {mutechat} to false
    				broadcast "&3The chat has been unmuted by %player%"
    			else:
    				set {mutechat} to true
    				broadcast "&3The chat has been muted by %player%"
    
    on chat:
    	if {mutechat} is true:
    		if player do not have permission "mutechat.bypass":
    			cancel event
    			send "&cYou do not have permission to talk while the chat is muted!!!" to player
    					
    command /clearchat:
    	permission: {@chatclear}
    	permission message: {@pm}
    	trigger:
    		if {@clearchat} is on:
    			loop 1000 times:
    				broadcast ""
    			broadcast "{@serverprefix} &7Chat cleared by &8%player%"	
    		if {@clearchat} is off:
    			stop

    Here

  7. HI.

    Now recently, me and my buddy candy (ImInCandyland) were trying to make a /mutechat command! Nothing has been working, even other peoples skripts! 😞

    Now the reason why this cmd isn't working is because either ... Your fork, or because your using beta versions of skript 😕

    If you can fix YOUR fork, or download the latest version of skript and use it, that would be very appreciated 

    Thx u 😄

×
×
  • Create New...