Solved How to see if rank is

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

bpitcher2013

Member
Jan 25, 2020
14
1
3
Hello i have read the docs but i cant understand them this is what i have

Minecraft Version:1.6.3

Skript:

Code:
on death:
        if player's group is god
        make console execute command pex user %player% add Donor.list


Errors: Can't understand this condition/effect: if player's group is god (Donoperms.sk, line 2: if player's group is god')

Addons: SkQuery, SkriptTuSKe
 
Code:
on death:
    if player's group is "god":
        make console execute command pex user %player% add Donor.list
try this or this
Code:
on death:
    if player's group is "god":
        execute console command "pex user %player% add Donor.list"
 
Status
Not open for further replies.