Skript join message

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

SuperKarc0kej

Member
Jul 8, 2017
2
0
0
20
Hi,
I would like to create a script that will welcome a player with a given permission (will be for the whole staff, so there will be more groups)
*Sorry for my english but i'm italian .-.
 
Try this:
code_language.skript:
on join:
    #this is the permission the player will need.
    if player has permission "Staff.join":
    #this is the message you will send to the player.
        send "-+-+-+-+-+-+-+--+-+-+-+-" to player
        send "Welcome to the server!" to player
        send "-+-+-+-+-+-+-+-+--+-+-+-" to player
    if player has permission "Default.join":
        send "-+-+-+-+-+-+-+--+-+-+-+-" to player
        send "Welcome to the server!" to player
        send "-+-+-+-+-+-+-+-+--+-+-+-" to player
 
Status
Not open for further replies.