콘텐츠로 건너뛰기
라이엇 비트

라이엇 비트

  • 집
  • 소식
  • 가이드
  • 비디오 가이드
  • 패치 노트
  • 남용 신고
  • 검색 양식 전환

코드 정맥 – Exalted Reputation Achievement Guide

에 게시됨 09/26/202209/26/2022 에 의해 辻斬り 코멘트 없음 ~에 코드 정맥 – Exalted Reputation Achievement Guide
  • 제목: 코드 정맥
  • 출시일:
  • 개발자:
  • 발행자:
CODE VEIN에 대한 정보는 아직 불완전합니다.. 이것을 사용하여 게임의 세부 정보를 입력할 수 있도록 도와주세요. 문의 양식.

Can’t play with friends? Can’t find people online to help? Despair overwhelming you at the thought of the offline farm? This guide is for you. 이 안내서를 따르면, you will complete this achievement without even noticing (말 그대로).

소개

This guide is to help people automate the offline farm for the Exalted Reputation achievement.

나는 사용했다 this Youtube guide as the basis for my own setup. I added some fluff on top so that one-shotting the enemy could be possible even with less strength (레벨), though the automating script I made only considers the minimum spells I ended up needing.

추가적으로, 당신은 필요할 것입니다 AutoHotkey for the script part from the later section. AutoHotkey is an open-source scripting language for Windows for various input-based tasks. You can find more information on them from the link to their official website or just generally on the internet.

Character Setup

You can get the basic setup from the video linked in the Introduction section. If that setup is enough for you to one-shot the enemy (which requires about 12k damage), you can skip this section (at least mostly) and adjust the script with the gifts and skills you are using.

중요한: The setup I used utilizes the gift Steadfast Strike from the Pollux Blood Code, which is from the Frozen Empress DLC. It can be replaced with just the Judgement Edge charged heavy attack (remember to edit the script if doing so), but Steadfast Strike does about ~50% more damage, so using charged attack instead will likely require a bit more other buffing gifts.

Setup in the above image. See below for more information. Remember to master and inherit the gifts from various blood codes so you can actually use them in the build.

While levels don’t increase your power that drastically per level in this game, it is worth noting that I was level 190 for my farming.

Blood code and gear:
  • Hades Blood Code
  • Judgement Edge +10
  • Night Claw +10

Any strength-based veil will do. Any strength-based Blood Code with aptitude for heavy gear could do as well. Didn’t test any other options for either of these.

Judgement Edge is a drop from Juzo Mido at the end of the Crypt Spire.

Hades is a drop from the final boss.

Passive gifts:
  • Max Ichor Boost (Harmonia Blood Code)
  • Revenant’s Greed (Hermes Blood Code)
  • Two-handed Sword Mastery (Atlas Blood Code)
  • Vow of Ichor (Isis Blood Code)

Ichor boosting passives allow using more active buffing gifts that tend to give better damage increase than the passive strength/etc. 선물.

Two-handed Sword Mastery increases damage more than strength gifts, and should be prioritized over them.

Revenant’s Greed increases item drop rate from enemies, which is quite quintessential when battling the low drop rate of Mark of Honor. If really in need of bit more damage, this could of course be replaced with something on that end. With the automated setup, that would just mean you need to let it run a lot longer to get the Marks.

Active gifts:
Script only uses Blood Weapon, Night Fog Veil and Steadfast Strike, but you can setup the whole thing and adjust the script to use more of them if you are otherwise lacking in damage.


중요한: for the script to work, the gifts must be positioned like in the above picture (most importantly for the three gifts it uses by default).

  • Steadfast Strike (Pollux Blood Code) (From Frozen Empress DLC)
  • Night Fog Veil (Heimdal Blood Code)
  • Merciless Reaper (Assassin Blood Code)
  • Blood Weapon (Dark Knight Blood Code)
  • 아드레날린 (Fighter Blood Code)
  • 오버 드라이브 (Assassin Blood Code)
  • Blood Sacrifice (Hunter Blood Code)

Steadfast Strike is high damage gift that is not interrupted easily.

