Jump to content

Ria

Member
  • Posts

    65
  • Joined

  • Last visited

Posts posted by Ria

  1. All in all looks like a pretty simple skript but

    every 0.1 tick:

    is not a good idea, especially with multiple players being on the server. Maybe add it as a function instead or just let it loop around every few seconds and not every tick.

  2. Well, I kind only can complain about your friends internet then... Also I think if you just want a survival world, then you mustn't need any plugins.

    And if it's really just Minehut be lagging, then well... I guess you'd just have to live with a free host that lags a tiny bit. But if anyone else would actually let you host a server with a paid plan, then you may be in luck! (Again, that is if anyone wills to.)

  3. Prefixes will not simply appear by thin air, you gotta set them up. And if you did, then either try checking the LuckPerms wiki or try a different plugin (like GroupManager or PermissionsEx).

  4. 19 hours ago, IEatBeef said:

    a skript that makes chat look better

    Simply check the docs, here's one example:

    on chat:
    	set the chat format to "%Player's name% &7» &f%colored message%"
  5. This can be easily be covered without the use of "make console execute...".
    My example would be like this:

    on join:
    	set {%player%::candrop} to 0
    	# this is to avoid player from bypassing the ability to drop
    
    command /drop:
    	cooldown: 1 minute #optional
    	trigger:
    		send "&cYou can drop items for 10 seconds now!"
    		set {%player%::candrop} to 1
    		wait 10 seconds
    		send "&cYou can't drop items anymore."
    		set {%player%::candrop} to 0
    		
    on drop:
    	player does not have permission "admin" # admins can bypass drop cooldown
    	{%player%::candrop} is 0 # players who used /drop will bypass this for 10 seconds
    	cancel event
    	send "&cYou cannot drop items! Do /drop first!"

    If you want to use this example, make sure to either remove the plugin that stops from players dropping items or add the drop permissions to the default group.

  6. As far as I know there is a plugin for that. But if you really want to have this in a Skript, then well... good luck on your own findings and contribution from anyone else. Sounds kind of hard to make in Skript in my opinion.

Ă—
Ă—
  • Create New...