이해도 | 입문자 |
---|---|
게임버전 (JE) | 관련없음 |
게임버전 (BE) | 관련없음 |
스크립트 버전 | 2.6 |
on right click with stick:
set {_toy} to uncolored name of player's tool
replace all "[장난감 막대기] 0" and "" with "" in {_toy}
message "%{_toy}%" to player
if {_toy} is "01":
set {_toy_2} to "black dust"
message "%{_toy_2}%" to player
set {_loc} to location 1 infront of head of player
set {_ptc} to {_toy_2} with offset of 0, 0, 0 and speed 0
set {_vec} to vector from player to location infront of player
set {_l} to {_loc}
set vector length of {_vec} to 0.2
loop 100 times:
wait 1 tick
set {_l} to {_l} ~ {_vec}
show {_ptc} at {_l}
이렇게 적고나서 _toy_2 에 black dust까지 나오는거를 확인했습니다
하지만 아래
set {_ptc} to {_toy_2} with offset of 0, 0, 0 and speed 0
이문장에서 인식을 할수없다는 오류가 나와서 예시구문을 찾을수없어 질문을 하고싶습니다
windy_wind
2024.07.08dust를 하실거면 이 문구를 사용하시고,
색상을 원하는대로 변수값으로 설정하고 싶으시면 rgb안에 변수를 넣어 사용해보세요
make 1 of dust using dustOption(rgb(102,204,255), 1) at {_loc} with offset vector(0,0,0) with extra 1 with force to all players
ex)set {_r} to 100
set {_g} to 200
set {_b} to 150
make 1 of dust using dustOption(rgb({_r},{_g},{_b}), 1) at {_loc} with offset vector(0,0,0) with extra 1 with force to all players
머농
2024.07.08저 문구를 어디에다가 적어야하나요?
windy_wind
2024.07.11set {_ptc} to {_toy_2} with offset of 0, 0, 0 and speed 0
대신해서요