개인 자료란 (JE)

  서버 커뮤니티

Profile helpmeplz 대표칭호 없음
Profile

질문하기 스크립트

에센셜 돈 스크립트

2023.06.30 조회 수 996 추천 수 0
이해도 입문자 
게임버전 (JE) 1.12.2 
게임버전 (BE) 관련없음 

에센셜 돈 명령어가 /eco give  ~~ 이런식이던데 명령어를 돈 설정 , 돈 보내기 이런식으로 바꾸는 스크립트가 있나요..?

그리고 막 수표도 꺼내던데 도와주세요 ㅠㅠ


1개의 댓글

Ru_Nan
2023.06.30
command /돈 [<player>] [<text>] [<text>]:
    trigger:
        if player is op:
            if arg 1 is not set:
                message "/돈 주기 [플레이어] [지급할 돈] - 플레이어에게  돈을 지급합니다."
                message "/돈 뺏기 [플레이어] [뺏을 돈] - 플레이어에게서 돈을 빼앗습니다."
                message "/돈 설정 [플레이어] [설정할 돈] - 플레이어의 돈을 설정합니다."
            
            if arg 1 is "주기":
                execute console command "eco give %arg 2% %arg 3%"
                message "정상적으로 %arg 2%에게 %arg 3%원만큼 지급했습니다."
                
            if arg 1 is "뺏기":
                execute console command "eco take %arg 2% %arg 3%"
                message "정상적으로 %arg 2%에게 %arg 3%원만큼 차감했습니다."
                
            if arg 1 is "설정":
                execute console command "eco set %arg 2% %arg 3%"
                message "정상적으로 %arg 2%에게 %arg 3%원으로 설정했습니다."