d2bs horde 물약 관련 질문드립니다.
안녕하세요.
d2bs horde 사용중인데요..
캐릭터별 이니에서 인벤토리 및 물약 설정을 해놓아도
리더 캐릭 인벤에는 항상 마나물약 10개, 치유물약 2개를 꽉 채워서 다니네요..
벨트에 있는 물약은 먹지도 않고 인벤 물약 1~2개만 떨어져도 마을에 다녀오구요.
참도 못넣겠고 아이템도 루팅을 제대로 하지 못해서 수정을 하려해도 도저히 안되네요.
Config.Inventory[0] = [1,1,1,1,1,1,0,0,0,0];
Config.Inventory[1] = [1,1,1,1,1,1,0,0,0,0];
Config.Inventory[2] = [1,1,1,1,1,1,0,0,0,0];
Config.Inventory[3] = [1,1,1,1,1,1,0,0,0,0];
-> 0 부분에 참이 있고 1 부분중 6칸 제외 다 물약을 채우고 다니며, 벨트 물약은 손도 안댑니다. ...ㅜㅜ
Config.StashGold = 100000; // Minimum amount of gold to stash.
/* Potion types for belt columns from left to right.
* Rejuvenation potions must always be rightmost.
* Supported potions - Healing ("hp"), Mana ("mp") and Rejuvenation ("rv")
*/
Config.BeltColumn[0] = "hp";
Config.BeltColumn[1] = "mp";
Config.BeltColumn[2] = "rv";
Config.BeltColumn[3] = "rv";
/* Minimum amount of potions. If we have less, go to vendor to purchase more.
* Set rejuvenation columns to 0, because they can't be bought.
*/
Config.MinColumn[0] = 1;
Config.MinColumn[1] = 1;
Config.MinColumn[2] = 0;
Config.MinColumn[3] = 0;

