Paste #15636: Greeting

Date: 2015/05/08 09:44:48 UTC-07:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


Server_Greetings:
    type: world
    debug: false
    events: 
        on player join:
            - wait 1
            - if <player.flag[server_member]> == true {
                - narrate "<&3><&l>welcome back <player.name>!<&3>"
                - narrate "for server rules and news, type '/rules, /news'"
            } else {
                - narrate "welcome to the server <player.name>, please feel free to play around, have fun"
                - narrate "please, do not build or move things around where there is already a structure"
                - narrate "as there are alot of plans for the server in the near future, thank you"
                - wait 1
                - narrate "to see updates and rules type '/rules, /news'"
                - flag player server_member
            }