이해도 | 입문자 |
---|---|
게임버전 (JE) | 1.19.3 |
게임버전 (BE) | 관련없음 |
스크립트 버전 | 2.6.4 |
안녕하세요 며칠전에 스크립트를 접해서 시작하게 되었는데 귀속 스크립트를 만지던 중 21번째 구문이 오류가 떠서 적용이 안되고 있습니다. 애드온은 skutilities , skrayfall, skquery 3가지 쓰고 있는데 어떤게 문제일까요 ㅠㅠㅠ
command /귀속:
trigger:
set {_int} to 0
loop 10 times:
add 1 to {_int}
if line {_int} of lore of player's tool contains "&4귀속아이템":
set {_set} to true
if {_set} is true:
message "이미 귀속처리된 아이템 입니다!"
stop
else:
set {_item} to player's tool
set {_lore::*} to lore of player's tool
remove 1 of {_item} from player's inventory
if size of {_lore::*} <= 0:
give 1 of {_item} with lore " " and "&4귀속아이템" to player
else:
give 1 of {_item} with lore {_lore::*} and " " and "&4귀속아이템" to player
on death of player:
loop all items in player's inventory: <====== 21번째 구문
set {_int} to 0
loop 10 times:
add 1 to {_int}
if line {_int} of lore of loop-item contains "&4귀속아이템":
add loop-item to {respawn.%player%::*}
remove loop-item from drops
on respawn:
wait 1 tick
if size of {respawn.%player%::*} > 0:
loop {respawn.%player%::*}:
give loop-value to player
remove loop-value from {respawn.%player%::*}
on drop:
set {_int} to 0
loop 10 times:
add 1 to {_int}
if line {_int} of lore of item contains "&4귀속아이템":
cancel event
뚜섯
2023.06.03아이템을 버리지 못하고 죽으면 템이 사라지는데 태어나서 다시 들어오지 않습니다!