Recent content by Cooleeo

  • 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

    Solved PlaceholderAPI integration

    hey, so basically this skript places the player in a group if they've reached 2000 points on join: set {_score} to placeholder "playerpoints_points" message "&eYOU HAVE %{_score}% POINTS" if {_score} is more than 2000: execute console command "pex user %player% group set pro"...
  2. C

    Equip a Player's Skull

    Is it possible to equip a player skull with a specific texture id? i was thinking would be something like equip player with skull_item with texture 'eyKDFdfinfmmeifsiufbsfsdfdsfsdcdsfsdfsdfsdf='
  3. C

    Auto Equip Armor

    Anyone know of a way to automatically equip armor into their slots? i've got kits that run from a gui menu, so i'm using the command /kit (kit) %player%. I do know of the replaceitem command but the armor in the kits have a lot of tags (enchants, name, lore) so i imagine it might be a tad...
  4. C

    Solved Right click whilst sneaking

    I wanted to create a menu that opens up when a player right clicks whilst sneaking, as it would be quick access and wouldn't take up space in the hotbar. I just need the event, if its possible
  5. C

    Solved Right click whilst sneaking

    sorry I must have not worded that correctly, I'm looking for an event where a player is sneaking and right-clicks in general, as in, like in the air, not necessarily on blocks or with an item held.
  6. C

    Solved Right click whilst sneaking

    so, i'm trying to create an effect when a player right clicks whilst sneaking. the code that i have only executes if a player right clicks a block when sneaking. how can i make it so the effect executes when a player right clicks in general whilst sneaking? on rightclick: if player is...
  7. C

    drawSphere question

    Thanks, i'll check it out :)
  8. C

    drawSphere question

    Okayyy I'm not really requesting for the skript to be made though, asking for help
  9. C

    drawSphere question

    Is it possible to use the drawSphere effect from skDragon to create a sphere that can roll and then hit a player and damage them, through an explosion or something?
  10. C

    Solved on right click with potion

    i'm trying to set up a potion spell where if a player right clicks holding it, it will execute a command. I can't figure out what the right event is. This is what I have currently as the event: on right click with potion: if name of tool of player is "&6Health Spell": Skript says it...
  11. C

    Solved A Question (or 2) About Console Commands

    Still no. This has got me stumped. Thanks for your help Turns out I didn't get it. I feel stupid... I didn't realise i required the skRayFall plugin (skript noob). Thanks for the help DieHollander_
  12. C

    Solved A Question (or 2) About Console Commands

    Still says it can't be understood. I'm sure that's the right format Here's my full code, if that helps: # Electro Chain command /electrospell: permission: kit.spell.electro trigger: set {elec} to difference between {elec.%player%} and now...
  13. C

    Solved A Question (or 2) About Console Commands

    I do get it, I've used the play sound method shown in the effects section before: play sound block.fire.extinguish to %player% But it says that Skript can't understand the condition/effect, which is why i've been using the console command as an alternative. i've obviously...
  14. C

    Solved A Question (or 2) About Console Commands

    Hey, I've got quite a few Skripts that execute vanilla console commands (/playsound, /effect) when players perform certain actions on my server, such as right-clicking a held item. The only problem I have is that all of these commands are inputted into the console log and into chat as I am OP...
  15. C

    Solved Naming Click Items

    Alright, I've solved it lmao. I was using some crappy item renaming plugin, it must of added some tag to the item. I gave myself the bow using the /give command and it works a treat. Thanks for your help anyway ShaneBee!