Bug with Aliases

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

    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.

PuchiGFX

Member
Jan 26, 2017
246
5
18
I have this bug with an aliase of my command:
pic: https://gyazo.com/a1cfd47eeff5f04ab5125275908d9a56 (the message is from essentials)
but i have this code:
code_language.skript:
command /broadcast [<text>]:
    aliases: shout
    permission: odisean.admin
    permission message: &cNo tienes permiso para esto.
I have Skript 2.2 Fixes V8b and 1.8 spigot
[doublepost=1494718476,1494626908][/doublepost]bump :B
 
Last edited:
This isn't a bug, it's probably a plugin that already has /shout
 
You should do
code_language.skript:
command /broadcast [<text>]:
    aliases: /shout,
    permission: odisean.admin
.....

This may be working.
 
Last edited by a moderator:
You have the "plugin priority: high" in config.sk?
yep
[doublepost=1494764401,1494764356][/doublepost]
You should do
code_language.skript:
command /broadcast [<text>]:
    aliases: /shout,
    permission: odisean.admin
.....

This may be working.
?
Just disable the command in the Essentials config.
k, i'll try
[doublepost=1494764497][/doublepost]
Just disable the command in the Essentials config.
doesn't work :emoji_frowning:
 
yep
[doublepost=1494764401,1494764356][/doublepost]
?

k, i'll try
[doublepost=1494764497][/doublepost]
doesn't work :emoji_frowning:

Did you do it like this?
notepad%2B%2B_2017-05-14_14-20-17.png
 
try:
code_language.skript:
options:
    command: gen # random

command /{@command} <text>:
    aliases: shout, broadcast, bc
    trigger:
#Insert cose
 
try:
code_language.skript:
options:
    command: gen # random

command /{@command} <text>:
    aliases: shout, broadcast, bc
    trigger:
#Insert cose
thats the same code but with options, i'm thinking this is unfixeable :/
[doublepost=1494805203,1494805172][/doublepost]
thats the same code but with options, i'm thinking this is unfixeable :/
i mean, a major bug of skript (that's why i hate code in .sk)
 
How I said already. Try this code:
code_language.skript:
command /broadcast [<text>]:
    aliases: /shout, /broadcast, /lalala,
[CODE]

If you not understandig it or not finding the difference:
There is a / and a , in the aliases. This may fix your problem.
This problem was also a problem for me, but my code that I posted fixed it. Maybe your too.
 
How I said already. Try this code:
code_language.skript:
command /broadcast [<text>]:
    aliases: /shout, /broadcast, /lalala,
[CODE]

If you not understandig it or not finding the difference:
There is a / and a , in the aliases. This may fix your problem.
This problem was also a problem for me, but my code that I posted fixed it. Maybe your too.
i tried with that, and with on command event, i think this is a bug of skript
 
i tried with that, and with on command event, i think this is a bug of skript
It's not a bug of Skript, it's just that Essentials have the highest priority for every listener it has, truly annoying thing about Essentials. Try putting Skript's priority at highest (highest, not high as above suggested) and disable Essentials command (although if you disable the Essentials command that message shouldn't appear).
 
It's not a bug of Skript, it's just that Essentials have the highest priority for every listener it has, truly annoying thing about Essentials. Try putting Skript's priority at highest (highest, not high as above suggested) and disable Essentials command (although if you disable the Essentials command that message shouldn't appear).
k, i'll try
[doublepost=1494941408,1494941300][/doublepost]
It's not a bug of Skript, it's just that Essentials have the highest priority for every listener it has, truly annoying thing about Essentials. Try putting Skript's priority at highest (highest, not high as above suggested) and disable Essentials command (although if you disable the Essentials command that message shouldn't appear).
not working :/
 
Status
Not open for further replies.