-
Posts
204 -
Joined
-
Last visited
-
Days Won
7
Content Type
Profiles
Forums
Gallery
Blogs
Events
Store
Downloads
Posts posted by NotKaizo
-
-
1 hour ago, metajet said:
So I have a server that me and my friend have been working on, but i want him to also be able to edit files and add plugins/addons. Is it possible to do this?
The answer is yes & no. You can give him access to your Minehut Panel by giving him the login info to it. He will have access to everything such as Market purchases, purchase history, your credits and etc. If you trust him then I would say sure, let him access it. But if you don't, then don't.
I am sure Minehut will add some kind of feature that allows your friends to access a certain server that you own in the future. We just have to be patient for now. -
every 15 seconds: loop all players set {_random} to random element out of all items give player {_random}-
2
-
-
6 hours ago, Chqwy said:
There are no Skript error logs, but on death does not function, it doesn't add the number specified to my list variable. Someone help
on death: attacker is player victim is a husk if victim's display name is "&8[&c1&8] &2Zombified Bandit": make console execute command "givexp %player%" command /summonmob: permission: rpg.summon permission message: {@prefix} &cInsufficient Permission! trigger: spawn 1 husk 1 meter above player's location set name of last spawned entity to "&8[&c1&8] &2Zombified Bandit" command /givexp <player>: permission: rpg.givexp permission message: {@prefix} &cInsufficient Permissions! trigger: set {_xpinteger} to random integer between 10 and 20 if arg-1 is set: set {xp::%arg 1%} to {xp::%arg 1%}+{_xpinteger} send "{@prefix} &aGained &c%arg-1% &aXP!" else: send "{@prefix} &cUsage: /givexp <player>"
Debug it maybe?
-
18 hours ago, TheRebornChild__ said:
This Skript lets you right click a paper named &2100$ or &21000$ or &210000$ but you can edit the name or anything to make it easier for you to use.
Heres the Skript :
on rightclick with a paper:
name of tool is "&2100$":
add 100$ to player's balance
remove paper named "&2100$" from playeron rightclick with a paper:
name of tool is "&21000$":
add 1000$ to player's balance
remove paper named "&21000$" from player
on rightclick with a paper:
name of tool is "&210000$":
add 10000$ to player's balance
remove paper named "&210000$" from playerWouldn't this be VERY inefficient to use? Imagine having the write another chunk of code to make a new banknote. Even with function, this will still be very inefficient if they need to make a new code for a new banknote.
-
1 hour ago, pizzaschut said:
Nice copied skript
LOL he got caught in 4k ultra hd
-
1
-
-
20 hours ago, Lapzzo said:
on consume: if event-item is honey bottle: cancel event apply poison to player for 3 secondsThat should work
That cancels the event and gives them poison. Doesn't remove the bottle from them. Instead, set the honey bottle to a regular bottle after cancel event
-
3 hours ago, Lapzzo said:
This should be on skript discussion by the way
No it shouldn't since he is requesting the entire Skript instead of helping fix a premade Skript.
-
on consume: if event-item is honey bottle: apply poison to player for 3 secondsThere
-
Yes you can but you have to be at least 14 years old to apply for Minehut Market creator.
-
2 hours ago, Spartanthenahtan said:
Hi, does anyone know what CPU minehut uses for its server because im planning on buying a server plan but I noticed minehut does not specify what CPU it uses
They don't specify but they are quite good from my experience and yeah. Just don't add too much plugins.
-
I'm pretty bored so just let me know if you have any ideas that I can Skript.
-
On 9/9/2021 at 8:50 AM, ALTITS said:
command /hat:
trigger:
if player is op:
set helmet of player to player's held item
remove player's held item from player's inventory
send "&eYou Now Have A New Hat"
Because why not
it was simple to makeWell, this will break if someone is already wearing an armor piece as it will not give the armor back to the player. Add something like give player player's helmet
-
42 minutes ago, Luciddaisyy said:
So basically the prefix won’t show in chat and I have all the stuff I had to download for it, isn’t showing. HELP
Make sure you have a chat plugin. Essentials Chat, Luck Perms Chat and etc. If you already have those, check their configs and try the chat format section and edit it to whatever you want. Reload the plugin and your prefix/suffix will show in chat.
-
3 hours ago, TheSckwadbros999 said:
That is very bad practice. Make it a function so Skript can parse it easily and you won't have issue reloading the Skript.
I am also not necroposting since the topic was posted on August 29 and I am replying to it on September 26.
-
Set it to a variable and check if that variable is set when they execute the command. Something like this:
command /test: trigger: open virtual chest inventory with size 3 named "test" to player if {var::%player's uuid%} is not set: format gui slot 0 of player with paper named "test" to run: if {test::%player's uuid%} >= 10: format gui slot 0 of player with green dye named "test" else: format gui slot 0 of player with green dye named "test" -
I am not saying it sucks or anything but I'm saying that it's unnecessary? Vanilla has a built in /whitelist command. Why bother making another?
-
6 hours ago, Lapzzo said:
Im doing this because I dont want them to be able to execute /repair, but console to do /repair <player>
You can add a 2nd argument and make it a integer. They will have to execute /repair <player> <integer> to open up the GUI. 2nd argument will be a password.
-
2 hours ago, hypixelupdate said:
Hey I making a gui and i want it to give a item but it is just giving not open gui heres my code so far: command /Gui:
permission: op
permission message: "Hey you cant do that"
trigger:
open virtual chest inventory with size 3 named "Admin Gui" to player
format gui slot 11 of player with golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon explosions" to run:
give player golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon explosions"
close players inventory
format gui slot 15 of player with golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can lightning" to run:
give player golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon lighting"
close players inventory
Here you go.
command /gui: permission: op permission message: "Hey you cant do that" trigger: open virtual chest inventory with size 3 named "Admin Gui" to player format gui slot 11 of player with golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon explosions" to run: give player 1 of golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon explosions" close players inventory format gui slot 15 of player with golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can lightning" to run: give player 1 of golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon lighting" close players inventory -
2 hours ago, Lapzzo said:
Im not sure what I did, but I think I broke it. Also did u find a way to make it so u cant repair items that are full durability?
Broken skript:
command /repair [<player>]: permission: repair.use trigger: if arg-1 is set: open inventory of arg-1 to arg-1 set {activeGui::%arg-1's uuid%} to "inventoryGui" play sound "block.note_block.pling" to arg-1 send "&aPlease click an item to repair it for 50 Coins!" to arg-1 else: open inventory of player to player set {activeGui::%player's uuid%} to "inventoryGui" play sound "block.note_block.pling" to player send "&aPlease click an item to repair it for 50 Coins!" to player on inventory click: {activeGui::%player's uuid%} = "inventoryGui" cancel event set {_dura} to max durability of clicked item set {_fix} to durability of clicked item if {_fix} < {_dura}: if {@balance} >= {@repair_cost}: remove {@repair_cost} from {@balance} repair clicked item play sound "block.note_block.pling" to player else: play sound "entity.villager.no" to player send "&cYou do not have enough!" else if {_fix} >= {_dura}: play sound "entity.villager.no" to player on inventory close: if {activeGui::%player's uuid%} is "inventoryGui": delete {activeGui::%player's uuid%} send "&cYou have canceled your purchase!"
Also I made it so the player in the command (Argument-1) doesnt get opened to the executer, but to arg-1. That was my original intention, but it seemed to break it
No I did not find a way to make it so it won't repair full dura items. Why are you trying to make it so it opens to arg-1? Just make it so they execute the command.
-
17 minutes ago, pizzaschut said:
Damn this is cool. I couldn't make this xD
I'm sure you can lol, it isn't that complicated. Just some basic functions and stuff
-

Simple Wands Skript
♦ Simple & Easy Config
♦ Custom Gui
♦ Customizable Cooldowns | 30 seconds (change it in the config)
♦ Permission | wand.use (opens up custom gui)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Custom Gui
Simple Gui for you to obtain any Wand! /wands
Spoiler
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Customizable Cooldowns
Customize the cooldowns for Wands so people don't spam it!
Spoiler
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Left Click Ability
Heal any player by left clicking your wand while facing them! This can be switched off in the config.
Spoiler
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Particles Effect
They don't really do anything so its just to look cool.
Spoiler
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
About
♦ Version: 1.0
♦ Update Status: True
(True = Adding more stuff | False = Abandoned this project)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Please leave suggestions and ideas down below so I can add them to the Skript. I attached a .txt file as well for people with browsers that blocks .sk files.
Note: Rejoin the server after reloading the script so it registers everything,
-
1
-
-
1 minute ago, Lapzzo said:
Question:
I can repair stuff already repaired. Any fix?
Well I couldn't find a way but I will do more research on it tomorrow when I wake up. I am pretty sure you can't repair blocks/non weapons.
-
Mute Appeal
in Help
Is there a way to appeal for a mute? I got muted for 3 days for apparently spamming/chat flooding. Yes I was spamming but not in the Minehut Lobby. Why would I get muted for spamming in a different server?
-
If I remember correctly, someone told me you can use the stick-like thing on your hand. Most humans will have 5 of the stick-like thing. They call it "fingers". You can use "fingers" and press your keyboard's key with it and it should type. The faster you move your "fingers" the faster you will type! This is what I know and hope it helped you
Note: This is a joke so don't take it seriously.






Blender Render
in Off Topic
Posted
IGN: iKaizo_