Night Fog Veil makes it hard for enemies to notice you.

Blood Weapon adds blood damage to your attacks. The target here is weak against blood.

Merciless Reaper ignores notable portion of enemy physical defence for one strike, or significantly buffs their physical damage weakness (if they are weak instead of resistant to physical damage). On most targets, increases damage more than either Adrenaline or Overdrive (or sometimes both).

Adrenaline and Overdrive increase your attack damage. Overdrive increases more, but is removed when taking damage. They do stack with each other. If you are using different blood code than Hades, one that has higher mind, using Bridge to Glory is also possible for larger attack buff than Adrenaline.

Blood Sacrifice restores some ichor from your HP. Potentially useful if you would need more gifts here than you can afford, even with the increased ichor from passives.

Other setup:
Mistle Root

is recommended, as with it, you will retain all haze you accumulate from the kills. If you don’t have Mistle Root, using Bloodstained Stake (which I believe is automatically in inventory or is given to you as part of the story) to return to the mistle every round is also possible, but will make you lose all the haze you get from the kills.

Mistle Root can be found in Crypt Spire. Right after obtaining and using Bloodstained Key, you will arrive at the crossroad pictured below. Instead of going right to continue onward, climb up the ladder on the left and continue forward to find a room with a bloodspring and few Lost. Kill the enemies and pick up the Mistle Root from the bloodspring.

스크립트

지금쯤이면, you should have loaded AutoHotkey from their website as linked in the introduction section.

IMPORTANT REMINDER: Never ever run scripts you do not fully understand or trust. AutoHotkey itself is just a scripting language, but the scripts themselves can be malicious. The people – 나처럼 – writing the scripts can and will say they are safe, but if you don’t understand the script, all you have is their word for it.

지금, with that healthy reminder being said, below is the script, with comments added in to help understand what is going on:

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. ; absolute screen coords used CoordMode, 생쥐, Screen ;————————————————————————— SendMouse_RelativeMove(엑스, 와이) { ; send fast relative mouse moves ;————————————————————————— DllCall(“mouse_event”, “UInt”, 0x01, “UInt”, 엑스, “UInt”, 와이) ; 이동하다 } ;————————————————————————— MoveForward(ms) { ; move forward for ms ;————————————————————————— SendInput {w Down} Sleep ms SendInput {w Up} } ;————————————————————————— CastSpell(에스) { ; cast spell specified by parameter ;————————————————————————— SendInput {RShift Down} 잠 500 SendInput {%s%} SendInput {RShift Up} 잠 2000 } ^i:: ;init BreakLoop = 0 고리, { ; quit script after break is called if (BreakLoop = 1) break SendMouse_RelativeMove(-850, 0) ; turn left MoveForward(1500) ; move forward for 1.5 secs SendInput {이자형} ; interact to move deeper in the Tower Sleep 2000 ; wait for 2 seconds for the animations SendMouse_RelativeMove(800, 0) ; turn back right MoveForward(1500) ; move forward for 1.5 secs SendMouse_RelativeMove(-220, 0) ; turn slightly left to face the direction of the enemy Sleep 100 ; wait a bit to ensure completing turning before gifts CastSpell(“F7”) ; cast Blood Weapon CastSpell(“F1”) ; cast Night Fog Veil MoveForward(4000) ; move forward for 4 seconds SendInput {큐} ; target enemy in front of you CastSpell(“F3”) ; cast Steadfast Strike Sleep 3000 ; wait for 3 seconds for the animations SendInput {아래에} ; use Mistle Root Sleep 700 ; wait a bit for the UI to load and move to the default option SendInput {위로} ; move from “아니요” 에게 “예” 잠 300 ; wait a bit for the UI again SendInput {입력하다} ; confirm yes Sleep 15000 ; wait for the loading screen before starting anew } Exit ^b:: ;break BreakLoop = 1

Having installed AutoHotkey, there should be File Explorer option to new->Create AutoHotkey-script. Can also just create .ahk-file manually. Create a script file (make sure it is completely empty), copy all of the above inside, 그리고 저장. I would personally recommend using a text editor meant for programming, so you have potential support for syntax highlighting and the like. Makes it easier to understand the script, especially if you need to modify it.

