Jump to content

Fusezion

Member
  • Posts

    77
  • Joined

  • Last visited

Everything posted by Fusezion

  1. Not going to hate after all we all do need hugs but there it a slightly better way to do your cooldown and that's simply doing command /exaple <player>: cooldown: 30 seconds cooldown message: This command is on cooldown for another %remaining% # message and bypass are optional cooldown bypass: skript.admin # message and bypass are optional trigger: if arg-1 is player send "Example Message 1" cancel cooldown else: send "Example Message 2"
  2. Doesn't read the message until after "potato"
  3. Oh great it's a great time to be alive was it by one of the new paid staff or admins? or was it older
  4. No kidding just another drama thing swept under a rug to never be found..
  5. Man and I was hoping for a positive outlook -1 what a shame... But I guess I won't deny the annoying market adverts on servers every 3 minutes (+1) or the fact when we go to lobby we just see them advertising their ranks, credits and market place (+1) oh and we can't forget the drama that gets swepted under the rug and brought to light by PLAYERS once every couple months with no mention from SLG (+1) All in all clearly really great community
  6. Pop already added a reaction to say yes to another one of these so no need for it
  7. should add a var just so we can grab offline players too
  8. youtube videos aren't bad but most are outdated now and don't show any propper optimization so using sites like minehut.xyz and skript docs isn't bad but also asking for help isn't bad too
  9. DiSky has quite a bit of what vixio is broken in for example we can't use temp variables in vixio anymore due to an issue with it's async Disky also adds support for more stuff vixio is missing such as slash commands just from it's lastest release there's already more things vixio had and more things it's added on it's own to help people who use discord bots to manage their server Vixio is good but it's too outdated and needs to be up to date with the latest discord api like disky disky is a re-fork of vixio starting from line 1 it is more effeicent and more friendly for advanced and new skripters to vixio and diky Latest Release just in case: https://github.com/SkyCraft78/DiSky/releases/tag/1.7
  10. What even does this do

  11. Awhile back when I used the forums for a bit I turned on an auto response for messages on forums the issue now is that I can't seem to remember how to turn it off anyone got the answer
  12. on right click on white dye: display name of event-item is "&fCoke" remove 1 of player's tool from player's tool apply (swiftness and nausea) of tier 2 without any particles to player for 12 seconds on load: register new furnace recipe for white dye named "&fCoke" using sugar with id "G:Coke" with experience 5 with cook time 10 seconds command /givecoke <player=%player%>: trigger: give arg-1 white dye named "&fCoke" Not sure if it'll work but it should do Required Addons: Skript and SkBee
  13. Same here I'm always down to help people with skript Austin (Fusezion)#2579
  14. Yeah as @SuperOrcasaid it's best to fidgit with skript alone in your freetime. think of commands in essentials since everything you do in essentials you can do in skript so it's a good thing to keep in mind. Learnig how to read syntax on the docs is also good to help skripthub.net/docs/ has most of the stuff in addons and skript. If you want to look further into skript alone tho I'd suggest using skriptlang.github.io/Skript/ as all it's docs are upto date and helps more at least for me since I've noticed skripthub.net/docs/ hasn't had all of skript 2.5 stuff then you have what he said about looking at other people's code that is also something that can help anyone even if you aren't new to skript as it shows you more ways to do stuff you've done on repeat forever so in short most of what @SuperOrcasaid is correct and will help most
  15. @Vertex_Minehut I'm a point out issues #1 being you didn't use on mine but instead on break In any case where you want blocks they actually broke you want to use on mine this way it only runs when the player can actually break the block for example using on break and breaking stone with your first would count as +1 but using on mine and breaking stone with your first wouldn't add +1 #2 this skript requires Skript-Holo for the creation of the holograms and MorkazSk for the sorting from highest to lowest make sure you have it installed #3 You run into the issue with this it's due to the fact you've added a ( to the start but not the end of the string areas (which I don't think you even need the () to start with) along with a , at a spot that it isn't needed create a new hologram with lines ("&6Leaderboard &e| &fTop %{_name}%", and {top::%{_value}%::*}, at {hololoc} and store it in {leaderboard.holo} all you need to do to fix this is create a new hologram with lines ("&6Leaderboard &e| &fTop %{_name}%", and {top::%{_value}%::*}) at {hololoc} and store it in {leaderboard.holo} if this doesn't fix it all then idk what else to say
  16. understandable however in many cases it's not worth the increased lag if they want to screenshot a racist message spammed let em
  17. it's true why deal with essentials when you can just make it more custom who wants to a crap ton of commands no one uses when you can just make the ones you need everything you can do in essentials you can make in skript with the same functionality or more it also leave more room for changes then having to make it in the future when you want to change something in a command and it's much easier to make a cooldown for a skript command then having to make a make makeshift one for essentials
  18. still just a thing and I'd vote moving away from essentials if you plan to learn skript essentials isn't ever essential it's good if you don't know skript but it adds a lot of useless stuff which you can just make in default skript if needed with more functionality
  19. So I've noticed I haven't posted on forums since december of last year with my backpack skript which had plenty of positive feedback during my time of making that I was also working on a skript 2.5.1 veinminer skript but wasn't too proud of it due to lag causes by large loops and the fact I basically never use commands so using that system I did with a command looks bad so I've spent a bit today reverting back to it's original form of only using ores Currently it works with coal ore, iron ore, lapis ore, redstone ore, gold ore, quartz ore, emerald ore and diamond ore I wished it worked with nether gold ore however skript still doesn't seem to count it in the any ore expression The skript should be just vanilla skript I don't believe there's any addon usages in this so please let me know what you think or what else I should make all feedback and suggestions help a lot options: minimal_blocks_mine: 0 function veinMiner(p: player, loc: location, block: item): if {_p} is sneaking: metadata "veinminer" of {_p} is set loop all blocks in radius 1.43 around {_loc}: loop-block's location is not {_loc} loop-block is {_block} give {_p} (drops of loop-block using {_p}'s tool) set loop-block to air damage {_p}'s tool by 1 if metadata "veinminer" of {_p} >= 25: wait 1 tick if metadata "veinminer" of {_p} is set: set metadata "veinminer" of {_p} to (metadata "veinminer" of {_p})+ 1 if {_p}'s tool's durability >= {_p}'s tool's maximum durability: clear metadata "veinminer" of {_p} stop else if {@minimal_blocks_mine} < 1: veinMiner({_p}, loop-block's location, {_block}) else if (metadata "veinminer" of {_p}) >= {@minimal_blocks_mine}: clear metadata "veinminer" of {_p} stop else: veinMiner({_p}, loop-block's location, {_block}) else: clear metadata "veinminer" of {_p} on mine of any ore: player is sneaking set metadata "veinminer" of player to 1 veinMiner(player, event-location, event-block) Note: I am aware of the issue of it giving double ores at times but there wasn't anything I could do about it since it's an issue with loop blocks
  20. good skript however there are a few areas you could expand on such as adding an on respawn into it so player's don't respawn at the wrong location on respawn: set respawn location to player's bed location ? {spawn}
  21. he didn't even change the on chat permission XD
  22. It's good speaking it's a first time using functions however you looped it far too much which will end up causing lag with too many players on I believe the minimum is like 180 or something so normally using 200 or 300 times is just fine and since I know this is your first time using functions I won't say it's useless however it is best to just loop and then broadcast this way there aren't any chances of the broadcast being sent before the last broadcast "" along with that the function being ClearChat(p: player) isn't really needed since you aren't using the vairable just using ClearChat() is fine
  23. The skript isn't bad however you could always lower the lines simply but using send "{@prefix} {@pdn} » %arg-1%" to players where [input has permission "{@permission}"] other then that the skript is good
  24. Cool this wasn't posted a month ago so I can reply yes please!!! I've suggested this months ago add it!
  25. This addon is an update form of Vixio using most of the same syntax so friendly for past users DiSky is a much more updated version of Vixio and seems to fix most of the bugs we had with Vixio in recent updates Lastest Version: https://github.com/SkyCraft78/DiSky/releases/tag/1.5.2
×
×
  • Create New...