Jump to content

Ramina__

Member
  • Posts

    222
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Ramina__

  1. 17 hours ago, DevAngerYT said:

    is it possible to make it that lunar accepts the normal mc cc and minecraft just also accepts it?

    [1]. Please don't necropost on a topic that has been inactive for longer than 1 month

    [2]. No, sorry i don't think you can 😑

  2. Hey i cant get my skript to detect an enchantment level on an item, please help!:

     

    every 5 seconds:
        loop all players:
            if loop-player's inventory contains stick:
                if stick is enchanted with knockback:
                    if knockback is higher than 2:
                        remove stick from loop-player's inventory

    • Like 1
  3. On 10/22/2021 at 7:56 PM, Cklows said:

    A skript where you do /wardrobe and it opens a gui where you can select between Iron armour, gold, diamond, netherite
     

    Make it so when you click on a Iron ingot you get full iron & when a gold ingot you get full gold armour, etc.

     

    8 hours ago, GenericUsername said:

    Hi, are you able to make a skript like a Lifesteal SMP, but slightly modified?

    My idea:

     

    On Kill: Gain One Full Heart

    On Death: Set base health to default (20)

    Also, if this is possible, could you make a skript that works somewhat like this:

    When you join, for the first 20 minutes you can't attack other players or be damaged, but you can turn on PvP, but doing so will forever have PvP on (in world guard regions where pvp is on) without being toggleable thereafter. 

     

    Also, if you are able to do this, could you let me know if i needed certain base plugins? I'm completely oblivious about Skript, so I'm not sure if i need to install certain parts of Skript, or other plugin libraries.
     

    Edit: If you have Discord, please let me know if you're able to do this, or have already done it 

    My discord is Generic Username#3226

     

    Okay I will get these done soon! But @GenericUsername Your skript may take longer!

  4. 1 hour ago, Goodplayer said:
    on left click:
     if clicked block is cyan glazed terracotta:
      give golden nugget to player
     

    It works for me on server, but for others like normal players don't get any golden nuggets. That is all my code, and I don't get any errors.

    It works for me, Deoped and opped 😕 I did change it to tabs tho so maybe this will work?

     

    on left click:
        if clicked block is cyan glazed terracotta:
            give golden nugget to player

  5. 11 hours ago, Lapzzo said:
    command /hug <player>:
    	trigger:
    		if arg-1 is not set:
    			send "&cYou cannot hug air silly!" to player
    		else:
    			if arg-1 is %player%:
    				send "&cYou must be lonely if your hugging yourself!" to player
    			else:
    				send "&7You hug &b%arg-1% &7With &dLove &cAww ❤." to player
    				send "&b%{_p}% &7Hugs you with &dLove &cAww ❤." to arg-1
    
    on chat:
    	replace all "<3" with "&c❤&r"

    Sorry if this doesn't work, I cant test it because file manager is down

    Doesn't work sorry..

  6. On 9/29/2021 at 7:45 PM, Lapzzo said:

    Try this.

    command /give [<player>] [<item>] [<number>]:
    	trigger:
    		if arg-3 is higher than 64:
    			send "&4&lVelvetSurv>> &cYou cannot give yourself more then 64 of an item!" to player
    		else:
    			give arg-3 of arg-2 to arg-1
    			send "&2&lVelvetSurv>> &aYou have given yourself &a%arg-3% &a%arg-2% &ato &a%arg-1%&a!" to player

     

    Thanks it works! Can you maybe help me with this too? it wont work:

    command /hug <player>:
      trigger:
        set {_p} to player
        if player is not set:
          set {_p} to CONSOLE 
        if arg-1 is not set:
          send "&cSpecify someone to hug!"
        else:
          if arg-1 is player:
            send "&c&lYou cannot hug yourself!"
          else:
            send "&7You hug &b%arg-1% &7With &dLove &cAww ❤." to player
            send "&b%{_p}% &7Hugs you with &dLove &cAww ❤." to arg-1
    function Heart(t: text) :: text:
        if {_t} contains ":<3:":
            replace "<3" with "&c❤&r"
        return {_t}
     

×
×
  • Create New...