Search results

  1. H

    SortList works with locations

    basically so i can repeat on grid without looping over locations that i won't do anything with
  2. H

    Click event minimessage not working

    I ended up making it copy the link to clipboard
  3. H

    Click event minimessage not working

    I want to send the link for a resource pack in chat when a player joins my plot (I don't have overlord so I can't send the pack directly) but the click event is not working to open the url
  4. H

    Plot Banning

    You can do that easily with code Command: if CommandEquals('ban'){ GetListValue(person -i,Command Arguments GV,2) SelectPlayersByName(person) AppendValue(bannedppl,'%uuid') Kick \Selection ResetSelection } Join: if ListContains(bannedppl,UUID GV){ SendMessage("ur banned...
  5. H

    Test plots

    I have a basic called "random stuff plot" for exactly this purpose
  6. H

    minecraft update names but bad

    disclaimer: this is a joke, not intended to be offensive (but it's still offensive) (before 1.3 is skipped) 1.4: kinda spooky update (pretty scary update) 1.5: wire update (redstone update) 1.6: donkey update (horse update) 1.7: don't all updates though? (update that changed the world) 1.8...
  7. H

    when do you think df will get the freaking update?

    by freaking i mean creaking
  8. H

    How to get rid of fall damage?

    string, not styled text
  9. H

    How to get rid of fall damage?

    PlayerTakeDmg: Event Damage Cause = fall { CancelEvent() }
  10. H

    Plot trap discovered

    Inventory Menu Open (It doesn't matter which tag) NOT { Close Inventory } makes it so you can't open ANY menu at all, including chat or disconnect, forcing you to Alt+F4.
  11. H

    How do I increase the maximum number?

    I'm trying to make a Collatz conjecture plot, but the number breaks somewhere between 1 and 10 trillion. How do I increase this limit?
  12. H

    Does a disturbing skin count as inappropriate?

    Title Not sure if it's allowed to ask about rules on the forums The skin in question is KidChubbs
  13. H

    df 1.20.5 (or 1.21) when

    what is the eta for 1.20.5 support?
  14. H

    Allow placing item frames

    Item frames are only placeable in /build and /dev. This is a problem. 1. Allow placing item frames in /play (currently they are intangible when placed except being returned on click) that can be toggled with EnableBlocks and DisableBlocks. 2. Game Action: Place Item Frame
  15. H

    /Colors and /Colours

    You use /colors? I just guess the color code that I want.
  16. H

    Repeat for block

    there is a repeat for block. i think it's repeat for items in list, with params of (counter variable, list to go through)
  17. H

    More Game Settings (such as Enabling Spawn Eggs)

    the beacon one is very easy to code! player event join repeat forever () { wait (80) if player is near ((beacon loc), 10+(beacon layers)) { player action give potion ((effect), particles=ambient) } } idk, someone smarter than me could make a script checking for lit beacons.
  18. H

    Really bad idea

    you can actually do that, but only in a game entirely in a chest gui. close inv event > cancel event
Top Bottom