Search results

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  1. C

    How to set a block to a block name stored in a variable

    no, i dont mean that H3A, I think ima have to go a different route and redo my script :/
  2. C

    How to set a block to a block name stored in a variable

    H3A the block wont always be coal ore, i could place down iron_ore then it wouldnt work with that and ive tried that alooooot
  3. C

    How to set a block to a block name stored in a variable

    Basically im making regenerating blocks which when you break, it replaces it with what it was so i need {rb.block.%event-block%} to set the block to what it was before it was broken. so i need it so {rb.block.%event-block%} is different even if the same block was placed down but in a different...
  4. C

    How to set a block to a block name stored in a variable

    says the same thing, and if i had {rb.block.%event-block%}, if i had multiple of the same block would it be personalized to each block
  5. C

    How to set a block to a block name stored in a variable

    that works but i need it so if the block placed down was a grass_block then {rb.block.BLOCK} is set to grass_block but if the block placed down is a block of stone then {rb.block.BLOCK} is set to stone. (they would need to be named correct but i already have a cmd to give you a block named...
  6. C

    How to set a block to a block name stored in a variable

    If you mean "set event-block at event-location to {block}" then this happens:
  7. C

    How to set a block to a block name stored in a variable

    that works but is there a way to have {rg.block.%location of block%} set to the block's name cause i have it in an "on place"?
  8. C

    How to set a block to a block name stored in a variable

    nope: set {rb.block.%location of block%} to "coal ore" - would be set to the block placed down
  9. C

    How to set a block to a block name stored in a variable

    on place: if name of player's tool is "&6&lRegenerating Block": set {rb.player.%location of block%} to player set {rb.pos.%location of block%} to true set {rb.block.%location of block%} to "coal ore" -- this line is temp, i would have it so it is the blocks name that...
  10. C

    How to set a block to a block name stored in a variable

    well it is coal ore by default but when you level up it changes to a different block and thx.
  11. C

    Solved A script which punishes the execution of certain commands with Ban

    just make it so they dont have the permission to the commands But if you want that then: on command: if command is "(command)": execute console command "tempban %player% (time) (reason)" But with the spaces before (first line 0, second line 4,third line 8) I think that works
  12. C

    How to set a block to a block name stored in a variable

    That works but if i try, set event-block to {block} it doesn't work. Also, how do you asign text to be script on skunity?
  13. C

    How to set a block to a block name stored in a variable

    That came up with this error:
  14. C

    How to set a block to a block name stored in a variable

    Hi! I want to set a block to another block which is stored in a variable. This is the line of code ive tried: set block at location of block to {block} The location of block is the location of a block which was broken because what i want is a system where when a block is broken, its gets...