#Custom Armor ability
1 messages ยท Page 1 of 1 (latest)
Also {_lore} is never set
also https://tryitands.ee
also, just loop players in radius 5, not all players
the last error i have to fix is the fitwear
Me when I'm pinged in my Discord server ๐ค๐ค๐ค
What you said
I thought you said you had tried the line
oh no i didnt
i tried before the line
lol
im asking u from experience is THAT CODE WORTHY
Sure
ok
test it. if it works; yes
well.. i kinda cant
im so confused
Nowhere in your code do you use {_boots} except for the line where you set it
So why have the line at all?
ok so i delete it
I imagine you'll want to check if they're wearing the right boots
honestly in addition to the set {_player} to event-player line might indicate this is AI-generated
i'm thinking this is ai
A made-up friend is often an excuse to hide the fact they used AI because they arent confident in their own abilities. If a friend had supplied this code:
- Woundnt it make most sense to ask the friend to fix it?
- if the friend does exist and gave you this code, they arent proficient enough for you to want the code they write
they started coding like not to long ago :?
if you dont know how to code that well, lead with that. Otherwise we dont know what kind of help to give
they suggested this server
no shit i cant code, not trying to hide that
lol
i did succesfully code one thing
u spent all that time coming u with theories
can u just help?
You never mentioned it, or the fact that this wasnt your code until we voiced concerns it was AI-generated. We kneed to know your experience level so we can recommend the right things; ie
- looking at tutorials/documentation if you are new (see the links RaGe Grim just sent
), - or just simply telling you a certain expression/effect/algorithm and expecting you to make a reasonable effort incorporating that into the code if you have a bit more experience
then you should probably look into learning the basics. I've told you to use a certain expression, but that means nothing if you dont know the first thing about skript. the tutorial above is an excellent place to start
here's how to code
i still dont understnad what %% does
.%
We have moved on to slash commands! Please use </percent:1260033213204791389>
oops, right
x8ight suggests that you read this embed
In Skript, the purpose of surrounding an expression in % signs is letting Skript know you want it to be parsed as an expression and insert its value into the string or variable you've put it in.
give dirt to %player%
send "Hey there player" to %arg-1%
kill %{_entity}%```
Here, the % signs are not inside strings or variable names and should therefore be removed.
broadcast "%player% has joined"
send "%{_variable::*}%" to player
set {variable::%uuid of player%} to 10```
Here, the % signs are being use properly, as a means to put expressions inside strings and variable names.
this is also covered in the tutorial above