함수에서 {변수.%uuid of player%}를 사용한다면 어떻게 써야하나요
함수의 매개변수로 player를 받아오거나, text 타입으로 uuid를 받아오면 됩니다.
function fx_test(p:player): set {_uuid} to uuid of {_p} function fx_test(uuid:text): {변수.%{_uuid}%} ~
아니면 전역변수를 활용해도 되죠.
// 코드 set {data} to {변수.%uuid of player%} fx_test() delete {data} // 함수 function fx_test(): {data} ~
건축
팀뉴일리시
2024-11-23
4
KHC
2024-10-25
2
2024-10-10
dbasd12
2024-10-09
레드스톤
노트블럭전문가
2024-10-08
1
스크립터브혼
2021.05.17함수의 매개변수로 player를 받아오거나, text 타입으로 uuid를 받아오면 됩니다.
아니면 전역변수를 활용해도 되죠.