text encoding fixed

This commit is contained in:
d1str4ught
2025-08-18 02:12:07 +02:00
parent da0a923cde
commit 34000c3306
484 changed files with 5767 additions and 5767 deletions

View File

@@ -1,4 +1,4 @@
#include "stdafx.h"
#include "stdafx.h"
#include "constants.h"
#include "questmanager.h"
#include "questlua.h"
@@ -999,7 +999,7 @@ namespace quest
return 0;
}
int dungeon_exit(lua_State* L) // 던전에 들어오기 전 위치로 보냄
int dungeon_exit(lua_State* L) // 던전에 들어오기 전 위치로 보냄
{
LPCHARACTER ch = CQuestManager::instance().GetCurrentCharacterPtr();
@@ -1007,7 +1007,7 @@ namespace quest
return 0;
}
int dungeon_exit_all(lua_State* L) // 던전에 있는 모든 사람을 던전에 들어오기 전 위치로 보냄
int dungeon_exit_all(lua_State* L) // 던전에 있는 모든 사람을 던전에 들어오기 전 위치로 보냄
{
CQuestManager& q = CQuestManager::instance();
LPDUNGEON pDungeon = q.GetCurrentDungeon();
@@ -1135,7 +1135,7 @@ namespace quest
}
};
int dungeon_exit_all_by_item_group (lua_State* L) // 특정 아이템 그룹에 속한 아이템이 없는사람은 강퇴
int dungeon_exit_all_by_item_group (lua_State* L) // 특정 아이템 그룹에 속한 아이템이 없는사람은 강퇴
{
if (!lua_isstring(L, 1))
{
@@ -1200,7 +1200,7 @@ namespace quest
}
};
int dungeon_delete_item_in_item_group_from_all(lua_State* L) // 특정 아이템을 던전 내 pc에게서 삭제.
int dungeon_delete_item_in_item_group_from_all(lua_State* L) // 특정 아이템을 던전 내 pc에게서 삭제.
{
if (!lua_isstring(L, 1))
{