Jump to content

UntitledGoose

Member
  • Posts

    467
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by UntitledGoose

  1. On 5/27/2020 at 10:17 AM, dabberboii said:

    SuperVanish Skript please, and could you tell me how to add Skripts? Thanks!


    [SuperVanish is a plugin that lets you Vanish and be hidden from tablist, unlike the one from EssentialsX which just turns you invisible]

    I gave you a supervanish script like 2 weeks ago???

  2. 2 hours ago, KJPAKA said:

    What i did was i made it so it checked if it was set and other stuff to make it fancy. Also, use [<offline player>] and [<text>] instead. But yes that would work as well. I also made it check if the player was online etc.

    you could've just not used optional arguments, have put `usage: &c/forcechat (player) (message)` before the trigger and made it use a player argument instead of an offlineplayer argument

  3. On 5/26/2020 at 5:28 PM, KJPAKA said:

    Sorry about that, forgot it was a damage event. I tested this out, this works!

    
    on walk on barrier:
        set {nd::%player's uuid%} to now
    
    on damage:
        damage cause is fall:    
            set {_time} to difference between {nd::%victim's uuid%} and now
            if {_time} < 10 seconds:
                cancel event

     

    You could also do this:

    on walk on barrier:
    	set {nd::%player's uuid%} to (unix timestamp of now) + 10
    
    on damage:
    	if damage cause is fall:
    		if unix timestamp of now >= {nd::%player's uuid%}:
    			cancel event
    			delete {nd::%player's uuid%} # save variable storage :)

     

  4. On 5/10/2020 at 7:26 PM, Rebirth450 said:

    Can you make me a skript for random drops from blocks. The kind that has a preset random object drop from each block. so if you break an oak trapdoor twice you get a totem both times?

    on skript load:
    	if {done} is not set:
    		loop all blocks:
    			set {random::%loop-block%} to random item out of all items
    			set {done} to true
    
    command reset:
    	permission: admin.reset
    	trigger:
    		loop all blocks:
    			set {random::%loop-block%} to random item out of all items
    
    on break:
    	clear drops
    	drop {random::%event-block%} at event-block's location

    im late to the show but hey optimization

  5. On 5/23/2020 at 1:27 PM, OGChriss said:

    You know dupe scripts? something like that. but instead of dupe, its /superdupe and quadruples your items. 0.75 second cooldown.

    command superdupe:
    	cooldown: 0.75 seconds
    	trigger:
    		give (4 * item amount of player's tool) of player's tool to player

     

    • Like 1
  6. 22 hours ago, mrclipse said:

    can u pls make a /dupe command that makes your hand a stack even if its a normally unstackable block (no restrictions for bedrock spawners end portal blocks ect.)

    command dupe:
    	trigger:
    		set item amount of player's tool to 64

     

    On 5/28/2020 at 8:24 AM, dabberboii said:

    SuperVanish script, please!
    SuperVanish is a plugin that when you do /vanish or /v , it removes you from tab AND makes you invisible!
    Thanks so much you're the best!

    https://parser.skunity.com/db1b1e28

    No addons required!

    On 5/25/2020 at 6:07 AM, Jessica907432 said:

    Dont know if your still doing it but can u make a /stack that gives the player 64 of whatever item they are holding?

    command stack:
    	trigger:
    		give player 64 of player's tool

     

  7. Just now, Endgator said:

    lol why

    The original creator abandoned it, it's deprecated(?, I'm fairly sure it is), LimeGlass's fork hasn't been updated in 4 months, it's better to just use Skellett, etc. 

    • Thanks 1
×
×
  • Create New...