개인 자료란 (JE)

  서버 커뮤니티

Profile 삼공오 일반인
Profile

질문하기 스크립트

질문있습니다!!

2023.06.11 조회 수 74 추천 수 0
이해도 초보자 
게임버전 (JE) 1.19.4 
게임버전 (BE) 관련없음 
스크립트 버전 1.19.4 

options:

    c: &a&l[땅] &f설치권

    

command /땅지급:

    permission: land.op

    trigger:

        give 1 of red wool named "{@c}" to player

        

command /땅 [<text>] [<player>]:

    trigger:

        if arg 1 is not set:

            send ""

            send "{@c} 은 마인리스트 또는 이벤트, 상점에서 얻을 수 있으며, 1개만 설치가 가능합니다"

            send ""

            send "&a&l[땅]&f 범위 안에서는 &4&lPvp, 블럭설치,파괴, 상자 &f등 상호작용이 불가능 합니다"

            send "              단, 땅주인은 Pvp를 제외 한 모든 상호작용 가능"

            send ""

            send "&a&l[땅] &f/땅 &e초대 &c[&f닉네임&c] &f- 자신의 땅에 플레이어를 초대합니다."

            send "&a&l[땅] &f/땅 &e제거 &c[&f닉네임&c] &f- 자신의 땅에 플레이어를 제거합니다."

            send ""

            

        if arg 1 is "초대":

            if arg 2 is set:

                loop {땅::*}:

                    if loop-value is player:

                        add arg 2 to {땅권한.%player%::*}

                        send "{@c} &f당신의 땅에 해당 플레이어를 추가하였습니다."

                        stop

                        

                send "{@c} &f당신의 땅이 존재하지 않습니다."

                stop

                

        if arg 1 is "제거":

            if arg 2 is set:

                loop {땅권한.%player%::*}:

                    if loop-value is arg 2:

                        delete {땅권한.%player%::%loop-index%}

                        set {땅권한.%player%::*} to {땅권한.%player%::*}

                        send "{@c} &f당신의 땅에 해당 플레이어를 제거하였습니다."

                        stop

                        

                send "{@c} &f당신의 땅에 해당 플레이어가 존재하지 않습니다."

                stop

        

on place:

    if {땅범위.%player%::*} is not set:

        if name of player's tool is "{@c}":

            set {_땅} to event-location

            loop {땅::*}:

                set {_범위1} to {땅범위.%loop-value%::1}

                set {_범위2} to {땅범위.%loop-value%::2}

                

                add 48 to x-coord of {_범위1}

                remove 48 from z-coord of {_범위1}

                

                remove 48 from x-coord of {_범위2}

                add 48 to z-coord of {_범위2}

                if x coordinate of {_땅} is between x coordinate of {_범위1} and x coordinate of {_범위2}:

                    if z coordinate of {_땅} is between z coordinate of {_범위1} and z coordinate of {_범위2}:

                        #loop {땅권한.%loop-value%::*}:

                            #if loop-value-2 is player:

                            #    set {_범위1} to event-location

                            #    set {_범위2} to event-location

                            #    

                            #    add 24 to x-coord of {_범위1}

                            #    remove 24 from z-coord of {_범위1}

                            #    

                            #    remove 24 from x-coord of {_범위2}

                            #    add 24 to z-coord of {_범위2}

                            #    

                            #    add player to {땅::*}

                            #    add player to {땅권한.%player%::*}

                            #    add loop-value-1 to {땅권한.%player%::*}

                            #    set {땅범위.%player%::1} to {_범위1}

                            #    set {땅범위.%player%::2} to {_범위2}

                            #    

                            #    send "{@c} &f당신의 땅이 설정되었습니다."

                            #    stop

                        

                        cancel event

                        send "{@c} &f근처에 다른 땅이 존재해 설치할 수 없습니다."

                        stop

                        

            

            set {_범위1} to event-location

            set {_범위2} to event-location

            

            add 24 to x-coord of {_범위1}

            remove 24 from z-coord of {_범위1}

            

            remove 24 from x-coord of {_범위2}

            add 24 to z-coord of {_범위2}

            

            add player to {땅::*}

            add player to {땅권한.%player%::*}

            set {땅범위.%player%::1} to {_범위1}

            set {땅범위.%player%::2} to {_범위2}

            

            send "{@c} &f당신의 땅이 설정되었습니다."

            stop

            

    else:

        stop

        

on break:

    set {_땅} to event-location

    loop {땅::*}:

        if x coordinate of {_땅} is between x coordinate of {땅범위.%loop-value%::1} and x coordinate of {땅범위.%loop-value%::2}:

            if z coordinate of {_땅} is between z coordinate of {땅범위.%loop-value%::1} and z coordinate of {땅범위.%loop-value%::2}:

                loop {땅권한.%loop-value%::*}:

                    if loop-value-2 is player:

                        uncancel event

                        stop

                        

                cancel event

                send "{@c} &f당신은 이 땅에 대한 권한이 없습니다. "

                stop

                

on damage:

    if attacker is player:

        set {_땅} to event-location

        loop {땅::*}:

            if x coordinate of {_땅} is between x coordinate of {땅범위.%loop-value%::1} and x coordinate of {땅범위.%loop-value%::2}:

                if z coordinate of {_땅} is between z coordinate of {땅범위.%loop-value%::1} and z coordinate of {땅범위.%loop-value%::2}:

                    loop {땅권한.%loop-value%::*}:

                        if loop-value-2 is player:

                            uncancel event

                            stop

                                

                        cancel event

                        send "{@c} &f당신은 이 땅에 대한 권한이 없습니다." to attacker

                        stop

                        

on place:

    set {_땅} to event-location

    loop {땅::*}:

        if x coordinate of {_땅} is between x coordinate of {땅범위.%loop-value%::1} and x coordinate of {땅범위.%loop-value%::2}:

            if z coordinate of {_땅} is between z coordinate of {땅범위.%loop-value%::1} and z coordinate of {땅범위.%loop-value%::2}:

                loop {땅권한.%loop-value%::*}:

                    if loop-value-2 is player:

                        uncancel event

                        stop

                        

                cancel event

                send "{@c} &f당신은 이 땅에 대한 권한이 없습니다."

                stop

: 단 1회성이라 땅을 설치하면 그이후로 '제거'를 해도 땅은 유지되고 권한만 해제되는데
땅을 취소하고 다시 다른곳에 짓고 싶은데 어떤 문구를 추가해야할까요...ㅠㅠ

Warning
댓글이 없습니다.

새로운 댓글을 등록해 주세요!

뉴스 및 창작물
/files/thumbnails/761/908/003/262x150.crop.jpg?20241025153749

건축

서울 숭례문(崇禮門) 4

KHC

2024-10-25

2

/files/thumbnails/578/899/003/262x150.crop.jpg?20241010142350

건축

경주 월정교 1

KHC

2024-10-10

2

/files/thumbnails/219/899/003/262x150.crop.jpg?20241009200950

건축

송전탑+도시 2

dbasd12

2024-10-09

2

/files/thumbnails/246/898/003/262x150.crop.jpg?20241008102328

레드스톤

단다단 - 오토노케(オトノケ) | 마인크래프트 노트블럭 커버

노트블럭전문가

2024-10-08

1

/files/thumbnails/348/896/003/262x150.crop.jpg?20241006103035

디도스/봇테러등등을 낚는 방법 4

물귀신

2024-10-06

3