Solved Font

  • 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!

FabricioSouza

Well-Known Member
Mar 15, 2018
267
3
0
25
Guys I'm creating a font system. When a player puts a certain block every 1 second will drop a nether star only after a while I want that source not to drop more

Skript-Dev 27 bensku
1.8.9
 
code_language.skript:
on place of stone:
    set {location::%player%} to location of event-block
    wait 15 seconds # after this amount of time it won't work anymore
    delete {location::%player%}
  
every second:
    loop {location::*}:
        if {location::%loop-value%} is set:
            drop a nether star at {location::%loop-value%}