Solved Can't use the "set lore..."

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

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

couger44

Supporter
Feb 19, 2017
713
31
28
Chile
Code:
command /lore [<text>]:
    permission: world.lore
    permission message: &cNo tienes permisos!
    trigger:
        if sender is a player:
            if arg 1 isn't set:
                send "&2&lWorld&f&lCraft&7 /lore <texto para el item>"
                stop
            if arg 1 is set:
                set lore of player's tool to "%coloured arg 1%"
                send "&2&lWorld&f&lCraft&7 Colocaste la descripcion de tu item: %coloured arg 1%"
        else:
            send "Este comando solo puede ser ejecutado por un jugador."
            stop

I trying other options, but still getting error
upload_2019-2-28_17-26-54.png
 
Last edited:
First of all: Say what the damn error is. If you mean
code_language.skript:
Line 34: Coloured the 1st argument is already a text, so you should not put it in one (e.g. coloured the 1st argument instead of "%coloured the 1st argument%") (script.sk, line 34: set lore of player's tool to "%coloured arg 1%"')
it's not an error. just remove the quotes and percentages.
 
First of all: Say what the damn error is. If you mean
code_language.skript:
Line 34: Coloured the 1st argument is already a text, so you should not put it in one (e.g. coloured the 1st argument instead of "%coloured the 1st argument%") (script.sk, line 34: set lore of player's tool to "%coloured arg 1%"')
it's not an error. just remove the quotes and percentages.
upload_2019-2-28_17-28-47.png
 
Try using dev36. Also, use TuSKe or Skript for your GUIs. And use >= instead of is >=
 
My guess is you have an addon that is conflicting, that is usually what causes vanilla skript to break
MundoSk, Skellet, SkQuery, SkRayFall, SkUtilities, TuSKe, WolvSk.
These are the addons that I currently have on my server.
[doublepost=1551483214,1551458018][/doublepost]
Try using dev36. Also, use TuSKe or Skript for your GUIs. And use >= instead of is >=
O my god, thanks you so much.
 
Status
Not open for further replies.