If you are using slightly different gift setup from the one demonstrated in this guide, you can easily modify this script using the functions for spellcasting.

추가적으로, feel free to adjust the final big sleep to match your computer performance. My computer took about ~10 seconds to be ready for a new loop after using Mistle Root, but I added few seconds of buffer time in case some hiccups happen in loading, and I would recommend the same for you even if you are running a strong computer. On the other hand if you are running a slower machine, you can increase that timer as much as is needed for your computer to finish the process there.

When the script is running (double-clicked from the directory or similar), press ctrl+i to initiate the loop. To stop it, press ctrl+b. It will stop after finishing the current loop, before the next. 이와 같이, I typically like to stop it during the loading screen which is the final phase. Since the script is also sleeping for a while there, it is the best spot to give clean stop input.

농업

With the character setup and script ready, it is time to farm. The location for the farming is Tower of Trials II just like in the linked video.

If you are doing this manually, remember to never bother with the left Lost, only with the right one. The left one doesn’t drop Marks of Honor and will just waste your time. The right one has maybe about 1/4 또는 1/3 drop-rate on Mark of Honor with Revenant’s Greed.

After teleporting to the location, do not move your character or camera. It will potentially make the script fail (likely for one round only, but potentially more if you happen to die and the required timing of the loops gets shifted). If you did move before running the script, just use the mistle root again to reset your position at the mistle.

이와 같이, all you need to do is:

  • Double-click (달리다) the script file in your directory to start it up. Should be then visible in the small openable background task menu in the taskbar, where for example Discord and Steam also typically have their icons even if you close them but don’t properly quit
  • Make sure you have the character setup ready and mistle root as the active item
  • Teleport to Tower of Trials II
  • Press CTRL+i to init the loop in the script (i for init)
  • ???
  • 이익

To make sure everything is working as intended, I would recommend looking at it every now and then for the first while. If everything is working, then you can just leave it rocking for the night or similar. Takes probably about 10-12 hours on average to get the required number of Marks of Honor (~에 대한 11 hours for me personally).

If something goes wrong, or you are finished and want to stop the script, press CTRL+b (b for the break). To guarantee cleanly registering the input without any additional actions taken after it by the script, I would recommend stopping it during the loading screen part when the code sleeps for the longest time. The loop will break right after as it starts anew and faces the break condition.

이것이 오늘 우리가 공유하는 모든 것입니다. 코드 정맥 가이드. 이 가이드는 원래 작성자가 작성하고 작성했습니다. 辻斬り. 이 가이드를 업데이트하지 못한 경우, 다음을 수행하여 최신 업데이트를 찾을 수 있습니다. 링크.

이 사이트의 콘텐츠가 귀하의 권리를 침해한다고 생각하는 경우, 귀하의 지적 재산권을 포함하여, 문의 양식을 사용하여 즉시 문의하십시오..
가이드 태그:코드 정맥

탐색 후

이전 게시물: Human: Fall Flat – Tower Walkthrough and Achievements
다음 게시물: How to Fix Space Hulk: Deathwing – Enhanced Edition 충돌, 실행 시 충돌, 및 동결 문제

답장을 남겨주세요 답장 취소

귀하의 이메일 주소는 공개되지 않습니다. 필수 입력란이 표시되어 있습니다 *

  • 제목: 코드 정맥
  • 출시일:
  • 개발자:
  • 발행자:
CODE VEIN에 대한 정보는 아직 불완전합니다.. 이것을 사용하여 게임의 세부 정보를 입력할 수 있도록 도와주세요. 문의 양식.

부인 성명

인용된 모든 콘텐츠는 해당 소스에서 파생됩니다.. 귀하의 콘텐츠를 허가 없이 사용했다고 생각되는 경우, 우리에게 연락하면 진지하게 받아 들일 것입니다..
  • 회사 소개
  • 문의하기
  • 개인 정보 정책
  • 서비스 약관

저작권 © 2025 라이엇 비트.

에 의해 구동 프레스북 뉴스 WordPress 테마