Solved A Little Two Question

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

Yaşarhan

Active Member
May 16, 2020
87
6
8
23
Turkey Istanbul
First Question: "On Disconnect" event, is in "On Quit" event included ?

Second Question:
"if arg 1 does not have permission "dont.report":" This command, how can control group ?

I Tryneds, this commands no error but not working:
Code:
if arg 1 do have group is "Mod":
if arg 1 do have group "Mod":
if arg 1 have group "Mod":
if arg 1 does have is group "Mod":
if arg 1 does have group "Mod":
 
Last edited:
First Question: "On Disconnect" event, is in "On Quit" event included ?

Second Question:
"if arg 1 does not have permission "dont.report":" This command, how can control group ?

I Tryneds, this commands no error but not working:
Code:
if arg 1 do have group is "Mod":
if arg 1 do have group "Mod":
if arg 1 have group "Mod":
if arg 1 does have is group "Mod":
if arg 1 does have group "Mod":
Dude try your self, you will not learn if you keep askin' people for help
 
Code:
if arg 1 do have group is "Mod":
if arg 1 do have group "Mod":
if arg 1 have group "Mod":
if arg 1 does have is group "Mod":
if arg 1 does have group "Mod":

You need to work on your english grammar here.

This should work, however I have not tested it.
Code:
if group of arg-1 is "mod":
 
  • Like
Reactions: Yaşarhan
First Question: "On Disconnect" event, is in "On Quit" event included ?

Second Question:
"if arg 1 does not have permission "dont.report":" This command, how can control group ?

I Tryneds, this commands no error but not working:
Code:
if arg 1 do have group is "Mod":
if arg 1 do have group "Mod":
if arg 1 have group "Mod":
if arg 1 does have is group "Mod":
if arg 1 does have group "Mod":
First answer, i don't understand what you mean by that question of whether it's included or not, but, they both do the same thing. The only difference is that they are written differently. If you have a doubt about skript syntax, see here: SkriptHub or SkriptLang

Second answer, well... i never liked using those kinds of conditions to refer to a group. I used them with permissions:
code_language.skript:
if player has permission "something.mod.use":
    #...
or
code_language.skript:
if player does not have permission "something.mod.use":
    #...
 
  • Like
Reactions: Yaşarhan
First answer, i don't understand what you mean by that question of whether it's included or not, but, they both do the same thing. The only difference is that they are written differently. If you have a doubt about skript syntax, see here: SkriptHub or SkriptLang

Second answer, well... i never liked using those kinds of conditions to refer to a group. I used them with permissions:
code_language.skript:
if player has permission "something.mod.use":
    #...
or
code_language.skript:
if player does not have permission "something.mod.use":
    #...

You right sir, exactly.
Very thanks.
[doublepost=1590113255,1590113119][/doublepost]
Dude try your self, you will not learn if you keep askin' people for help


Sorry to bother you, actually I learn a lot from the answers I received. Thanks. :emoji_slight_smile:
[doublepost=1590113355][/doublepost]
You need to work on your english grammar here.

This should work, however I have not tested it.
Code:
if group of arg-1 is "mod":

I just tried randomly, thank you very much for your interest.
 
Status
Not open for further replies.