수영 빨리 하는 벨트 또는 기타 장비가 있으시면 착용 하시면 됩니다.
전 벨트만 꼇는데 추가로 이것 저것 구해 볼 생각 입니다.
기존에는 아이템 껴지기만 하고 뭍에 나오면 안바꼇는데 이걸로 하시면 됩니다.

기존 아이템렉 스크립트 바꾸시기만 하면
대소문자 가립니다.

local set = "바꿀 세트 이름"
if IsSwimming() and not IsSetEquipped(set) then
  EquipSet(set)
  if not SwimmingEvent then
    function SwimmingEvent()
      if not IsSwimming() then
        ItemRack.StopTimer("SwimmingEvent")
        UnequipSet(set)
      end
    end
    ItemRack.CreateTimer("SwimmingEvent",SwimmingEvent,.5,1)
  end
  ItemRack.StartTimer("SwimmingEvent")
end
--[[Equips a set when swimming and breath gauge appears and unequips soon after you stop swimming.]]