file encoding to utf-8

This commit is contained in:
d1str4ught
2025-08-19 00:30:50 +02:00
parent be56f3f31a
commit ea712bec83
241 changed files with 1753 additions and 1753 deletions

View File

@@ -100,7 +100,7 @@ void CPythonPlayer::NEW_SetMouseSmartState(int eMBS, bool isAuto)
// PrivateShop
if (IsOpenPrivateShop())
{
// ShopPacket 이 오기전 잠깐 동안
// ShopPacket 이 오기전 잠깐 동안
m_isSmtMov=false;
return;
}
@@ -111,7 +111,7 @@ void CPythonPlayer::NEW_SetMouseSmartState(int eMBS, bool isAuto)
return;
}
// AFFECT_STUN 처리
// AFFECT_STUN 처리
if (pkInstMain->IsSleep())
{
return;
@@ -346,16 +346,16 @@ void CPythonPlayer::NEW_RefreshMouseWalkingDirection()
{
float fDistance=pkInstMain->GetDistance(pkInstReserved);
// #0000806: [M2EU] 수룡에게 무사(나한군) 탄환격 스킬 사용 안됨
// #0000806: [M2EU] 수룡에게 무사(나한군) 탄환격 스킬 사용 안됨
extern bool IS_HUGE_RACE(unsigned int vnum);
if (IS_HUGE_RACE(pkInstReserved->GetRace())) // 거대 종족은 근접을 못함
if (IS_HUGE_RACE(pkInstReserved->GetRace())) // 거대 종족은 근접을 못함
{
fDistance -= 200.0f; // TEMP: 일단 하드 코딩 처리. 정석적으로는 바운드 스피어를 고려해야함
fDistance -= 200.0f; // TEMP: 일단 하드 코딩 처리. 정석적으로는 바운드 스피어를 고려해야함
}
if (fDistance < float(m_dwSkillRangeReserved))
{
// 접근 도중 Target 이 바뀌어 있을 수도 있다 - [levites]
// 접근 도중 Target 이 바뀌어 있을 수도 있다 - [levites]
SetTarget(m_dwVIDReserved);
if (__UseSkill(m_dwSkillSlotIndexReserved))
__ClearReservedAction();