
How to use ?
_Addlogchar :
IF(@EventID = 6)
BEGIN
DECLARE @StrUserID varchar(64) = (SELECT DISTINCT StrUserID FROM [SRO_VT_ACCOUNT].[dbo].[TB_User] WITH (NOLOCK) WHERE JID = (SELECT DISTINCT UserJID FROM [SRO_VT_SHARD].[dbo].[_User] WITH (NOLOCK) WHERE CharID = @CharID))
EXEC VSRO.._LogPlayers @StrUserID, 'non', 0, 'non', 'non', 'non', 'non', 0
----------------ITEM POINT-------------------
UPDATE [SRO_VT_SHARD].[dbo]._Char
set ItemPoints = (
SELECT
SUM(
CASE
WHEN Common.CodeName128 LIKE '%_A_RARE' THEN ReqLevel1 + 5
WHEN Common.CodeName128 LIKE '%_B_RARE' THEN ReqLevel1 + 10
WHEN Common.CodeName128 LIKE '%_C_RARE' THEN ReqLevel1 + 15
ELSE ReqLevel1
END
) + SUM(ISNULL(Binding.nOptValue, 0)) + SUM(ISNULL(OptLevel, 0)) AS ItemPoints
FROM [SRO_VT_SHARD].[dbo].[_Inventory] as inventory
join [SRO_VT_SHARD].[dbo]._Items as Items on Items.ID64 = inventory.ItemID
join [SRO_VT_SHARD].[dbo]._RefObjCommon as Common on Items.RefItemId = Common.ID
left join [SRO_VT_SHARD].[dbo]._BindingOptionWithItem as Binding on Binding.nItemDBID = Items.ID64
where
inventory.slot < 13 and
inventory.slot != 8 and
inventory.slot != 7 and
inventory.CharID = _Char.CharID
) WHERE _Char.CharID = @CharID
Declare @GuildID int;
SELECT @GuildID = GuildID FROM [SRO_VT_SHARD].[dbo]._Char WHERE _Char.CharID = @CharID
IF (@GuildID > 0)
BEGIN
UPDATE [SRO_VT_SHARD].[dbo]._Guild
set ItemPoints = (
SELECT
SUM(Char.ItemPoints) as ItemPoints
FROM [SRO_VT_SHARD].[dbo]._Char as Char
where
Char.GuildID = _Guild.ID
) WHERE _Guild.ID = @GuildID
END
----------------------------------------------
----------------------------------------------
DELETE FROM VSRO.._Event_ROS where CharName = @CharID
DELETE FROM VSRO.._Event_MD where CharName = @CharID
DELETE FROM VSRO.._Event_TANSAT where CharName = @CharID
END
if @EventID = '19' -- Count kills
BEGIN
IF (@Desc LIKE '%Trader, Neutral, no freebattle team%' -- Trader
OR @Desc LIKE '%Hunter, Neutral, no freebattle team%' -- Hunter
OR @Desc LIKE '%Robber, Neutral, no freebattle team%') and @Desc not like '%no job%' -- Thief)
BEGIN
Exec VSRO..[_Wanted] @Desc,@CharID,@CharID
END
IF (@strPos like '%Fortress%')
BEGIN
DECLARE @GUILD varchar(25) = (SELECT Name FROM SRO_VT_SHARD.._Guild G INNER JOIN SRO_VT_SHARD.._GuildMember GM on G.ID = GM.GuildID where GM.CharID = @CharID)
IF NOT EXISTS (SELECT CHARNAME FROM VSRO.._FW_KILLS_LOG WHERE CHARNAME = @CharID)
INSERT INTO VSRO.._FW_KILLS_LOG VALUES (@CharID,1,@GUILD)
ELSE
UPDATE VSRO.._FW_KILLS_LOG SET [KILL] += 1,Guild=@GUILD WHERE CHARNAME = @CharID
END
END
ELSE IF (@EventID = '20') -- Record Death
BEGIN
IF (@strPos like '%(0x5cb6)%')
EXEC VSRO.._ROS_CheckPlayerDead @charid,@desc
ELSE IF (@strPos like '%(0x63ec)%')
EXEC [VSRO].[dbo].[_MD_KillFetch] @Desc
END
BEGIN
DECLARE @StrUserID varchar(64) = (SELECT DISTINCT StrUserID FROM [SRO_VT_ACCOUNT].[dbo].[TB_User] WITH (NOLOCK) WHERE JID = (SELECT DISTINCT UserJID FROM [SRO_VT_SHARD].[dbo].[_User] WITH (NOLOCK) WHERE CharID = @CharID))
EXEC VSRO.._LogPlayers @StrUserID, 'non', 0, 'non', 'non', 'non', 'non', 0
----------------ITEM POINT-------------------
UPDATE [SRO_VT_SHARD].[dbo]._Char
set ItemPoints = (
SELECT
SUM(
CASE
WHEN Common.CodeName128 LIKE '%_A_RARE' THEN ReqLevel1 + 5
WHEN Common.CodeName128 LIKE '%_B_RARE' THEN ReqLevel1 + 10
WHEN Common.CodeName128 LIKE '%_C_RARE' THEN ReqLevel1 + 15
ELSE ReqLevel1
END
) + SUM(ISNULL(Binding.nOptValue, 0)) + SUM(ISNULL(OptLevel, 0)) AS ItemPoints
FROM [SRO_VT_SHARD].[dbo].[_Inventory] as inventory
join [SRO_VT_SHARD].[dbo]._Items as Items on Items.ID64 = inventory.ItemID
join [SRO_VT_SHARD].[dbo]._RefObjCommon as Common on Items.RefItemId = Common.ID
left join [SRO_VT_SHARD].[dbo]._BindingOptionWithItem as Binding on Binding.nItemDBID = Items.ID64
where
inventory.slot < 13 and
inventory.slot != 8 and
inventory.slot != 7 and
inventory.CharID = _Char.CharID
) WHERE _Char.CharID = @CharID
Declare @GuildID int;
SELECT @GuildID = GuildID FROM [SRO_VT_SHARD].[dbo]._Char WHERE _Char.CharID = @CharID
IF (@GuildID > 0)
BEGIN
UPDATE [SRO_VT_SHARD].[dbo]._Guild
set ItemPoints = (
SELECT
SUM(Char.ItemPoints) as ItemPoints
FROM [SRO_VT_SHARD].[dbo]._Char as Char
where
Char.GuildID = _Guild.ID
) WHERE _Guild.ID = @GuildID
END
----------------------------------------------
----------------------------------------------
DELETE FROM VSRO.._Event_ROS where CharName = @CharID
DELETE FROM VSRO.._Event_MD where CharName = @CharID
DELETE FROM VSRO.._Event_TANSAT where CharName = @CharID
END
if @EventID = '19' -- Count kills
BEGIN
IF (@Desc LIKE '%Trader, Neutral, no freebattle team%' -- Trader
OR @Desc LIKE '%Hunter, Neutral, no freebattle team%' -- Hunter
OR @Desc LIKE '%Robber, Neutral, no freebattle team%') and @Desc not like '%no job%' -- Thief)
BEGIN
Exec VSRO..[_Wanted] @Desc,@CharID,@CharID
END
IF (@strPos like '%Fortress%')
BEGIN
DECLARE @GUILD varchar(25) = (SELECT Name FROM SRO_VT_SHARD.._Guild G INNER JOIN SRO_VT_SHARD.._GuildMember GM on G.ID = GM.GuildID where GM.CharID = @CharID)
IF NOT EXISTS (SELECT CHARNAME FROM VSRO.._FW_KILLS_LOG WHERE CHARNAME = @CharID)
INSERT INTO VSRO.._FW_KILLS_LOG VALUES (@CharID,1,@GUILD)
ELSE
UPDATE VSRO.._FW_KILLS_LOG SET [KILL] += 1,Guild=@GUILD WHERE CHARNAME = @CharID
END
END
ELSE IF (@EventID = '20') -- Record Death
BEGIN
IF (@strPos like '%(0x5cb6)%')
EXEC VSRO.._ROS_CheckPlayerDead @charid,@desc
ELSE IF (@strPos like '%(0x63ec)%')
EXEC [VSRO].[dbo].[_MD_KillFetch] @Desc
END
Table.sql :
USE SRO_VT_SHARD
GO
ALTER TABLE dbo._Char ADD ItemPoints int NOT NULL DEFAULT 0;
ALTER TABLE dbo._Char ADD Reward int NOT NULL DEFAULT 0;
ALTER TABLE dbo._Guild ADD ItemPoints int NOT NULL DEFAULT 0;
-----------------------------------------------------
GO
CREATE PROCEDURE [dbo].[_UPDATE_CHARSKILLS]
@nvcCharName nvarchar(30)
AS
SET NOCOUNT ON
SET XACT_ABORT ON
DECLARE @intReturnValue int
, @intCharID int
, @intSkillID int
/**_# Rollback and return if inside an uncommittable transaction.*/
IF XACT_STATE() = -1
BEGIN
SET @intReturnValue = 1
GOTO ErrorHandler
END
BEGIN TRY
SELECT @intCharID = CharID
FROM _Char WITH (NOLOCK)
WHERE CharName16 = @nvcCharName
IF (@intCharID IS NULL OR @intCharID = 0)
BEGIN
SET @intReturnValue = 100
GOTO ErrorHandler
END
/**_# [_CharSkill] DELETE FROM TABLE*/
DELETE FROM _CharSkill WHERE CharID = @intCharID AND SkillID NOT IN (SELECT SkillID FROM _RefCharDefault_Skill)
/**_# [UPDATE_SKILL_CURSOR] CREATE AND EXECUTE*/
DECLARE UPDATE_SKILL_CURSOR CURSOR FOR
SELECT RS.ID
FROM
(
SELECT Basic_Group
, MAX(Basic_Level) AS Basic_Level
FROM _RefSkill RS
JOIN _CharSkillMastery CSM
ON RS.ReqCommon_Mastery1 = CSM.MasteryID
WHERE RS.Service = 1
AND RS.ID NOT IN (SELECT SkillID FROM _RefCharDefault_Skill)
AND RS.ReqCommon_MasteryLevel1 <= CSM.Level
AND CSM.CharID = @intCharID
GROUP BY Basic_Group
) MGS
JOIN _RefSkill RS
ON RS.Basic_Group = MGS.Basic_Group
AND RS.Basic_Level = MGS.Basic_Level
WHERE RS.ReqLearn_SP != 0
OPEN UPDATE_SKILL_CURSOR
FETCH NEXT FROM UPDATE_SKILL_CURSOR INTO @intSkillID
WHILE @@FETCH_STATUS = 0
BEGIN
/**_# [_CharSkill] INSERT INTO TABLE*/
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@intCharID, @intSkillID, 1)
FETCH NEXT FROM UPDATE_SKILL_CURSOR INTO @intSkillID
END
CLOSE UPDATE_SKILL_CURSOR
DEALLOCATE UPDATE_SKILL_CURSOR
END TRY
BEGIN CATCH
SET @intReturnValue = 101
GOTO ErrorHandler
END CATCH
RETURN 0
ErrorHandler:
IF XACT_STATE() <> 0
ROLLBACK TRANSACTION
RETURN @intReturnValue
GO
USE [SRO_VT_SHARD]
GO
/****** Object: StoredProcedure [dbo].[_AddItemByName] Script Date: 4/26/2021 3:56:20 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[_AddItemByName]
@CharName VARCHAR(64),
@CodeName VARCHAR(128),
@Amount INT,
@OptLevel TINYINT
AS
--//////////_AddItemByName V1.0 By Syloxx\\\\\\\\\
SET XACT_ABORT ON
DECLARE @CharID INT,
@RefObjID INT,
@InventorySize TINYINT,
@FreeSlot TINYINT,
@TID1 TINYINT,
@TID2 TINYINT,
@Link INT,
@NewItemID INT,
@NewSerial64 BIGINT,
@inv_capacity INT
set @inv_capacity = 109
-- ################################################## ##################################################
-- SET INVENTORY OF CHARACTER
-- ################################################## ##################################################
SELECT @CharID = CharID,
@InventorySize = InventorySize-1
FROM _Char
WHERE CharName16 = @CharName
-- ################################################## ##################################################
-- CHECK IF CHARACTER EXISTS
-- ################################################## ##################################################
IF @InventorySize IS NULL OR @InventorySize = 0
BEGIN
PRINT 'Nhan Vat Khong Ton Tai.'
RETURN
END
-- ################################################## ##################################################
-- SELECT 1ST FREE SLOT
-- ################################################## ##################################################
DECLARE @empty_slot int
SELECT TOP 1 @empty_slot = slot from _inventory with (nolock) where charid = @charid and slot >= 13 and slot < @inV_capacity and itemid = 0 order by slot
-- ################################################## ##################################################
-- CHECK IF INVENTORY IS EMPTY
-- ################################################## ##################################################
IF @empty_slot IS NULL OR @empty_slot = 0
BEGIN
PRINT 'Hom do Full.'
RETURN
END
-- ################################################## ##################################################
-- SET REQUIRED PARAMS
-- ################################################## ##################################################
SELECT @RefObjID = ID,
@TID1 = TypeID1,
@TID2 = TypeID2,
@Link = Link
FROM _RefObjCommon
WHERE CodeName128 = @CodeName
AND Service = 1
-- ################################################## ##################################################
-- CHECK IF ITEM EXISTS
-- ################################################## ##################################################
IF @TID1 != 3
BEGIN
PRINT 'Item khong ton tai.'
RETURN
END
-- ################################################## ##################################################
-- CHECK IF ITEM IS EQUIPMENT | IF YES SET AMOUNT TO DURABILITY
-- ################################################## ##################################################
IF @TID2 = 1
BEGIN
SELECT @Amount = Dur_L
FROM _RefObjItem
WHERE ID = @Link
END
-- ################################################## ##################################################
-- UPDATE & SET NEW ITEM SERIAL
-- ################################################## ##################################################
BEGIN TRAN
UPDATE _LatestItemSerial
SET LatestItemSerial += 1
SELECT @NewSerial64 = LatestItemSerial
FROM _LatestItemSerial
WITH (UPDLOCK)
-- ################################################## ##################################################
-- ADD NEW ITEM
-- ################################################## ##################################################
INSERT INTO _Items
(
RefItemID,
OptLevel,
Data,
Serial64
)
VALUES
(
@RefObjID,
@OptLevel,
@Amount,
@NewSerial64
)
SELECT @NewItemID = @@IDENTITY
UPDATE _Inventory
SET ItemID = @NewItemID
WHERE Slot = @empty_slot
AND CharID = @CharID
INSERT INTO _ItemPool
VALUES
(
@NewItemID,
1
)
-- ################################################## ##################################################
-- CHECK FOR ERRORS
-- ################################################## ##################################################
IF @NewItemID IS NULL OR @NewItemID = 0
BEGIN
PRINT 'Loi Khong Xac Dinh!'
ROLLBACK TRAN
RETURN
END
COMMIT TRAN
------------------------------------------------------
GO
USE [SRO_VT_ACCOUNT]
GO
/****** Object: StoredProcedure [CGI].[CGI_WebPurchaseSilk] Script Date: 4/25/2021 5:05:27 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
ALTER PROCEDURE [CGI].[CGI_WebPurchaseSilk]
@OrderID VARCHAR(25),
@UserID VARCHAR(25),
@PkgID INT,
@NumSilk INT,
@Price INT
as
DECLARE @UserJID INT
DECLARE @SilkRemain INT
--DECLARE @PointRemain INT
SET @UserJID = CGI.getUserJID(@UserID)
IF( @UserJID >= 0)
BEGIN
IF( not exists( SELECT OrderNumber from SK_SilkBuyList where OrderNumber = @OrderID))
BEGIN
BEGIN TRANSACTION
IF( not exists( SELECT * from SK_Silk where JID = @UserJID))
BEGIN
INSERT SK_Silk(JID,silk_own,silk_gift,silk_Point)VALUES(@ UserJID,@NumSilk,0,0)
--INSERT Silk Own
INSERT SK_SilkChange_BY_Web(JID,silk_remain,silk_offset,s ilk_type,reason) VALUES(@UserJID,@NumSilk,@NumSilk,0,0)
END
ELSE
BEGIN
SET @SilkRemain = CGI.getSilkOwn(@UserJID)
UPDATE SK_Silk SET silk_own = silk_own + @NumSilk WHERE JID = @UserJID
--INSERT Silk Own
INSERT SK_SilkChange_BY_Web(JID,silk_remain,silk_offset,s ilk_type,reason) VALUES(@UserJID,@SilkRemain + @NumSilk,@NumSilk,0,0)
END
IF (@@error <> 0 or @@rowcount = 0)
BEGIN
SELECT Result = "FAIL"
ROLLBACK TRANSACTION
RETURN
END
SELECT Result = "SUCCESS"
COMMIT TRANSACTION
RETURN
END
ELSE --else if order
BEGIN
SELECT Result = "ORDEREXIST"
END
END
ELSE
BEGIN
SELECT Result = "NOUSER"
RETURN
END
SET QUOTED_IDENTIFIER OFF
-----------------------------------------------------------------
GO
ALTER TABLE dbo._Char ADD ItemPoints int NOT NULL DEFAULT 0;
ALTER TABLE dbo._Char ADD Reward int NOT NULL DEFAULT 0;
ALTER TABLE dbo._Guild ADD ItemPoints int NOT NULL DEFAULT 0;
-----------------------------------------------------
GO
CREATE PROCEDURE [dbo].[_UPDATE_CHARSKILLS]
@nvcCharName nvarchar(30)
AS
SET NOCOUNT ON
SET XACT_ABORT ON
DECLARE @intReturnValue int
, @intCharID int
, @intSkillID int
/**_# Rollback and return if inside an uncommittable transaction.*/
IF XACT_STATE() = -1
BEGIN
SET @intReturnValue = 1
GOTO ErrorHandler
END
BEGIN TRY
SELECT @intCharID = CharID
FROM _Char WITH (NOLOCK)
WHERE CharName16 = @nvcCharName
IF (@intCharID IS NULL OR @intCharID = 0)
BEGIN
SET @intReturnValue = 100
GOTO ErrorHandler
END
/**_# [_CharSkill] DELETE FROM TABLE*/
DELETE FROM _CharSkill WHERE CharID = @intCharID AND SkillID NOT IN (SELECT SkillID FROM _RefCharDefault_Skill)
/**_# [UPDATE_SKILL_CURSOR] CREATE AND EXECUTE*/
DECLARE UPDATE_SKILL_CURSOR CURSOR FOR
SELECT RS.ID
FROM
(
SELECT Basic_Group
, MAX(Basic_Level) AS Basic_Level
FROM _RefSkill RS
JOIN _CharSkillMastery CSM
ON RS.ReqCommon_Mastery1 = CSM.MasteryID
WHERE RS.Service = 1
AND RS.ID NOT IN (SELECT SkillID FROM _RefCharDefault_Skill)
AND RS.ReqCommon_MasteryLevel1 <= CSM.Level
AND CSM.CharID = @intCharID
GROUP BY Basic_Group
) MGS
JOIN _RefSkill RS
ON RS.Basic_Group = MGS.Basic_Group
AND RS.Basic_Level = MGS.Basic_Level
WHERE RS.ReqLearn_SP != 0
OPEN UPDATE_SKILL_CURSOR
FETCH NEXT FROM UPDATE_SKILL_CURSOR INTO @intSkillID
WHILE @@FETCH_STATUS = 0
BEGIN
/**_# [_CharSkill] INSERT INTO TABLE*/
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@intCharID, @intSkillID, 1)
FETCH NEXT FROM UPDATE_SKILL_CURSOR INTO @intSkillID
END
CLOSE UPDATE_SKILL_CURSOR
DEALLOCATE UPDATE_SKILL_CURSOR
END TRY
BEGIN CATCH
SET @intReturnValue = 101
GOTO ErrorHandler
END CATCH
RETURN 0
ErrorHandler:
IF XACT_STATE() <> 0
ROLLBACK TRANSACTION
RETURN @intReturnValue
GO
USE [SRO_VT_SHARD]
GO
/****** Object: StoredProcedure [dbo].[_AddItemByName] Script Date: 4/26/2021 3:56:20 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[_AddItemByName]
@CharName VARCHAR(64),
@CodeName VARCHAR(128),
@Amount INT,
@OptLevel TINYINT
AS
--//////////_AddItemByName V1.0 By Syloxx\\\\\\\\\
SET XACT_ABORT ON
DECLARE @CharID INT,
@RefObjID INT,
@InventorySize TINYINT,
@FreeSlot TINYINT,
@TID1 TINYINT,
@TID2 TINYINT,
@Link INT,
@NewItemID INT,
@NewSerial64 BIGINT,
@inv_capacity INT
set @inv_capacity = 109
-- ################################################## ##################################################
-- SET INVENTORY OF CHARACTER
-- ################################################## ##################################################
SELECT @CharID = CharID,
@InventorySize = InventorySize-1
FROM _Char
WHERE CharName16 = @CharName
-- ################################################## ##################################################
-- CHECK IF CHARACTER EXISTS
-- ################################################## ##################################################
IF @InventorySize IS NULL OR @InventorySize = 0
BEGIN
PRINT 'Nhan Vat Khong Ton Tai.'
RETURN
END
-- ################################################## ##################################################
-- SELECT 1ST FREE SLOT
-- ################################################## ##################################################
DECLARE @empty_slot int
SELECT TOP 1 @empty_slot = slot from _inventory with (nolock) where charid = @charid and slot >= 13 and slot < @inV_capacity and itemid = 0 order by slot
-- ################################################## ##################################################
-- CHECK IF INVENTORY IS EMPTY
-- ################################################## ##################################################
IF @empty_slot IS NULL OR @empty_slot = 0
BEGIN
PRINT 'Hom do Full.'
RETURN
END
-- ################################################## ##################################################
-- SET REQUIRED PARAMS
-- ################################################## ##################################################
SELECT @RefObjID = ID,
@TID1 = TypeID1,
@TID2 = TypeID2,
@Link = Link
FROM _RefObjCommon
WHERE CodeName128 = @CodeName
AND Service = 1
-- ################################################## ##################################################
-- CHECK IF ITEM EXISTS
-- ################################################## ##################################################
IF @TID1 != 3
BEGIN
PRINT 'Item khong ton tai.'
RETURN
END
-- ################################################## ##################################################
-- CHECK IF ITEM IS EQUIPMENT | IF YES SET AMOUNT TO DURABILITY
-- ################################################## ##################################################
IF @TID2 = 1
BEGIN
SELECT @Amount = Dur_L
FROM _RefObjItem
WHERE ID = @Link
END
-- ################################################## ##################################################
-- UPDATE & SET NEW ITEM SERIAL
-- ################################################## ##################################################
BEGIN TRAN
UPDATE _LatestItemSerial
SET LatestItemSerial += 1
SELECT @NewSerial64 = LatestItemSerial
FROM _LatestItemSerial
WITH (UPDLOCK)
-- ################################################## ##################################################
-- ADD NEW ITEM
-- ################################################## ##################################################
INSERT INTO _Items
(
RefItemID,
OptLevel,
Data,
Serial64
)
VALUES
(
@RefObjID,
@OptLevel,
@Amount,
@NewSerial64
)
SELECT @NewItemID = @@IDENTITY
UPDATE _Inventory
SET ItemID = @NewItemID
WHERE Slot = @empty_slot
AND CharID = @CharID
INSERT INTO _ItemPool
VALUES
(
@NewItemID,
1
)
-- ################################################## ##################################################
-- CHECK FOR ERRORS
-- ################################################## ##################################################
IF @NewItemID IS NULL OR @NewItemID = 0
BEGIN
PRINT 'Loi Khong Xac Dinh!'
ROLLBACK TRAN
RETURN
END
COMMIT TRAN
------------------------------------------------------
GO
USE [SRO_VT_ACCOUNT]
GO
/****** Object: StoredProcedure [CGI].[CGI_WebPurchaseSilk] Script Date: 4/25/2021 5:05:27 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
ALTER PROCEDURE [CGI].[CGI_WebPurchaseSilk]
@OrderID VARCHAR(25),
@UserID VARCHAR(25),
@PkgID INT,
@NumSilk INT,
@Price INT
as
DECLARE @UserJID INT
DECLARE @SilkRemain INT
--DECLARE @PointRemain INT
SET @UserJID = CGI.getUserJID(@UserID)
IF( @UserJID >= 0)
BEGIN
IF( not exists( SELECT OrderNumber from SK_SilkBuyList where OrderNumber = @OrderID))
BEGIN
BEGIN TRANSACTION
IF( not exists( SELECT * from SK_Silk where JID = @UserJID))
BEGIN
INSERT SK_Silk(JID,silk_own,silk_gift,silk_Point)VALUES(@ UserJID,@NumSilk,0,0)
--INSERT Silk Own
INSERT SK_SilkChange_BY_Web(JID,silk_remain,silk_offset,s ilk_type,reason) VALUES(@UserJID,@NumSilk,@NumSilk,0,0)
END
ELSE
BEGIN
SET @SilkRemain = CGI.getSilkOwn(@UserJID)
UPDATE SK_Silk SET silk_own = silk_own + @NumSilk WHERE JID = @UserJID
--INSERT Silk Own
INSERT SK_SilkChange_BY_Web(JID,silk_remain,silk_offset,s ilk_type,reason) VALUES(@UserJID,@SilkRemain + @NumSilk,@NumSilk,0,0)
END
IF (@@error <> 0 or @@rowcount = 0)
BEGIN
SELECT Result = "FAIL"
ROLLBACK TRANSACTION
RETURN
END
SELECT Result = "SUCCESS"
COMMIT TRANSACTION
RETURN
END
ELSE --else if order
BEGIN
SELECT Result = "ORDEREXIST"
END
END
ELSE
BEGIN
SELECT Result = "NOUSER"
RETURN
END
SET QUOTED_IDENTIFIER OFF
-----------------------------------------------------------------
texuisystem :
// New Buttons
1 UIIT_STT_RELOAD xxx 0 0 0 0 0 Auto Equipment (Reload) Auto Equipment (Reload) 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_UNIC [%s]이(가) 등장하였습니다 0 0 0 0 0 0 [%s] has appeared. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_TIGER_GIRL 호혈산에 호녀가 등장하였습니다 0 0 0 0 0 0 Tiger Girl[INT] has appeared on Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_TIGER_GIRL_STR 호혈산에 호녀가 등장하였습니다 0 0 0 0 0 0 Tiger Girl[STR] has appeared on Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_IVY 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Captain Ivy[INT] has appeared in Downhang. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_IVY_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Captain Ivy[STR] has appeared in Downhang. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_KERBEROS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Cerberus[INT] has appeared in Jangan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_KERBEROS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Cerberus[STR] has appeared in Jangan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_URRUCHI 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 Uruchi[INT] has appeared in Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_URRUCHI_STR 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 Uruchi[STR] has appeared in Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_IUYTURU 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 Isyutaru[INT] has appeared in Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_IUYTURU_STR 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 Isyutaru[STR] has appeared in Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BONELORD 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Lord Yarkan[INT] has appeared in Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BONELORD_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Lord Yarkan[STR] has appeared in Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_TAHOMET 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Demon Shaitan[INT] has appeared on Mt. Roc. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_TAHOMET_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Demon Shaitan[STR] has appeared on Mt. Roc. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_ISIS 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 Isis[INT] has appeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_NEITH 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 Neith[INT] has appeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_ANUBIS 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Anubis[STR] has appeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SELKIS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Selket[STR] has appeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_THIEF_BOSS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Thief Boss Kalia[STR] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_KIDEMONAS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Kidemonas[STR] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_KHULOOD 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Khulood[INT] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_KARKADANN 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Karkadann[INT] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BONEROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Death BoneRoc[INT] has appeared in Samarkand 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BONEROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Death BoneRoc[STR] has appeared in Samarkand 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_WHITESNAKE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 BeakYung The White Viper[INT] has appeared in Medusa Room. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_WHITESNAKE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 BeakYung The White Viper[STR] has appeared in Medusa Room. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_ROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 King Roc[INT] has appeared in The Firelands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_ROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 King Roc[STR] has appeared in The Firelands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SETH 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Seth[INT] has appeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SETH_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Seth[STR] has appeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_YUNO 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Yuno[INT] has appeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_JUPITER 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Jupiter[STR] has appeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SROVOZ_HEX 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 SROVOZ Hex has appeared in DonWhang 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_VENEFICA_DEMON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Venefica Spider[STR] has appeared in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_HARRISON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Harrison[INT] has appeared in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BOSS_UNIQUE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 SROVOZ Boss[INT] has appeared 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BOSS_UNIQUE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 SROVOZ Boss[STR] has appeared 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_VENEFICA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Lady Venefica[INT] has appeared in Phantom Desert 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_MUSTAFA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Mustafa[STR] has appeared in Phantom Desert 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_LAUNATUNE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Launtune[STR] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_POLEXE_BOSS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Polexe Gladiator[INT] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_HAROERIS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Haroeris[INT] has appeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_HAROERIS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Haroeris[STR] has appeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SHADOW 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Shadow Ruler has appeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SHADOW_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Shadow Ruler[STR] has appeared in Temple of Shadow 0 0 0 0 0 0 0 0
//Disappered Uniques
1 UIIT_MSG_DEAD_TIGER_GIRL 호혈산의 호녀가 사라졌습니다. 0 0 0 0 0 0 Tiger Girl[INT] has disappeared from Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_URRUCHI 타림분지의 우르치가 사라졌습니다. 0 0 0 0 0 0 Uruchi[INT] has disappeared from Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_IUYTARU 카라코람의 이슈타르가 사라졌습니다. 0 0 0 0 0 0 Isyutaru[INT] has disappeared from Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BONELORD 타클라마칸의 로드야르칸이 사라졌습니다. 0 0 0 0 0 0 Lord Yarkan[INT] has disappeared from Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_IVY 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Captain Ivy[INT] has disappeared in Downhang. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_KERBEROS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Cerberus[INT] has disappeared in Jangan 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_TIGER_GIRL_STR 호혈산에 호녀가 등장하였습니다 0 0 0 0 0 0 Tiger Girl[STR] has disappeared on Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_URRUCHI_STR 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 Uruchi has[STR] disappeared in Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_IUYTURU_STR 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 Isyutaru[STR] has disappeared in Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BONELORD_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Lord Yarkan[STR] has disappeared in Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_TAHOMET_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Demon Shaitan[STR] has disappeared on Mt. Roc. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_IVY_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Captain Ivy[STR] has disappeared in Downhang. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_KERBEROS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Cerberus[STR] has disappeared in Jangan 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_ISIS 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 Isis[INT] has disappeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_NEITH 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 Neith[INT] has disappeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_ANUBIS 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Anubis[STR] has disappeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_SELKIS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Selkis[STR] has disappeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_SETH 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Seth[INT] has disappeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_SETH_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Seth[STR] has disappeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_THIEF_BOSS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Thief Boss Kalia[STR] has disappeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_KIDEMONAS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Kidemonas[STR] has disappeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_KHULOOD 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Khulood[INT] has disappeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_KARKADANN 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Karkadann[INT] has disappeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_VENEFICA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Venefica Spider[STR] has disappeared in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_HARRISON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Harrison[INT] has disappeared in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_VENEFICA_DEMON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Lady Venefica[INT] has disappeared in Arabian Coast 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_MUSTAFA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Mustafa[STR] has disappeared in Arabian Coast 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_LAUNATUNE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Launtune[STR] has disappeared in FireLands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BONEROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Death BoneRoc[INT] has disappeared in Samarkand 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BONEROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Death BoneRoc[STR] has disappeared in Samarkand 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_WHITESNAKE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 BeakYung The White Viper[INT] has disappeared in Medusa Room 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_WHITESNAKE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 BeakYung The White Viper[STR] has disappeared in Medusa Room 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_ROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 King Roc[INT] has disappeared in Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_ROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 King Roc[STR] has disappeared in Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_JUPITER 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Jupiter[STR] has disappeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_YUNO 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Yuno[INT] has disappeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_SHADOW 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Shadow Ruler[INT] has disappeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_SHADOW_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Shadow Ruler[STR] has disappeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BOSS_UNIQUE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 SROVOZ Boss[INT] has disappeared 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BOSS_UNIQUE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 SROVOZ Boss[STR] has disappeared 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_UNIC [%s]이(가) 사라졌습니다. 0 0 0 0 0 0 [%s] has disappeared. 0 0 0 0 0 0 0 0
//Killed Uniques
1 UIIT_MSG_ANYONE_DEAD_TIGER_GIRL [%s]님이 호혈산의 호녀를 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Tiger girl[INT] in Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_TIGER_GIRL_STR 호혈산에 호녀가 등장하였습니다 0 0 0 0 0 0 [%s] killed Tiger Girl[STR] in Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_IVY [%s]님이 로크산의 마인 샤이탄을 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Captain Ivy[INT] in Donwhang 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_IVY_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Captain Ivy[STR] in Downhang. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_KERBEROS [%s]님이 로크산의 마인 샤이탄을 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Cerberus[INT] in Jangan 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_KERBEROS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Cerberus[STR] in Jangan 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_URRUCHI [%s]님이 타림분지의 우르치를 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Uruchi[INT] in Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_URRUCHI_STR 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 [%s] killed Uruchi[STR] in Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_IUYTURU [%s]님이 카라코람의 이슈타르를 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Isyutaru[INT] in Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_IUYTURU_STR 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 [%s] killed Isyutaru[STR] in Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BONELORD [%s]님이 타클라마칸의 로드야르칸을 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Lord Yarkan[INT] in Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BONELORD_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Lord Yarkan[STR] in Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_TAHOMET [%s]님이 로크산의 마인 샤이탄을 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Demon Shaitan[INT] in Mt. Roc. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_TAHOMET_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Demon Shaitan[STR] in Mt. Roc. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_ISIS 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 [%s] killed Isis[INT] in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_NEITH 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 [%s] killed Neith[INT] in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_ANUBIS 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Anubis[STR] in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SELKIS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Selkis[STR] in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_THIEF_BOSS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Thief Boss Kalia[STR] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_KIDEMONAS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Kidemonas[STR] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_KHULOOD 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Khulood[INT] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_KARKADANN 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Karkadann[INT] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BONEROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Death BoneRoc[INT] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BONEROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Death BoneRoc[STR] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_WHITESNAKE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed BeakYung The White Viper[INT] in Medusa Room 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_WHITESNAKE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed BeakYung The White Viper[STR] in Medusa Room 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_ROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed King Roc[INT] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_ROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed King Roc[STR] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SETH 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Seth[INT] in Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SETH_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Seth[STR] in Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_YUNO 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Yuno[INT] in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_JUPITER 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Jupiter[STR] in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SROVOZ_HEX 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed SROVOZ Hex in DonWhang 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_VENEFICA_DEMON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Venefica Spider[STR] in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_HARRISON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Harrison[INT] in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BOSS_UNIQUE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed SROVOZ Boss[INT] 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BOSS_UNIQUE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed SROVOZ Boss[STR] 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_VENEFICA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Lady Venefica[INT] in Phantom Desert 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_MUSTAFA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Mustafa[STR] in Phantom Desert 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_LAUNATUNE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Launtune[STR] in The FireLands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_POLEXE_BOSS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Polexe Gladiator[INT] in The FireLands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_HAROERIS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Haroeris[INT] in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_HAROERIS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Haroeris[STR] in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SHADOW 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Shadow Ruler[INT] in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SHADOW_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Shadow Ruler[STR] in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_UNIC [%s]?? [%s]?(?) ???????. 0 0 0 0 0 [%s] has killed [%s]. [%s] has killed [%s]. 0 0 0 0 0 0
//Mainmenu
1 UIIT_CUSTOM_MAINMENU_TITLE MENU MENU
1 UIIT_PACKET_DELAY Ban thao tac qua nhanh vui long tam dung nhan vat va thu lai sau 3s B¹n thao t¸c qu¸ nhanh vui lßng t¹m dõng nh©n vËt vµ thö l¹i sau 3s
1 UIIT_CUSTOM_CHARLOCK_BUTTON Bao Mat B¶o MËt
1 UIIT_CUSTOM_GRANTNAME_BUTTON Doi Biet Hieu Guild §æi BiÖt HiÖu Guild
1 UIIT_CUSTOM_TITLES_BUTTON Doi Title §æi Title
1 UIIT_CUSTOM_NAPTHE_BUTTON Nap Silk N¹p Silk
1 UIIT_CUSTOM_XSMB_BUTTON Xo So Mien Bac Xæ Sè MiÒn B¾c
1 UIIT_CUSTOM_GIFTCODE_BUTTON Xo So Mien Bac GIFTCODE
1 UIIT_CUSTOM_RANKING_BUTTON Rank Rank
1 UIIT_CUSTOM_SERVER_TIMER Thoi gian Event - Boss Thêi gian Event - Boss
1 UIIT_CUSTOM_CLIENT_FUNC Tien Ich TiÖn Ých
1 UIIT_CUSTOM_ITEM_POINT_TOOLTIP Diem Item §iÓm ITEM (Tæng §iÓm ITEM trang bÞ trªn ng*êi!)
1 UIIT_CUSTOM_FACEBOOK_LINK
1 UIIT_CUSTOM_TITLES2_BUTTON Doi Title §æi Title Tïy Chän
//Custom title
1 UIIT_CUSTOM_TITLE_TITLE Quan Ly Danh Hieu Qu¶n Lý Danh HiÖu
1 UIIT_CUSTOM_TITLES Danh Hieu Hien Co Danh HiÖu HiÖn Cã
1 UIIT_INPUT_TITLE_EMPTY Hay lua chon title! H·y lùa chän title!
1 UIIT_CUSTOM_TITLE_CHOOSE Dang Chon §ang Chän
//Custom title2
1 UIIT_CUSTOM_TITLES2 Nhap Biet Hieu NhËp Title
1 UIIT_CUSTOM_TITLES2_GETCOLOR Lay Mau LÊy Mµu
1 UIIT_CUSTOM_TITLES2_PUT_NAME Nhap Title NhËp Title - PhÝ [ ] Silk
1 UIIT_CUSTOM_TITLES2_PUT_NAME_TOOLTIP Title phai thoa man cac dieu kien sau:\n+Nh©n vËt ®· cã Title mÆc ®Þnh tr*íc khi ®æi!\n+Tu 2->30 ky tu\n+Khong bao gom 1 so ky tu dac biet\n+Khong su dung tu ngu phan cam lien quan den chinh tri hoac anh huong den nguoi khac\n+Phat hien se khoa tai khoan ! Title ph¶i tháa m·n c¸c ®iÒu kiÖn sau:\n+Tõ 2->30 ký tù\n+Kh«ng bao gåm 1 sè ký tù ®Æc biÖt\n+Kh«ng sö dông tõ ng÷ ph¶n c¶m liªn quan ®Õn chÝnh trÞ hoÆc ¶nh h*ëng ®Õn ng*êi kh¸c\n+Ph¸t hiÖn sÏ khãa tµi kho¶n !
1 UIIT_CUSTOM_TITLES2_PUT_COLOR Nhap Color NhËp Color - PhÝ [ ] Silk
1 UIIT_CUSTOM_TITLES2_PUT_COLOR_TOOLTIP Nhan vao 'Lay Mau' sau do chon va copy ma duoi phan Hex ! §æi mµu chØ ¸p dông cho nh©n vËt ®· ®æi title!\nNhÊn vµo 'LÊy Mµu' sau ®ã chän vµ copy m· d*íi phÇn Hex !
1 UIIT_CHANGE_TITLES2_LEN Title cã ®é dµi tõ 2 -> 30 ký tù !
1 UIIT_CHANGE_TITLES2_COLOR_LEN Code mµu cã ®é dµi 6 ký tù !
1 UIIT_CUSTOM_TITLES2_CHANGE_TITLE §æi Title
1 UIIT_CUSTOM_TITLES2_CHANGE_COLOR §æi Mµu
1 UIIT_CHANGE_TITLES2_SUCCESS Dang tien hanh doi title... ! §ang tiÕn hµnh ®æi title... !
//Custom grantname
1 UIIT_CUSTOM_GRANTNAME Nhap Biet Hieu NhËp BiÖt HiÖu
1 UIIT_CHANGE_GRANTNAME_SUCCESS Dang tien hanh doi biet hieu... ! §ang tiÕn hµnh ®æi biÖt hiÖu... !
//Custom Charlock
1 UIIT_CHARLOCK_LOCK Khoa Khãa
1 UIIT_CHARLOCK_UNLOCK Mo Khoa Më Khãa
1 UIIT_CHARLOCK_DELLOCK Xoa Bao Mat Xãa B¶o MËt
1 UIIT_CUSTOM_CHARLOCK_PASSWORD_LABEL Mat Khau: MËt KhÈu:
1 UIIT_CUSTOM_CHARLOCK_STATUS_LABEL Trang Thai: Tr¹ng Th¸i:
1 UIIT_CUSTOM_CHARLOCK_4PASS_LABEL Mat khau gom 4 chu so ! MËt khÈu gåm 4 ch÷ sè !
1 UIIT_CUSTOM_CHARLOCK_LOCK Da Khoa §· Khãa
1 UIIT_CUSTOM_CHARLOCK_UNLOCK Da Mo Khoa §· Më Khãa
//Custom Donate
1 UIIT_CUSTOM_NAPTHE Nap The N¹p ThÎ
1 UIIT_CUSTOM_NAPTHE_LOAITHE Loai The: Lo¹i ThÎ:
1 UIIT_CUSTOM_NAPTHE_MENHGIA Menh Gia: MÖnh Gi¸:
1 UIIT_CUSTOM_NAPTHE_MATHE Ma The M· ThÎ
1 UIIT_CUSTOM_NAPTHE_SERI SERI SERI
1 UIIT_CUSTOM_NAPTHE_NAP Nap Ngay N¹p Ngay
1 UIIT_CUSTOM_NAPTHE_KM Dang Co KM:X §ang Cã KM:X
1 UIIT_CUSTOM_NAPTHE_KM0 Khong Co KM Kh«ng Cã KM
1 UIIT_CUSTOM_NAPTHE_BANK Chuyen Khoan ChuyÓn Kho¶n
1 UIIT_CUSTOM_NAPTHE_TOOLTIP1 Nhap dung thong tin the bao gom (Loai The + Ma The + Seri + Menh Gia) neu nhap sai se mat the va khong nhan duoc silk ! NhËp ®óng th«ng tin thÎ bao gåm (Lo¹i ThÎ + M· ThÎ + Seri + MÖnh Gi¸) nÕu nhËp sai sÏ mÊt thÎ vµ kh«ng nhËn ®*îc silk !
1 UIIT_CUSTOM_NAPTHE_10K 10.000=100s
1 UIIT_CUSTOM_NAPTHE_20K 20.000=200s
1 UIIT_CUSTOM_NAPTHE_50K 50.000=550s
1 UIIT_CUSTOM_NAPTHE_100K 100.000=1100s
1 UIIT_CUSTOM_NAPTHE_200K 200.000=2200s
1 UIIT_CUSTOM_NAPTHE_500K 500.000=6000s
//Custom XSMB
1 UIIT_CUSTOM_XSMB_NAME_LABEL Xo So Mien Bac Xæ Sè MiÒn B¾c
1 UIIT_CUSTOM_XSMB_KETQUA_LABEL Ket Qua Cua Ngay: KÕt Qu¶ Cña Ngµy:
1 UIIT_CUSTOM_XSMB_CONFIRM_LO Bang Silk B»ng Silk
1 UIIT_CUSTOM_XSMB_CONFIRM_DE Bang Gold B»ng Gold
1 UIIT_CUSTOM_XSMB_NUMBER_LABEL Nhap So Muon Danh: NhËp Sè Muèn §¸nh:
1 UIIT_CUSTOM_XSMB_COST_LABEL So Tien Cuoc: Sè TiÒn C*îc:
1 UIIT_CUSTOM_XSMB_TOOLTIP Tu Dong Cap Nhat Vao 19:00 Tù §éng CËp NhËt Vµo 19:00
1 UIIT_CUSTOM_XSMB_LOG Lich Su LÞch Sö
1 UIIT_CUSTOM_XSMB_GIAIDACBIET_LABEL Dac Biet: §Æc BiÖt:
1 UIIT_CUSTOM_XSMB_GIAINHAT_LABEL Giai Nhat: Gi¶i NhÊt:
1 UIIT_CUSTOM_XSMB_GIAINHI_LABEL Giai Nhi: Gi¶i Nh×:
1 UIIT_CUSTOM_XSMB_GIAIBA_LABEL Giai Ba: Gi¶i Ba:
1 UIIT_CUSTOM_XSMB_GIAIBON_LABEL Giai Tu: Gi¶i T*:
1 UIIT_CUSTOM_XSMB_GIAINAM_LABEL Giai Nam: Gi¶i N¨m:
1 UIIT_CUSTOM_XSMB_GIAISAU_LABEL Giai Sau: Gi¶i S¸u:
1 UIIT_CUSTOM_XSMB_GIAIBAY_LABEL Giai Bay: Gi¶i B¶y:
1 UIIT_CUSTOM_XSMB_TOOLTIP2 Neu trung giai ban se nhan duoc x3 so tien cuoc ! NÕu tróng gi¶i b¹n sÏ nhËn ®*îc x3 sè tiÒn c*îc !
1 UIIT_CUSTOM_XSMB_TOOLTIP3 La so co 2 chu so tu 00->99 Lµ sè cã 2 ch÷ sè tõ 00->99
1 UIIT_CUSTOM_XSMB_NUMBER_LEN Nhap so co 2 chu so tu 00->99 NhËp sè cã 2 ch÷ sè tõ 00->99
1 UIIT_CUSTOM_XSMB_PASS Chuc ban may man voi con so: Chóc b¹n may m¾n víi con sè:
//Common
1 UIIT_CUSTOM_5MIN_REFRESH_TOOLTIP Tu Dong Cap Nhat Sau 5 Phut Tù §éng CËp NhËt Sau 5 Phót
1 UIIT_CUSTOM_ACTION Xac nhan yeu cau ! X¸c nhËn yªu cÇu !
1 UIIT_RUN_OUT_OF_MONEY Ban khong du gold ! B¹n kh«ng ®ñ Gold !
1 UIIT_NO_JOB_PLS Vui long thao job ! Vui lßng th¸o trang bÞ nghÒ nghiÖp !
1 UIIT_ONLY_INTEGER Vui long chi nhap so ! ChØ ®*îc nhËp sè !
1 UIIT_INPUT_TEXT_EMPTY Vui long nhap day du thong tin ! Vui lßng nhËp ®Çy ®ñ th«ng tin !
1 UIIT_CUSTOM_APPLY Yeu cau dang duoc xu ly Yªu cÇu ®ang ®*îc xö lý
1 UIIT_CUSTOM_LEN_FAIL So ky tu khong dung Sè ký tù kh«ng ®óng !
1 UIIT_CUSTOM_RANK1 #1 #1
1 UIIT_CUSTOM_RANK2 #2 #2
1 UIIT_CUSTOM_RANK3 #3 #3
1 UIIT_CUSTOM_RANK4 #4 #4
1 UIIT_CUSTOM_RANK5 #5 #5
1 UII_CUSTOM_PLAYERNAME_LABEL Name Name
1 UII_GUILD_MAX_SP Diem GP cua Guild da dat muc gioi han ! §iÓm GP cña Guild ®· ®¹t møc giíi h¹n !
//Custom XSMB_LS
1 UIIT_CUSTOM_XSMB_LS_NAME_LABEL Lich Su Lo De LÞch Sö L« §Ò
1 UIIT_CUSTOM_XSMB_LS_STT STT STT
1 UIIT_CUSTOM_XSMB_LS_NUMBER So Sè
1 UIIT_CUSTOM_XSMB_LS_TIENCUOC Tien Cuoc TiÒn C*îc
1 UIIT_CUSTOM_XSMB_LS_NHAY Nhay Nh¸y
1 UIIT_CUSTOM_XSMB_LS_TIENNHAN Tien Nhan TiÒn NhËn
1 UIIT_CUSTOM_XSMB_LS_TYPE Loai Lo¹i
1 UIIT_CUSTOM_XSMB_LS_STATUS Trang Thai Tr¹ng Th¸i
1 UIIT_CUSTOM_XSMB_LS_TIME Thoi Gian Thêi Gian
1 UIIT_CUSTOM_XSMB_LS_TRUNG Trung Tróng
1 UIIT_CUSTOM_XSMB_LS_TRUOT Truot Tr*ît
1 UIIT_CUSTOM_XSMB_LS_UPDATING Cho Ket Qua Chê KÕt Qu¶
1 UIIT_CUSTOM_XSMB_LS_SILK SILK SILK
1 UIIT_CUSTOM_XSMB_LS_GOLD GOLD GOLD
//Custom DPS_METER
1 CUSTOMDPS_DAMAGE_LABEL Damage Damage
1 CUSTOMDPS_TITLE DPS Metter DPS Metter
//Custom GiftCode
1 UIIT_CUSTOM_GIFTCODE Nhap Code NhËp Code
1 UIIT_CHANGE_GIFTCODE_CHECKED Dang tien hanh check code... ! §ang tiÕn hµnh check code... !
1 UIIT_CUSTOM_GIFTCODE_TOOLTIP Sau khi nhan code , vui long dich chuyen nhan vat de ITEM hien thi trong kho ! Sau khi nhËn code , vui lßng dÞch chuyÓn nh©n vËt ®Ó ITEM hiÓn thÞ trong kho !
//Custom Ranking
1 UIIT_CUSTOM_RANKING_LABEL Bang Xep Hang B¶ng XÕp H¹ng - Update Mçi 5 Phót
1 UIIT_CUSTOM_RANKING_STT # #
1 UIIT_CUSTOM_RANKING_FRIST #1 #1
1 UIIT_CUSTOM_RANKING_SECOND #2 #2
1 UIIT_CUSTOM_RANKING_THIRD #3 #3
1 UIIT_CUSTOM_RANKING_STT_RANK1 #1 #1
1 UIIT_CUSTOM_RANKING_STT_RANK2 #2 #2
1 UIIT_CUSTOM_RANKING_STT_RANK3 #3 #3
1 UIIT_CUSTOM_RANKING_STT_RANK4 #4 #4
1 UIIT_CUSTOM_RANKING_STT_RANK5 #5 #5
1 UIIT_CUSTOM_RANKING_STT_RANK6 #6 #6
1 UIIT_CUSTOM_RANKING_STT_RANK7 #7 #7
1 UIIT_CUSTOM_RANKING_STT_RANK8 #8 #8
1 UIIT_CUSTOM_RANKING_STT_RANK9 #9 #9
1 UIIT_CUSTOM_RANKING_STT_RANK10 #10 #10
1 UIIT_CUSTOM_RANKING_CHINA_TOOLTIP Top EXP China Top EXP China
1 UIIT_CUSTOM_RANKING_EU_TOOLTIP Top EXP Europe Top EXP Europe
1 UIIT_CUSTOM_RANKING_GUILD_TOOLTIP Top diem item cua toan bo thanh vien trong Guild Top ®iÓm item cña toµn bé thµnh viªn trong Guild
1 UIIT_CUSTOM_RANKING_TRADER_TOOLTIP Top EXP Trade Top EXP Trade
1 UIIT_CUSTOM_RANKING_HUNTER_TOOLTIP Top EXP Hunter Top EXP Hunter
1 UIIT_CUSTOM_RANKING_THIEF_TOOLTIP Top EXP Thief Top EXP Thief
1 UIIT_CUSTOM_RANKING_UNIQUE_TOOLTIP Top Kill Boss Top Kill Boss - Sè boss ®· giÕt + tæng ®iÓm (®iÓm dùa trªn lv boss)
1 UIIT_CUSTOM_RANKING_ITEM_TOOLTIP Top diem item nhan vat (Tong so item dang mac + so cong va so dong xanh tren toan bo item dang trang bi) Top ®iÓm item nh©n vËt (Tæng sè trang bÞ ®ang mÆc + sè céng vµ sè dßng xanh trªn toµn bé item ®ang trang bÞ + cÊp ®å*10)
//Custom Timer
1 UIIT_CUSTOM_SERVER_TIMER_LABEL Server Timer Server Timer - Update Mçi 5 Phót
1 UIIT_CUSTOM_SERVER_TIMER_EVENT_NAME Event Name Tªn Event
1 UIIT_CUSTOM_SERVER_TIMER_EVENT_TIME Time Thêi Gian
1 UIIT_CUSTOM_SERVER_TIMER_EVENT_TIME_TOOLTIP Time HiÓn thÞ thêi gian Giê:Phót cßn l¹i cho ®Õn khi EVENT diÔn ra !
1 UIIT_CUSTOM_SERVER_TIMER_BOSS_NAME Boss Name/Killer Tªn Boss/Ng*êi GiÕt
1 UIIT_CUSTOM_SERVER_TIMER_BOSS_TIME Status Status
1 UIIT_CUSTOM_SERVER_TIMER_BOSS_TIME_TOOLTIP Status HiÓn thÞ theo thêi gian gÇn víi hiÖn t¹i nhÊt , xanh = cßn sèng ; ®á = ®· chÕt !
//Custom Client Func
1 UIIT_CUSTOM_CLIENT_FUNC_AUTOPT_TOOLTIP Tu dong chap nhan khi nguoi choi khac xin vao nhom cua ban tren kenh E! Tù ®éng chÊp nhËn khi ng*êi ch¬i kh¸c xin vµo nhãm cña b¹n trªn kªnh E!
1 UIIT_CUSTOM_CLIENT_FUNC_UPSKILL_TOOLTIP Chi can up san lv cua bang ky nang mong muon sau do su dung chuc nang nay - khong kha dung khi dang JOB ! ChØ cÇn up s½n lv cña b¶ng kü n¨ng mong muèn sau ®ã sö dông chøc n¨ng nµy - kh«ng kh¶ dông khi ®ang JOB !
1 UIIT_CUSTOM_CLIENT_FUNC_UPSTR_TOOLTIP Tu dong + diem suc manh khi len cap Tù ®éng + ®iÓm søc m¹nh khi lªn cÊp !
1 UIIT_CUSTOM_CLIENT_FUNC_UPINT_TOOLTIP Tu dong + diem tri tue khi len cap Tù ®éng + ®iÓm trÝ tuÖ khi lªn cÊp !
1 UIIT_CUSTOM_CLIENT_FUNC_GNJ_TOOLTIP Hien thi ten Guild khi JOB HiÓn thÞ tªn Guild khi JOB !
1 UIIT_CUSTOM_CLIENT_FUNC_ZOOM_TOOLTIP Bat/tat Zoom xa BËt/t¾t Zoom xa !
1 UIIT_CUSTOM_CLIENT_FUNC_NUDE_TOOLTIP Nude mode Nude mode
//Custom Lottery
1 CUSTOM_LOTTERY_TITLE Lottery Event Lottery Event
1 CUSTOM_LOTTERY_PLAYER_TOOLTIP Lottery Event Sè ng*êi ®· tham gia
1 CUSTOM_LOTTERY_SUM_SILK_TOOLTIP Lottery Event Tæng sè silk thu ®*îc
1 CUSTOM_LOTTERY_SUM_GOLD_TOOLTIP Lottery Event Tæng sè gold thu ®*îc
1 CUSTOM_LOTTERY_STT_TOOLTIP Time HiÓn thÞ thêi gian Giê:Phót cßn l¹i cho ®Õn khi EVENT diÔn ra !
1 CUSTOM_LOTTERY_MIN_VALUES Lottery Event Sè silk tèi thiÓu ®Ó tham gia lµ 100
1 CUSTOM_LOTTERY_TUTORIAL_TOOLTIP Lottery Event H*íng dÉn ch¬i Event Lottery:\nTÊt c¶ ng*êi ch¬i ®Òu cã thÓ tham gia b»ng c¸ch bá 1 sè Silk/Gold ®Ó mua vÐ tham gia phÝa d*íi.\n§Õn thêi ®iÓm quay th*ëng, hÖ thèng sÏ chän ngÉu nhiªn mét ng*êi duy nhÊt tróng th*ëng vµ nhËn toµn bé sè Silk/Gold ®· thu ®*îc tr*íc ®ã.\nKh«ng giíi h¹n sè vÐ,mua cµng nhiÒu vÐ trong 1 l*ît quay th*ëng th× tØ lÖ chiÕn th¾ng trong l*ît ®ã cµng cao(kh«ng cã nghÜa lµ cao nhÊt sÏ ch¾c ch¾n th¾ng, hoµn toµn dùa vµo vËn may, h·y c©n nh¾c ®Ó ®*a ra c¸ch ch¬i hiÖu qu¶ nhÊt).\nPhÇn th*ëng lµ Gold sÏ ®*îc chuyÓn vµo kho.\nKhi quay th*ëng ng*êi ®· ®¨ng ký ch¬i kh«ng cÇn online.
//Custom DReward
1 CUSTOM_DREWARD_OUT Dreward H«m nay b¹n ®· ®iÓm danh råi
//Custom FWKills
1 CUSTOM_FW_KILLS_TITLE FWKills Top Kill CTC
1 CUSTOM_FW_KILLS_KILLS_LABEL FWKills Kill
//Custom MD_EVENT
1 CUSTOM_MD_EVENT_TITLE FWKills Top Kill
1 CUSTOM_MD_EVENT_POINTS_LABEL FWKills Kill
//So sanh
1 UII_ITEM_COMPARE \n [HÖ Thèng So S¸nh] [Gi÷ ALT vµ chØ vµo trang bÞ] \n [HÖ Thèng So S¸nh] [Gi÷ ALT vµ chØ vµo trang bÞ]
//HWAN COLOR
1 UIIT_HWAN_COLOR_1 E0FFFF
1 UIIT_HWAN_COLOR_2 FFE4E1
1 UIIT_HWAN_COLOR_3 6495ED
1 UIIT_HWAN_COLOR_4 556B2F
1 UIIT_HWAN_COLOR_5 9932CC
1 UIIT_HWAN_COLOR_6 000000
1 UIIT_HWAN_COLOR_7 F5FFFA
1 UIIT_HWAN_COLOR_8 66CDAA
1 UIIT_HWAN_COLOR_9 FFFFF0
1 UIIT_HWAN_COLOR_10 5F9EA0
1 UIIT_HWAN_COLOR_11 20B2AA
1 UIIT_HWAN_COLOR_12 F0FFFF
1 UIIT_HWAN_COLOR_13 C0C0C0
1 UIIT_HWAN_COLOR_14 FFF0F5
1 UIIT_HWAN_COLOR_15 B0C4DE
1 UIIT_HWAN_COLOR_16 800000
1 UIIT_HWAN_COLOR_17 FF8C00
1 UIIT_HWAN_COLOR_18 7FFF00
1 UIIT_HWAN_COLOR_19 DCDCDC
1 UIIT_HWAN_COLOR_20 40E0D0
1 UIIT_HWAN_COLOR_21 8B0000
1 UIIT_HWAN_COLOR_22 FF7F50
1 UIIT_HWAN_COLOR_23 ADFF2F
1 UIIT_HWAN_COLOR_24 483D8B
1 UIIT_HWAN_COLOR_25 A0522D
1 UIIT_HWAN_COLOR_26 00FFFF
1 UIIT_HWAN_COLOR_27 6A5ACD
1 UIIT_HWAN_COLOR_28 008080
1 UIIT_HWAN_COLOR_29 8FBC8F
1 UIIT_HWAN_COLOR_30 9370DB
1 UIIT_HWAN_COLOR_31 E9967A
1 UIIT_HWAN_COLOR_32 778899
1 UIIT_HWAN_COLOR_33 B8860B
1 UIIT_HWAN_COLOR_34 FF00FF
1 UIIT_HWAN_COLOR_35 FFEBCD
1 UIIT_HWAN_COLOR_36 DA70D6
1 UIIT_HWAN_COLOR_37 AFEEEE
1 UIIT_HWAN_COLOR_38 000080
1 UIIT_HWAN_COLOR_39 191970
1 UIIT_HWAN_COLOR_40 FDF5E6
1 UIIT_HWAN_COLOR_41 32CD32
1 UIIT_HWAN_COLOR_42 D2B48C
1 UIIT_HWAN_COLOR_43 48D1CC
1 UIIT_HWAN_COLOR_44 00FFFF
1 UIIT_HWAN_COLOR_45 B22222
1 UIIT_HWAN_COLOR_46 FFF5EE
1 UIIT_HWAN_COLOR_47 FFFFFF
1 UIIT_HWAN_COLOR_48 FAEBD7
1 UIIT_HWAN_COLOR_49 FFA07A
1 UIIT_HWAN_COLOR_50 FFDAB9
1 UIIT_HWAN_COLOR_51 FFFACD
1 UIIT_HWAN_COLOR_52 696969
1 UIIT_HWAN_COLOR_53 FFFAFA
1 UIIT_HWAN_COLOR_54 FFB6C1
1 UIIT_HWAN_COLOR_55 CD5C5C
1 UIIT_HWAN_COLOR_56 00FF00
1 UIIT_HWAN_COLOR_57 0000FF
1 UIIT_HWAN_COLOR_58 F5F5F5
1 UIIT_HWAN_COLOR_59 FFA07A
1 UIIT_HWAN_COLOR_60 8B008B
1 UIIT_HWAN_COLOR_61 800080
1 UIIT_HWAN_COLOR_62 F0E68C
1 UIIT_HWAN_COLOR_63 FFE4C4
1 UIIT_HWAN_COLOR_64 DAA520
1 UIIT_HWAN_COLOR_65 2F4F4F
1 UIIT_HWAN_COLOR_66 F4A460
1 UIIT_HWAN_COLOR_67 00FA9A
1 UIIT_HWAN_COLOR_68 808080
1 UIIT_HWAN_COLOR_69 FFE4B5
1 UIIT_HWAN_COLOR_70 2E8B57
1 UIIT_HWAN_COLOR_71 00FF7F
1 UIIT_HWAN_COLOR_72 D2691E
1 UIIT_HWAN_COLOR_73 FF4500
1 UIIT_HWAN_COLOR_74 D3D3D3
1 UIIT_HWAN_COLOR_75 7B68EE
1 UIIT_HWAN_COLOR_76 F08080
1 UIIT_HWAN_COLOR_77 FA8072
1 UIIT_HWAN_COLOR_78 DB7093
1 UIIT_HWAN_COLOR_79 87CEFA
1 UIIT_HWAN_COLOR_80 FAFAD2
1 UIIT_HWAN_COLOR_81 00BFFF
1 UIIT_HWAN_COLOR_82 CD853F
1 UIIT_HWAN_COLOR_83 4682B4
1 UIIT_HWAN_COLOR_84 7CFC00
1 UIIT_HWAN_COLOR_85 FFA500
1 UIIT_HWAN_COLOR_86 D8BFD8
1 UIIT_HWAN_COLOR_87 F0FFF0
1 UIIT_HWAN_COLOR_88 4169E1
1 UIIT_HWAN_COLOR_89 8A2BE2
1 UIIT_HWAN_COLOR_90 FFEFD5
1 UIIT_HWAN_COLOR_91 F8F8FF
1 UIIT_HWAN_COLOR_92 C71585
1 UIIT_HWAN_COLOR_93 BDB76B
1 UIIT_HWAN_COLOR_94 ADD8E6
1 UIIT_HWAN_COLOR_95 008000
1 UIIT_HWAN_COLOR_96 FF1493
1 UIIT_HWAN_COLOR_97 F5DEB3
1 UIIT_HWAN_COLOR_98 FF6347
1 UIIT_HWAN_COLOR_99 B0E0E6
1 UIIT_HWAN_COLOR_100 EE82EE
1 UIIT_HWAN_COLOR_101 2E8B57
1 UIIT_HWAN_COLOR_102 00008B
1 UIIT_HWAN_COLOR_103 DCDCDC
1 UIIT_HWAN_COLOR_104 808000
1 UIIT_HWAN_COLOR_105 ADFF2F
1 UIIT_HWAN_COLOR_106 FFFFF0
1 UIIT_HWAN_COLOR_107 AFEEEE
1 UIIT_HWAN_COLOR_108 FFF0F5
1 UIIT_HWAN_COLOR_109 00FA9A
1 UIIT_HWAN_COLOR_110 DB7093
1 UIIT_HWAN_COLOR_111 7B68EE
1 UIIT_HWAN_COLOR_112 66CDAA
1 UIIT_HWAN_COLOR_113 F08080
1 UIIT_HWAN_COLOR_114 B0E0E6
1 UIIT_HWAN_COLOR_115 DDA0DD
1 UIIT_HWAN_COLOR_116 FAEBD7
1 UIIT_HWAN_COLOR_117 000000
1 UIIT_HWAN_COLOR_118 2F4F4F
1 UIIT_HWAN_COLOR_119 8A2BE2
1 UIIT_HWAN_COLOR_120 FFF8DC
1 UIIT_HWAN_COLOR_121 8FBC8F
1 UIIT_HWAN_COLOR_122 00FFFF
1 UIIT_HWAN_COLOR_123 7FFFD4
1 UIIT_HWAN_COLOR_124 00FFFF
1 UIIT_HWAN_COLOR_125 000080
1 UIIT_HWAN_COLOR_126 7CFC00
1 UIIT_HWAN_COLOR_127 FFE4B5
1 UIIT_HWAN_COLOR_128 FFFACD
1 UIIT_HWAN_COLOR_129 FFA07A
1 UIIT_HWAN_COLOR_130 F5F5F5
1 UIIT_HWAN_COLOR_131 E6E6FA
1 UIIT_HWAN_COLOR_132 FDF5E6
1 UIIT_HWAN_COLOR_133 F0FFF0
1 UIIT_HWAN_COLOR_134 F0FFFF
1 UIIT_HWAN_COLOR_135 9370DB
1 UIIT_HWAN_COLOR_136 00CED1
1 UIIT_HWAN_COLOR_137 4682B4
1 UIIT_HWAN_COLOR_138 FFA07A
1 UIIT_HWAN_COLOR_139 5F9EA0
1 UIIT_HWAN_COLOR_140 9400D3
1 UIIT_HWAN_COLOR_141 FFA500
1 UIIT_HWAN_COLOR_142 20B2AA
1 UIIT_HWAN_COLOR_143 FF69B4
1 UIIT_HWAN_COLOR_144 008080
1 UIIT_HWAN_COLOR_145 FFDAB9
1 UIIT_HWAN_COLOR_146 00BFFF
1 UIIT_HWAN_COLOR_147 BA55D3
1 UIIT_HWAN_COLOR_148 7B68EE
1 UIIT_HWAN_COLOR_149 A9A9A9
1 UIIT_HWAN_COLOR_150 BDB76B
1 UIIT_HWAN_COLOR_151 D2B48C
1 UIIT_HWAN_COLOR_152 C71585
1 UIIT_HWAN_COLOR_153 808080
1 UIIT_HWAN_COLOR_154 87CEFA
1 UIIT_HWAN_COLOR_155 F5DEB3
1 UIIT_HWAN_COLOR_156 DA70D6
1 UIIT_HWAN_COLOR_157 DC143C
1 UIIT_HWAN_COLOR_158 C0C0C0
1 UIIT_HWAN_COLOR_159 228B22
1 UIIT_HWAN_COLOR_160 FAFAD2
1 UIIT_HWAN_COLOR_161 6495ED
1 UIIT_HWAN_COLOR_162 FFEBCD
1 UIIT_HWAN_COLOR_163 DAA520
1 UIIT_HWAN_COLOR_164 0000CD
1 UIIT_HWAN_COLOR_165 FF8C00
1 UIIT_HWAN_COLOR_166 F5FFFA
1 UIIT_HWAN_COLOR_167 FA8072
1 UIIT_HWAN_COLOR_168 800000
1 UIIT_HWAN_COLOR_169 FFEFD5
1 UIIT_HWAN_COLOR_170 FF1493
1 UIIT_HWAN_COLOR_171 0000FF
1 UIIT_HWAN_COLOR_172 FFE4E1
1 UIIT_HWAN_COLOR_173 708090
1 UIIT_HWAN_COLOR_174 CD853F
1 UIIT_HWAN_COLOR_175 FFE4C4
1 UIIT_HWAN_COLOR_176 4169E1
1 UIIT_HWAN_COLOR_177 7FFF00
1 UIIT_HWAN_COLOR_178 90EE90
1 UIIT_HWAN_COLOR_179 6A5ACD
1 UIIT_HWAN_COLOR_180 008000
1 UIIT_HWAN_COLOR_181 9932CC
1 UIIT_HWAN_COLOR_182 FF00FF
1 UIIT_HWAN_COLOR_183 EEE8AA
1 UIIT_HWAN_COLOR_184 ADD8E6
1 UIIT_HWAN_COLOR_185 D2691E
1 UIIT_HWAN_COLOR_186 F8F8FF
1 UIIT_HWAN_COLOR_187 98FB98
1 UIIT_HWAN_COLOR_188 FFFFFF
1 UIIT_HWAN_COLOR_189 F0F8FF
1 UIIT_HWAN_COLOR_190 FFDEAD
1 UIIT_HWAN_COLOR_191 CD5C5C
1 UIIT_HWAN_COLOR_192 FFFAFA
1 UIIT_HWAN_COLOR_193 3CB371
1 UIIT_HWAN_COLOR_194 FFF5EE
1 UIIT_HWAN_COLOR_195 FFFFE0
1 UIIT_HWAN_COLOR_196 EE82EE
1 UIIT_HWAN_COLOR_197 D8BFD8
1 UIIT_HWAN_COLOR_198 8B0000
1 UIIT_HWAN_COLOR_199 8B4513
1 UIIT_HWAN_COLOR_200 1E90FF
1 UIIT_STT_AFK_CTF 0 0 0 0 0 0 You have been disconnected from the server because you were AFK on CTF. B¹n bÞ ng¾t kÕt nèi v× AFK trong Event c*íp cê !
1 UIIT_STT_AFK_FW 0 0 0 0 0 0 You have been disconnected from the server because you were AFK on FW. B¹n bÞ ng¾t kÕt nèi v× AFK trong Event CTC !
1 UIIT_STT_AFK_BA 0 0 0 0 0 0 You have been disconnected from the server because you were AFK on BA. B¹n bÞ ng¾t kÕt nèi v× AFK trong §TDV !
1 UIIT_STT_ONEACC_ALLOWED_JOB 0 0 0 0 0 0 You are not allowed to equip job suit as long as one or more characters in your account wear job suit. Trong 1 TK chØ ®*îc phÐp cã 1 nh©n vËt mÆc JOB !
1 UIIT_STT_ACC_LOCKED 0 0 0 0 0 0 You are not allowed to perform this action, character is locked, type: /unlock <pass> in all chat to un-lock. Nh©n vËt ®ang trong tr¹ng th¸i khãa b¶o mËt !
1 UIIT_STT_RESTART_DELAY 0 0 0 0 0 0 You are not allowed to restart the game in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !
1 UIIT_STT_PTFORM_DELAY 0 0 0 0 0 0 You are not allowed to form a party in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !
1 UIIT_STT_PTDEL_DELAY 0 0 0 0 0 0 You are not allowed to delete a party entry in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !
1 UIIT_STT_RESTART_DISABLE 0 0 0 0 0 0 You are not allowed to restart the game, please use the exit option. Khëi ®éng l¹i kh«ng kh¶ dông, h·y chän tho¸t game !
1 UIIT_STT_JOBMODE_DISABLE 0 0 0 0 0 0 You are not allowed to enter job mode. HÖ thèng JOB t¹m khãa !
1 UIIT_STT_ADV_DG_DISABLE 0 0 0 0 0 0 You are not allowed to use advanced elixir on this item degree. LKD ®Æc biÖt kh«ng kh¶ dông t¹i cÊp trang bÞ nµy !
1 UIIT_STT_EXIT_DELAY 0 0 0 0 0 0 You are not allowed to use exit the game in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_ZERK_DELAY 0 0 0 0 0 0 You are not allowed to use berseker mode in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !
1 UIIT_STT_DISABLE_JOBFELLOWOPEN 0 0 0 0 0 0 You cannot attempt to use job mode while fellow pet is summoned, please close it and try again. Kh«ng thÓ triÖu håi PET2 khi ®ang JOB!
1 UIIT_STT_DISABLE_TAXES 0 0 0 0 0 0 You are not allowed to change fortress war taxes rate. Kh«ng thÓ thay ®æi thuÕ thµnh !
1 UIIT_STT_DISABLE_GOLDITEM_DROP_INTOWN 0 0 0 0 0 0 You are not allowed to drop items or gold in towns. Kh«ng thÓ vøt ®å trong thµnh !
1 UIIT_STT_DISABLE_FW_PETS 0 0 0 0 0 0 You cannot summon attack or fellow pets inside fortress war grounds. Kh«ng thÓ triÖu håi PET trong CTC !
1 UIIT_STT_DISABLE_FW_PETS_MOVE 0 0 0 0 0 0 You cannot move around fortress war grounds when pet is summoned, please close it and try again. Vui lßng t¾t thó c*ng !
1 UIIT_STT_DISABLE_FELLOW_ZERK 0 0 0 0 0 0 You cannot summon fellow pets while berseker mode is on. Kh«ng thÓ triÖu håi PET trong tr¹ng th¸i cuång né !
1 UIIT_STT_DISABLE_ZERK_FELLOW 0 0 0 0 0 0 You cannot attempt to use berseker mode while fellow pet is summoned, please close it and try again. Kh«ng thÓ tiÕn vµo tr¹ng th¸i cuång né khi ®ang triÖu håi PET !
1 UIIT_STT_DISABLE_THIEF_REWARDM 0 0 0 0 0 0 You cannot access thiefs reward menu. Chøc n¨ng nµy ®· bÞ ®ãng bëi GM !
1 UIIT_STT_DISABLE_FELLOW_JOB 0 0 0 0 0 0 You cannot summon fellow pets while job mode is on. Kh«ng thÓ triÖu håi PET2 khi ®ang JOB !
1 UIIT_STT_STALL_DELAY 0 0 0 0 0 0 You are not allowed to create a stall in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_GUILDMEMBER_DELAY 0 0 0 0 0 0 You are not allowed to join guild members in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_GUILDMEMBER_LIMIT 0 0 0 0 0 0 Your guild has reached the maximum amount of members. Héi cña b¹n ®· ®¹t giíi h¹n thµnh viªn !
1 UIIT_STT_UNIONMEMBER_DELAY 0 0 0 0 0 0 You are not allowed to join union members in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_UNIONMEMBER_LIMIT 0 0 0 0 0 0 Your union alliance has reached the maximum amount of members. Liªn minh cña b¹n ®· ®¹t giíi h¹n thµnh viªn !
1 UIIT_STT_EXCHANGE_DELAY 0 0 0 0 0 0 You are not allowed to issue an exchange request in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_ACADEMY_INVITE 0 0 0 0 0 0 Academy invitation is completely disabled. Chøc n¨ng nµy ®· bÞ ®ãng bëi GM !
1 UIIT_STT_ACADEMY_CREATION 0 0 0 0 0 0 Academy creation is completely disabled. Chøc n¨ng nµy ®· bÞ ®ãng bëi GM !
1 UIIT_STT_BA_REQLVL 0 0 0 0 0 0 Your level is too low to participate in Battle Arena. CÊp ®é nh©n vËt kh«ng ®¹t yªu cÇu !
1 UIIT_STT_CTF_REQLVL 0 0 0 0 0 0 Your level is too low to participate in Capture the flag. CÊp ®é nh©n vËt kh«ng ®¹t yªu cÇu !
1 UIIT_STT_FW_TRACE 0 0 0 0 0 0 You cannot trace entities during Fortress War. Kh«ng thÓ theo sau khi CTC !
1 UIIT_STT_FW_RESSSCROLL 0 0 0 0 0 0 You are not allowed to use resurrection scroll during Fortress War. Phøc Ho¹t kh«ng kh¶ dông trong CTC !
1 UIIT_STT_CTF_RESSSCROLL 0 0 0 0 0 0 You are not allowed to use resurrection scroll during Fortress War. Phøc Ho¹t kh«ng kh¶ dông trong c*íp cê !
1 UIIT_STT_GLOBAL_REQLVL 0 0 0 0 0 0 Your level is too low to use global chat scroll. CÊp ®é nh©n vËt ch*a ®ñ ®Ó sö dông chat all .
1 UIIT_STT_GLOBAL_DELAY 0 0 0 0 0 0 You are not allowed to use global chat scroll in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_VEHITRAN_DELAY 0 0 0 0 0 0 You are not allowed to use a vehicle or transport in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_PLUS_LIMIT 0 0 0 0 0 0 You have reached the maximum amount of plus permitted. Item ®· ®¹t giíi h¹n kh«ng thÓ n©ng cÊp !
1 UIIT_STT_INSUFFICIENT_PRIVILIGES 0 0 0 0 0 0 Insufficient privileges to perform this action. B¹n kh«ng ®ñ quyÒn h¹n ®Ó thùc hiÖn hµnh ®éng nµy !
1 UIIT_STT_PLAYER_APPARATED 0 0 0 0 0 0 You have been apparated successfully. You have been apparated successfully.
1 UIIT_STT_GOODS_DROPOUT_VIOLATION 0 0 0 0 0 0 You have to be 300m outside of towns to terminate vehicles/transports. B¹n ph¶i c¸ch xa thµnh tèi thiÓu 300m míi cã thÓ hñy hµng !
1 UIIT_STT_SKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill. Kü n¨ng bÞ khãa !
1 UIIT_STT_FWSKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill during Fortress War. Kü n¨ng nµy kh«ng kh¶ dông trong CTC !
1 UIIT_STT_CTFSKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill during CTF. Kü n¨ng nµy kh«ng kh¶ dông trong c*íp cê !
1 UIIT_STT_BASKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill during Battle Arena. Kü n¨ng nµy kh«ng kh¶ dông trong ®Êu tr*êng !
1 UIIT_STT_SASKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill inside Radium Arena. You are not allowed to use this skill inside Radium Arena.
1 UIIT_STT_JOBSKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill while wearing a job suit. Kü n¨ng nµy kh«ng kh¶ dông trong ho¹t ®éng nghÒ !
1 UIIT_STT_GOODS_PICKUP_VIOLATION 0 0 0 0 0 0 You are not allowed to pickup goods inside towns under job mode, click on the ground not the sky. You are not allowed to pickup goods inside towns under job mode, click on the ground not the sky.
1 UIIT_STT_CHAT_FILTER 0 0 0 0 0 0 Some expressions are not allowed in our server. Ph¸t hiÖn ký tù kh«ng hîp lÖ !
1 UIIT_STT_BOT_ALLOW 0 0 0 0 0 0 Botting is not allowed in our server, bye bye! Botting is not allowed in our server, bye bye!
1 UIIT_STT_BOT_ALCHEMY 0 0 0 0 0 0 Third-party application fusing is not allowed. Third-party application fusing is not allowed.
1 UIIT_STT_BOT_PT 0 0 0 0 0 0 Third-party application partying is not allowed. Third-party application partying is not allowed.
1 UIIT_STT_BOT_ACTIONS 0 0 0 0 0 0 Third-party application actions is not allowed. Third-party application actions is not allowed.
1 UIIT_STT_BOT_BA 0 0 0 0 0 0 Third-party application are not allowed to participate in Battle Arena. Third-party application are not allowed to participate in Battle Arena.
1 UIIT_STT_BOT_CTF 0 0 0 0 0 0 Third-party application are not allowed to participate in Capture the flag. Third-party application are not allowed to participate in Capture the flag.
1 UIIT_STT_BOT_FW 0 0 0 0 0 0 Third-party application are not allowed to participate in Fortress war. Third-party application are not allowed to participate in Fortress war.
1 UIIT_STT_BOT_PVP 0 0 0 0 0 0 Third-party application are not allowed to participate in PvP. Third-party application are not allowed to participate in PvP.
1 UIIT_STT_SURV_FULL 0 0 0 0 0 0 You cannot register because the survival arena is full. B¹n kh«ng thÓ ®¨ng ký v× EVENT Survival Arena ®· max ng*êi ch¬i !
1 UIIT_STT_SURV_ALRDYREG 0 0 0 0 0 0 You are already registered to the survival arena. B¹n ®· ®¨ng ký EVENT Survival Arena råi !
1 UIIT_STT_SURV_REGCOMP 0 0 0 0 0 0 You have successfully registered to the survival arena. Chóc mõng b¹n ®· ®¨ng ký thµnh c«ng Survival Arena!
1 UIIT_STT_SURV_REGCAN 0 0 0 0 0 0 Your registeration to the survival arena has been cancelled. B¹n ®· hñy ®¨ng ký EVENT Survival Arena !
1 UIIT_STT_SURV_FORMPT 0 0 0 0 0 0 You cannot form a party inside the survival arena. Kh«ng kh¶ dông khi ®ang tham gia EVENT !
1 UIIT_STT_SURV_APPLYFORMEDPT 0 0 0 0 0 0 You cannot apply to a formed party while registered to the survival arena. Kh«ng kh¶ dông khi ®ang tham gia EVENT !
1 UIIT_STT_SURV_INVITEPT 0 0 0 0 0 0 You cannot invite to a party inside the surfvival arena. Gia nhËp nhãm bÞ cÊm trong khu vùc nµy !
1 UIIT_STT_SURV_WAIT 0 0 0 0 0 0 Waiting for other players. Vui lßng chê ng*êi ch¬i kh¸c !
1 UIIT_STT_SURV_CANCAPE 0 0 0 0 0 0 You cannot unequip your cape while your participating in the survival arena event. Kh«ng thÓ hñy tr¹ng th¸i PVP trong EVENT
1 UIIT_STT_SURV_GATECLOSED 0 0 0 0 0 0 You cannot enter the survival arena because the gate is closed. Kh«ng thÓ vµo khu vùc nµy v× cæng dÞch chuyÓn ®ang ®ãng !
1 UIIT_STT_SURV_NOTREGISTERED 0 0 0 0 0 0 You cannot enter to the survival arena because you did not register to the event. B¹n kh«ng thÓ tham gia EVENT v× b¹n ch*a ®¨ng ký !
1 UIIT_STT_SURV_INSIDEPT 0 0 0 0 0 0 You cannot enter to the survival arena inside a party or a party matching. B¹n kh«ng thÓ vµo khu vùc EVENT v× ®ang trong PT !
1 UIIT_STT_SURV_INSIDEJOB 0 0 0 0 0 0 You cannot enter to the survival arena in job. B¹n kh«ng thÓ vµo khu vùc EVENT v× ®ang mÆc JOB !
1 UIIT_STT_SURV_DC 0 0 0 0 0 0 You have been disconnected from the server because you stayed in the survival arena after it finished. Sau khi EVENT kÕt thóc h·y rêi khái khu vùc nµy nÕu kh«ng sÏ bÞ dis !
1 UIIT_STT_SURV_ACT_BLOCK 0 0 0 0 0 0 All actions our blocked until you wear a cape. Mäi hµnh ®éng ®Òu bÞ cÊm khi ®ang ®eo kh¨n !
1 UIIT_STT_SURV_HAMMERS_ACT_LIMIT 0 0 0 0 0 0 This behaviour isn't allowed on this event. Hµnh ®éng nµy kh«ng ®*îc phÐp trong EVENT !
1 UIIT_STT_BLOCK_TEAM_CHAT 0 0 0 0 0 0 You are not allowed to send private messages to the management team unless they send you first. Please send the message over the Radium chat. You are not allowed to send private messages to the management team unless they send you first. Please send the message over the Radium chat.
1 UIIT_STT_PT_MATCH_PROTECTED 0 0 0 0 0 0 This party is protected with password, please send the command "!enterpw <pass>" to enter the party. This party is protected with password, please send the command "!enterpw <pass>" to enter the party.
1 UIIT_STT_UE_REGCOMP 0 0 0 0 0 0 You have successfully registered to the unique event. B¹n ®· ®¨ng ký Unique EVENT thµnh c«ng !
1 UIIT_STT_UE_ALRDYREG 0 0 0 0 0 0 You are already registered to the unique event. B¹n ®· ®¨ng ký Unique EVENT tr*íc ®ã råi !
1 UIIT_STT_FW_HWID 0 0 0 0 0 0 You have reached the maxmimum allowed PCs to enter the fortress. B¹n ®· ®¹t giíi h¹n ACC/PC khi tham gia CTC !
1 UIIT_STT_E_ZONE_HWID 0 0 0 0 0 0 You have reached the maxmimum allowed PCs to enter the special events zone. B¹n ®· ®¹t giíi h¹n ACC/PC khi tham gia EVENT !
1 UIIT_STT_ITEM_INSIDE_TOWN 0 0 0 0 0 0 You cannot use this item outside of towns. Kh«ng thÓ sö dông item nµy ngoµi thµnh !
1 UIIT_STT_LOTTO_REG 0 0 0 0 0 0 You have been successfully registered to the lottery event, please wait for the results. B¹n ®· ®¨ng ký EVENT Lottery thµnh c«ng !
1 UIIT_STT_TITLES_INST_REMOVE 0 0 0 0 0 0 Type !settitle 0 to remove your title, Available title IDs on this server: Type !settitle 0 to remove your title, Available title IDs on this server:
1 UIIT_STT_TITLES_INVALID 0 0 0 0 0 0 Your title code must be a valid 2-digit number. Your title code must be a valid 2-digit number.
1 UIIT_STT_TITLES_SUC 0 0 0 0 0 0 Your new title has been set successfully. Your new title has been set successfully.
1 UIIT_STT_TITLES_VIP_ONLY 0 0 0 0 0 0 Only VIP members are allowed to use this command. Only VIP members are allowed to use this command.
1 UIIT_STT_TITLES_INVALID_PIN 0 0 0 0 0 0 Your pin code must be a valid 4-digit number. Your pin code must be a valid 4-digit number.
1 UIIT_STT_TITLES_WRONG_PIN 0 0 0 0 0 0 Your pin code is invalid or incorrect, please try again. Your pin code is invalid or incorrect, please try again.
1 UIIT_STT_BA_FW_REG 0 0 0 0 0 0 Registration to Bandit Fortress is disabled. CTC STT t¹m khãa !
1 UIIT_STT_JG_FW_REG 0 0 0 0 0 0 Registration to Jangan Fortress is disabled. CTC TA t¹m khãa !
1 UIIT_STT_HT_FW_REG 0 0 0 0 0 0 Registration to Hotan Fortress is disabled. CTC H§ t¹m khãa !
1 UIIT_STT_CT_FW_REG 0 0 0 0 0 0 Registration to Constantinople Fortress is disabled. CTC COS t¹m khãa !
1 UIIT_STT_GM_NOT_PRIV 0 0 0 0 0 0 You are not privileged to use this command. B¹n kh«ng ®ñ quyÒn h¹n ®Ó sö dông lÖnh nµy !
1 UIIT_STT_GM_NOT_IP 0 0 0 0 0 0 This IP is not allowed to login into this [GM] Account, disconnected. IP nµy kh«ng ®*îc cÊp phÐp ®¨ng nhËp vµo TK GM !
1 UIIT_STT_GM_NOT_PRIVG 0 0 0 0 0 0 You are not a privileged [GM], a message has been sent to notify the server owner, bye bye! Tµi kho¶n nµy ch*a ®*îc thªm vµo danh s¸ch GM !
//TANSAT
1 UIIT_STT_LOD_FULL 0 0 0 0 0 0 You cannot register because the tansat arena is full. B¹n kh«ng thÓ ®¨ng ký v× EVENT ®· ®ñ ng*êi ch¬i !
1 UIIT_STT_LOD_ALRDYREG 0 0 0 0 0 0 You are already registered to the tansat arena. B¹n ®· ®¨ng ký tr*íc ®ã råi !
1 UIIT_STT_LOD_REGCOMP 0 0 0 0 0 0 You have successfully registered to the tansat arena. Chóc mõng b¹n ®· ®¨ng ký tham gia EVENT thµnh c«ng !
1 UIIT_STT_LOD_REGCAN 0 0 0 0 0 0 Your registeration to the tansat arena has been cancelled. B¹n ®· hñy tham gia EVENT !
//RED BATTLE
1 UIIT_STT_RB_FULL 0 0 0 0 0 0 You cannot register because the tansat arena is full. B¹n kh«ng thÓ ®¨ng ký v× EVENT ®· ®ñ ng*êi ch¬i !
1 UIIT_STT_RB_ALRDYREG 0 0 0 0 0 0 You are already registered to the tansat arena. B¹n ®· ®¨ng ký tr*íc ®ã råi !
1 UIIT_STT_RB_REGCOMP 0 0 0 0 0 0 You have successfully registered to the tansat arena. Chóc mõng b¹n ®· ®¨ng ký tham gia EVENT thµnh c«ng !
1 UIIT_STT_RB_REGCAN 0 0 0 0 0 0 Your registeration to the tansat arena has been cancelled. B¹n ®· hñy tham gia EVENT !
1 UIIT_STT_RB_FORMPT 0 0 0 0 0 0 You cannot form a party inside the tansat arena. B¹n kh«ng thÓ tham gia EVENT khi ®ang trong PT !
1 UIIT_STT_RB_APPLYFORMEDPT 0 0 0 0 0 0 You cannot apply to a formed party while registered to the tansat arena. ThiÕt lËp nhãm kh«ng kh¶ dông trong khu vùc EVENT !
1 UIIT_STT_RB_INVITEPT 0 0 0 0 0 0 You cannot invite to a party inside the surfvival arena. ThiÕt lËp nhãm kh«ng kh¶ dông trong khu vùc EVENT !
1 UIIT_STT_RB_WAIT 0 0 0 0 0 0 Waiting for other players. H·y chê ng*êi ch¬i kh¸c !
//JOB
1 UIIT_STT_JOB_TRACE 0 0 0 0 0 0 You cannot trace entities under job mode. Kh«ng thÓ theo sau trong ho¹t ®éng JOB !
1 UIIT_STT_JOB_RESSDELAY 0 0 0 0 0 0 You are not allowed to be resurrected in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_JOB_RESSBTDP 0 0 0 0 0 0 You are not allowed to use reverse scroll to previous death point under job mode. Kh«ng thÓ sö dông DCN ®Õn ®iÓm chÕt trong ho¹t ®éng JOB !
1 UIIT_STT_JOB_MAPLOC 0 0 0 0 0 0 You are not allowed to use reverse scroll to map location under job mode. Kh«ng thÓ sö dông DCN ®Õn ®Þa ®iÓm cô thÓ trªn map trong ho¹t ®éng JOB !
1 UIIT_STT_JOB_RESSSCROLL 0 0 0 0 0 0 You are not allowed to use resurrection scroll under job mode. Kh«ng thÓ sö dông phøc ho¹t trong ho¹t ®éng JOB !
1 UIIT_STT_JOB_RESSLRP 0 0 0 0 0 0 You are not allowed to use reverse scroll to last recall point under job mode. Kh«ng thÓ sö dông DCN ®Õn ®iÓm cuèi trong ho¹t ®éng JOB !
1 UIIT_STT_JOB_HWID 0 0 0 0 0 0 You have exceeded the amount of allowed PCs eligible to enter job mode. B¹n ®· ®¹t giíi h¹n JOB/PC !
1 UIIT_STT_JOB_HWID_SPAWN 0 0 0 0 0 0 You have exceeded the amount of allowed PCs eligible to enter job mode, please take off the job suit from your other logged in character to login. B¹n ®· ®¹t giíi h¹n JOB/PC !
1 UIIT_STT_JOB_MERC_BLOCK 0 0 0 0 0 0 You are not allowed to use a mercenary without a job suit. You are not allowed to use a mercenary without a job suit.
1 UIIT_STT_JOB_EXCHANGE 0 0 0 0 0 0 You are not allowed to use a mercenary without a job suit. Kh«ng thÓ giao dÞch khi ®ang JOB.
1 UIIT_STT_JOB_CANCEL_EXCHANGE 0 0 0 0 0 0 You are not allowed to use a mercenary without a job suit. Kh«ng thÓ chÊp nhËn giao dÞch khi ®ang JOB.
//RADIUM
1 UIIT_STT_SET_RECALL_DIS 0 0 0 0 0 0 This ability is disabled for the job towns. This ability is disabled for the job towns.
1 UIIT_STT_MAST_UP_BLOCK 0 0 0 0 0 0 You are not allowed to manually increase your mastery, please use the master scrolls in your inventory. You are not allowed to manually increase your mastery, please use the master scrolls in your inventory.
1 UIIT_STT_WANTED_TRADER_ONLY 0 0 0 0 0 0 Only traders are allowed to use the wanted scroll. Only traders are allowed to use the wanted scroll.
1 UIIT_STT_JOB_TP_BLOCK 0 0 0 0 0 0 You are not allowed to walk around in jangan or donwhang region without a job suit. You are not allowed to walk around in jangan or donwhang region without a job suit.
1 UIIT_STT_JOB_LDP_BLOCK 0 0 0 0 0 0 You are not allowed to reverse back to death point if you died in job regions. You are not allowed to reverse back to death point if you died in job regions.
1 UIIT_STT_JOB_LRP_BLOCK 0 0 0 0 0 0 You are not allowed to reverse back to recall point if its in job regions. You are not allowed to reverse back to recall point if its in job regions.
1 UIIT_STT_JOB_LMP_BLOCK 0 0 0 0 0 0 You are not allowed to reverse back to map point if you are not in job mode. You are not allowed to reverse back to map point if you are not in job mode.
//UNK
1 UIIT_STT_PAND_REQ_LVL 0 0 0 0 0 0 You have to be at least level 110 to use the pandora's box. You have to be at least level 110 to use the pandora's box.
1 UIIT_STT_REMOVE_JOB_BLOCK 0 0 0 0 0 0 You cannot unequip your job suit inside job towns. You cannot unequip your job suit inside job towns.
1 UIIT_STT_GOVOTE 0 0 0 0 0 0 Go vote on our website and earn free credits every 12 hours! Go vote on our website and earn free credits every 12 hours!
1 UIIT_STT_RADCHAT 0 0 0 0 0 0 Feel free to ask us any questions through the Radium Chat by starting your message with & Feel free to ask us any questions through the Radium Chat by starting your message with &
1 UIIT_STT_SAFETY 0 0 0 0 0 0 Admin/Supporters will never ask for your login details, don't give them away. Admin/Supporters will never ask for your login details, don't give them away.
1 UIIT_STT_SURVIVAL_CHAT_BLOCK 0 0 0 0 0 0 Public messages aren't allowed while playing in this arena. Public messages aren't allowed while playing in this arena.
1 UIIT_STT_ATTENDANCE_CHECK 0 0 0 0 0 0 Thank you for coming in today, please come back tomorrow. Thank you for coming in today, please come back tomorrow.
1 UIIT_STT_RG_LVL 0 0 0 0 0 0 You cannot enter Radium's Garden below level 100. You cannot enter Radium's Garden below level 100.
1 UIIT_STT_RG_JOB 0 0 0 0 0 0 You cannot enter Radium's Garden without a job suit. You cannot enter Radium's Garden without a job suit.
1 UIIT_STT_RG_JS 0 0 0 0 0 0 You are not allowed to reverse back to Radium's Garden without a job suit. You are not allowed to reverse back to Radium's Garden without a job suit.
1 UIIT_STT_RELOAD xxx 0 0 0 0 0 Auto Equipment (Reload) Auto Equipment (Reload) 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_UNIC [%s]이(가) 등장하였습니다 0 0 0 0 0 0 [%s] has appeared. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_TIGER_GIRL 호혈산에 호녀가 등장하였습니다 0 0 0 0 0 0 Tiger Girl[INT] has appeared on Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_TIGER_GIRL_STR 호혈산에 호녀가 등장하였습니다 0 0 0 0 0 0 Tiger Girl[STR] has appeared on Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_IVY 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Captain Ivy[INT] has appeared in Downhang. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_IVY_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Captain Ivy[STR] has appeared in Downhang. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_KERBEROS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Cerberus[INT] has appeared in Jangan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_KERBEROS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Cerberus[STR] has appeared in Jangan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_URRUCHI 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 Uruchi[INT] has appeared in Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_URRUCHI_STR 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 Uruchi[STR] has appeared in Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_IUYTURU 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 Isyutaru[INT] has appeared in Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_IUYTURU_STR 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 Isyutaru[STR] has appeared in Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BONELORD 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Lord Yarkan[INT] has appeared in Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BONELORD_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Lord Yarkan[STR] has appeared in Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_TAHOMET 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Demon Shaitan[INT] has appeared on Mt. Roc. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_TAHOMET_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Demon Shaitan[STR] has appeared on Mt. Roc. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_ISIS 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 Isis[INT] has appeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_NEITH 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 Neith[INT] has appeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_ANUBIS 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Anubis[STR] has appeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SELKIS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Selket[STR] has appeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_THIEF_BOSS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Thief Boss Kalia[STR] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_KIDEMONAS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Kidemonas[STR] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_KHULOOD 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Khulood[INT] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_KARKADANN 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Karkadann[INT] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BONEROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Death BoneRoc[INT] has appeared in Samarkand 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BONEROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Death BoneRoc[STR] has appeared in Samarkand 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_WHITESNAKE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 BeakYung The White Viper[INT] has appeared in Medusa Room. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_WHITESNAKE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 BeakYung The White Viper[STR] has appeared in Medusa Room. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_ROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 King Roc[INT] has appeared in The Firelands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_ROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 King Roc[STR] has appeared in The Firelands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SETH 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Seth[INT] has appeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SETH_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Seth[STR] has appeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_YUNO 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Yuno[INT] has appeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_JUPITER 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Jupiter[STR] has appeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SROVOZ_HEX 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 SROVOZ Hex has appeared in DonWhang 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_VENEFICA_DEMON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Venefica Spider[STR] has appeared in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_HARRISON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Harrison[INT] has appeared in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BOSS_UNIQUE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 SROVOZ Boss[INT] has appeared 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_BOSS_UNIQUE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 SROVOZ Boss[STR] has appeared 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_VENEFICA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Lady Venefica[INT] has appeared in Phantom Desert 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_MUSTAFA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Mustafa[STR] has appeared in Phantom Desert 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_LAUNATUNE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Launtune[STR] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_POLEXE_BOSS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Polexe Gladiator[INT] has appeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_HAROERIS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Haroeris[INT] has appeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_HAROERIS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Haroeris[STR] has appeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SHADOW 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Shadow Ruler has appeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_APPEAR_SHADOW_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Shadow Ruler[STR] has appeared in Temple of Shadow 0 0 0 0 0 0 0 0
//Disappered Uniques
1 UIIT_MSG_DEAD_TIGER_GIRL 호혈산의 호녀가 사라졌습니다. 0 0 0 0 0 0 Tiger Girl[INT] has disappeared from Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_URRUCHI 타림분지의 우르치가 사라졌습니다. 0 0 0 0 0 0 Uruchi[INT] has disappeared from Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_IUYTARU 카라코람의 이슈타르가 사라졌습니다. 0 0 0 0 0 0 Isyutaru[INT] has disappeared from Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BONELORD 타클라마칸의 로드야르칸이 사라졌습니다. 0 0 0 0 0 0 Lord Yarkan[INT] has disappeared from Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_IVY 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Captain Ivy[INT] has disappeared in Downhang. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_KERBEROS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Cerberus[INT] has disappeared in Jangan 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_TIGER_GIRL_STR 호혈산에 호녀가 등장하였습니다 0 0 0 0 0 0 Tiger Girl[STR] has disappeared on Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_URRUCHI_STR 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 Uruchi has[STR] disappeared in Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_IUYTURU_STR 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 Isyutaru[STR] has disappeared in Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BONELORD_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Lord Yarkan[STR] has disappeared in Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_TAHOMET_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Demon Shaitan[STR] has disappeared on Mt. Roc. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_IVY_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Captain Ivy[STR] has disappeared in Downhang. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_KERBEROS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Cerberus[STR] has disappeared in Jangan 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_ISIS 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 Isis[INT] has disappeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_NEITH 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 Neith[INT] has disappeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_ANUBIS 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 Anubis[STR] has disappeared in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_SELKIS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Selkis[STR] has disappeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_SETH 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Seth[INT] has disappeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_SETH_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Seth[STR] has disappeared in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_THIEF_BOSS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Thief Boss Kalia[STR] has disappeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_KIDEMONAS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Kidemonas[STR] has disappeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_KHULOOD 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Khulood[INT] has disappeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_KARKADANN 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Karkadann[INT] has disappeared in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_VENEFICA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Venefica Spider[STR] has disappeared in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_HARRISON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Harrison[INT] has disappeared in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_VENEFICA_DEMON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Lady Venefica[INT] has disappeared in Arabian Coast 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_MUSTAFA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Mustafa[STR] has disappeared in Arabian Coast 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_LAUNATUNE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Launtune[STR] has disappeared in FireLands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BONEROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Death BoneRoc[INT] has disappeared in Samarkand 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BONEROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Death BoneRoc[STR] has disappeared in Samarkand 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_WHITESNAKE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 BeakYung The White Viper[INT] has disappeared in Medusa Room 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_WHITESNAKE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 BeakYung The White Viper[STR] has disappeared in Medusa Room 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_ROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 King Roc[INT] has disappeared in Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_ROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 King Roc[STR] has disappeared in Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_JUPITER 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Jupiter[STR] has disappeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_YUNO 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Yuno[INT] has disappeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_SHADOW 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Shadow Ruler[INT] has disappeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_SHADOW_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 Shadow Ruler[STR] has disappeared in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BOSS_UNIQUE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 SROVOZ Boss[INT] has disappeared 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_BOSS_UNIQUE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 SROVOZ Boss[STR] has disappeared 0 0 0 0 0 0 0 0
1 UIIT_MSG_DEAD_UNIC [%s]이(가) 사라졌습니다. 0 0 0 0 0 0 [%s] has disappeared. 0 0 0 0 0 0 0 0
//Killed Uniques
1 UIIT_MSG_ANYONE_DEAD_TIGER_GIRL [%s]님이 호혈산의 호녀를 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Tiger girl[INT] in Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_TIGER_GIRL_STR 호혈산에 호녀가 등장하였습니다 0 0 0 0 0 0 [%s] killed Tiger Girl[STR] in Tiger Mountain. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_IVY [%s]님이 로크산의 마인 샤이탄을 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Captain Ivy[INT] in Donwhang 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_IVY_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Captain Ivy[STR] in Downhang. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_KERBEROS [%s]님이 로크산의 마인 샤이탄을 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Cerberus[INT] in Jangan 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_KERBEROS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Cerberus[STR] in Jangan 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_URRUCHI [%s]님이 타림분지의 우르치를 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Uruchi[INT] in Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_URRUCHI_STR 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 [%s] killed Uruchi[STR] in Tarim Basin. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_IUYTURU [%s]님이 카라코람의 이슈타르를 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Isyutaru[INT] in Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_IUYTURU_STR 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 [%s] killed Isyutaru[STR] in Karakoram. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BONELORD [%s]님이 타클라마칸의 로드야르칸을 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Lord Yarkan[INT] in Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BONELORD_STR 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Lord Yarkan[STR] in Taklamakan. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_TAHOMET [%s]님이 로크산의 마인 샤이탄을 처치하셨습니다. 0 0 0 0 0 0 [%s] killed Demon Shaitan[INT] in Mt. Roc. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_TAHOMET_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Demon Shaitan[STR] in Mt. Roc. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_ISIS 타림분지에 우르치가 등장하였습니다. 0 0 0 0 0 0 [%s] killed Isis[INT] in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_NEITH 카라코람에 이슈타르가 등장하였습니다. 0 0 0 0 0 0 [%s] killed Neith[INT] in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_ANUBIS 타클라마칸에 로드야르칸이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Anubis[STR] in The Shadowlands. 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SELKIS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Selkis[STR] in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_THIEF_BOSS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Thief Boss Kalia[STR] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_KIDEMONAS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Kidemonas[STR] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_KHULOOD 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Khulood[INT] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_KARKADANN 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Karkadann[INT] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BONEROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Death BoneRoc[INT] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BONEROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Death BoneRoc[STR] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_WHITESNAKE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed BeakYung The White Viper[INT] in Medusa Room 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_WHITESNAKE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed BeakYung The White Viper[STR] in Medusa Room 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_ROC 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed King Roc[INT] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_ROC_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed King Roc[STR] in The Firelands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SETH 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Seth[INT] in Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SETH_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Seth[STR] in Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_YUNO 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Yuno[INT] in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_JUPITER 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Jupiter[STR] in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SROVOZ_HEX 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed SROVOZ Hex in DonWhang 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_VENEFICA_DEMON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Venefica Spider[STR] in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_HARRISON 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Harrison[INT] in Baghdad 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BOSS_UNIQUE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed SROVOZ Boss[INT] 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_BOSS_UNIQUE_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed SROVOZ Boss[STR] 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_VENEFICA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Lady Venefica[INT] in Phantom Desert 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_MUSTAFA 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Mustafa[STR] in Phantom Desert 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_LAUNATUNE 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Launtune[STR] in The FireLands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_POLEXE_BOSS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Polexe Gladiator[INT] in The FireLands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_HAROERIS 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Haroeris[INT] in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_HAROERIS_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Haroeris[STR] in The Shadowlands 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SHADOW 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Shadow Ruler[INT] in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_SHADOW_STR 로크산에 마인 샤이탄이 등장하였습니다. 0 0 0 0 0 0 [%s] killed Shadow Ruler[STR] in Temple of Shadow 0 0 0 0 0 0 0 0
1 UIIT_MSG_ANYONE_DEAD_UNIC [%s]?? [%s]?(?) ???????. 0 0 0 0 0 [%s] has killed [%s]. [%s] has killed [%s]. 0 0 0 0 0 0
//Mainmenu
1 UIIT_CUSTOM_MAINMENU_TITLE MENU MENU
1 UIIT_PACKET_DELAY Ban thao tac qua nhanh vui long tam dung nhan vat va thu lai sau 3s B¹n thao t¸c qu¸ nhanh vui lßng t¹m dõng nh©n vËt vµ thö l¹i sau 3s
1 UIIT_CUSTOM_CHARLOCK_BUTTON Bao Mat B¶o MËt
1 UIIT_CUSTOM_GRANTNAME_BUTTON Doi Biet Hieu Guild §æi BiÖt HiÖu Guild
1 UIIT_CUSTOM_TITLES_BUTTON Doi Title §æi Title
1 UIIT_CUSTOM_NAPTHE_BUTTON Nap Silk N¹p Silk
1 UIIT_CUSTOM_XSMB_BUTTON Xo So Mien Bac Xæ Sè MiÒn B¾c
1 UIIT_CUSTOM_GIFTCODE_BUTTON Xo So Mien Bac GIFTCODE
1 UIIT_CUSTOM_RANKING_BUTTON Rank Rank
1 UIIT_CUSTOM_SERVER_TIMER Thoi gian Event - Boss Thêi gian Event - Boss
1 UIIT_CUSTOM_CLIENT_FUNC Tien Ich TiÖn Ých
1 UIIT_CUSTOM_ITEM_POINT_TOOLTIP Diem Item §iÓm ITEM (Tæng §iÓm ITEM trang bÞ trªn ng*êi!)
1 UIIT_CUSTOM_FACEBOOK_LINK

1 UIIT_CUSTOM_TITLES2_BUTTON Doi Title §æi Title Tïy Chän
//Custom title
1 UIIT_CUSTOM_TITLE_TITLE Quan Ly Danh Hieu Qu¶n Lý Danh HiÖu
1 UIIT_CUSTOM_TITLES Danh Hieu Hien Co Danh HiÖu HiÖn Cã
1 UIIT_INPUT_TITLE_EMPTY Hay lua chon title! H·y lùa chän title!
1 UIIT_CUSTOM_TITLE_CHOOSE Dang Chon §ang Chän
//Custom title2
1 UIIT_CUSTOM_TITLES2 Nhap Biet Hieu NhËp Title
1 UIIT_CUSTOM_TITLES2_GETCOLOR Lay Mau LÊy Mµu
1 UIIT_CUSTOM_TITLES2_PUT_NAME Nhap Title NhËp Title - PhÝ [ ] Silk
1 UIIT_CUSTOM_TITLES2_PUT_NAME_TOOLTIP Title phai thoa man cac dieu kien sau:\n+Nh©n vËt ®· cã Title mÆc ®Þnh tr*íc khi ®æi!\n+Tu 2->30 ky tu\n+Khong bao gom 1 so ky tu dac biet\n+Khong su dung tu ngu phan cam lien quan den chinh tri hoac anh huong den nguoi khac\n+Phat hien se khoa tai khoan ! Title ph¶i tháa m·n c¸c ®iÒu kiÖn sau:\n+Tõ 2->30 ký tù\n+Kh«ng bao gåm 1 sè ký tù ®Æc biÖt\n+Kh«ng sö dông tõ ng÷ ph¶n c¶m liªn quan ®Õn chÝnh trÞ hoÆc ¶nh h*ëng ®Õn ng*êi kh¸c\n+Ph¸t hiÖn sÏ khãa tµi kho¶n !
1 UIIT_CUSTOM_TITLES2_PUT_COLOR Nhap Color NhËp Color - PhÝ [ ] Silk
1 UIIT_CUSTOM_TITLES2_PUT_COLOR_TOOLTIP Nhan vao 'Lay Mau' sau do chon va copy ma duoi phan Hex ! §æi mµu chØ ¸p dông cho nh©n vËt ®· ®æi title!\nNhÊn vµo 'LÊy Mµu' sau ®ã chän vµ copy m· d*íi phÇn Hex !
1 UIIT_CHANGE_TITLES2_LEN Title cã ®é dµi tõ 2 -> 30 ký tù !
1 UIIT_CHANGE_TITLES2_COLOR_LEN Code mµu cã ®é dµi 6 ký tù !
1 UIIT_CUSTOM_TITLES2_CHANGE_TITLE §æi Title
1 UIIT_CUSTOM_TITLES2_CHANGE_COLOR §æi Mµu
1 UIIT_CHANGE_TITLES2_SUCCESS Dang tien hanh doi title... ! §ang tiÕn hµnh ®æi title... !
//Custom grantname
1 UIIT_CUSTOM_GRANTNAME Nhap Biet Hieu NhËp BiÖt HiÖu
1 UIIT_CHANGE_GRANTNAME_SUCCESS Dang tien hanh doi biet hieu... ! §ang tiÕn hµnh ®æi biÖt hiÖu... !
//Custom Charlock
1 UIIT_CHARLOCK_LOCK Khoa Khãa
1 UIIT_CHARLOCK_UNLOCK Mo Khoa Më Khãa
1 UIIT_CHARLOCK_DELLOCK Xoa Bao Mat Xãa B¶o MËt
1 UIIT_CUSTOM_CHARLOCK_PASSWORD_LABEL Mat Khau: MËt KhÈu:
1 UIIT_CUSTOM_CHARLOCK_STATUS_LABEL Trang Thai: Tr¹ng Th¸i:
1 UIIT_CUSTOM_CHARLOCK_4PASS_LABEL Mat khau gom 4 chu so ! MËt khÈu gåm 4 ch÷ sè !
1 UIIT_CUSTOM_CHARLOCK_LOCK Da Khoa §· Khãa
1 UIIT_CUSTOM_CHARLOCK_UNLOCK Da Mo Khoa §· Më Khãa
//Custom Donate
1 UIIT_CUSTOM_NAPTHE Nap The N¹p ThÎ
1 UIIT_CUSTOM_NAPTHE_LOAITHE Loai The: Lo¹i ThÎ:
1 UIIT_CUSTOM_NAPTHE_MENHGIA Menh Gia: MÖnh Gi¸:
1 UIIT_CUSTOM_NAPTHE_MATHE Ma The M· ThÎ
1 UIIT_CUSTOM_NAPTHE_SERI SERI SERI
1 UIIT_CUSTOM_NAPTHE_NAP Nap Ngay N¹p Ngay
1 UIIT_CUSTOM_NAPTHE_KM Dang Co KM:X §ang Cã KM:X
1 UIIT_CUSTOM_NAPTHE_KM0 Khong Co KM Kh«ng Cã KM
1 UIIT_CUSTOM_NAPTHE_BANK Chuyen Khoan ChuyÓn Kho¶n
1 UIIT_CUSTOM_NAPTHE_TOOLTIP1 Nhap dung thong tin the bao gom (Loai The + Ma The + Seri + Menh Gia) neu nhap sai se mat the va khong nhan duoc silk ! NhËp ®óng th«ng tin thÎ bao gåm (Lo¹i ThÎ + M· ThÎ + Seri + MÖnh Gi¸) nÕu nhËp sai sÏ mÊt thÎ vµ kh«ng nhËn ®*îc silk !
1 UIIT_CUSTOM_NAPTHE_10K 10.000=100s
1 UIIT_CUSTOM_NAPTHE_20K 20.000=200s
1 UIIT_CUSTOM_NAPTHE_50K 50.000=550s
1 UIIT_CUSTOM_NAPTHE_100K 100.000=1100s
1 UIIT_CUSTOM_NAPTHE_200K 200.000=2200s
1 UIIT_CUSTOM_NAPTHE_500K 500.000=6000s
//Custom XSMB
1 UIIT_CUSTOM_XSMB_NAME_LABEL Xo So Mien Bac Xæ Sè MiÒn B¾c
1 UIIT_CUSTOM_XSMB_KETQUA_LABEL Ket Qua Cua Ngay: KÕt Qu¶ Cña Ngµy:
1 UIIT_CUSTOM_XSMB_CONFIRM_LO Bang Silk B»ng Silk
1 UIIT_CUSTOM_XSMB_CONFIRM_DE Bang Gold B»ng Gold
1 UIIT_CUSTOM_XSMB_NUMBER_LABEL Nhap So Muon Danh: NhËp Sè Muèn §¸nh:
1 UIIT_CUSTOM_XSMB_COST_LABEL So Tien Cuoc: Sè TiÒn C*îc:
1 UIIT_CUSTOM_XSMB_TOOLTIP Tu Dong Cap Nhat Vao 19:00 Tù §éng CËp NhËt Vµo 19:00
1 UIIT_CUSTOM_XSMB_LOG Lich Su LÞch Sö
1 UIIT_CUSTOM_XSMB_GIAIDACBIET_LABEL Dac Biet: §Æc BiÖt:
1 UIIT_CUSTOM_XSMB_GIAINHAT_LABEL Giai Nhat: Gi¶i NhÊt:
1 UIIT_CUSTOM_XSMB_GIAINHI_LABEL Giai Nhi: Gi¶i Nh×:
1 UIIT_CUSTOM_XSMB_GIAIBA_LABEL Giai Ba: Gi¶i Ba:
1 UIIT_CUSTOM_XSMB_GIAIBON_LABEL Giai Tu: Gi¶i T*:
1 UIIT_CUSTOM_XSMB_GIAINAM_LABEL Giai Nam: Gi¶i N¨m:
1 UIIT_CUSTOM_XSMB_GIAISAU_LABEL Giai Sau: Gi¶i S¸u:
1 UIIT_CUSTOM_XSMB_GIAIBAY_LABEL Giai Bay: Gi¶i B¶y:
1 UIIT_CUSTOM_XSMB_TOOLTIP2 Neu trung giai ban se nhan duoc x3 so tien cuoc ! NÕu tróng gi¶i b¹n sÏ nhËn ®*îc x3 sè tiÒn c*îc !
1 UIIT_CUSTOM_XSMB_TOOLTIP3 La so co 2 chu so tu 00->99 Lµ sè cã 2 ch÷ sè tõ 00->99
1 UIIT_CUSTOM_XSMB_NUMBER_LEN Nhap so co 2 chu so tu 00->99 NhËp sè cã 2 ch÷ sè tõ 00->99
1 UIIT_CUSTOM_XSMB_PASS Chuc ban may man voi con so: Chóc b¹n may m¾n víi con sè:
//Common
1 UIIT_CUSTOM_5MIN_REFRESH_TOOLTIP Tu Dong Cap Nhat Sau 5 Phut Tù §éng CËp NhËt Sau 5 Phót
1 UIIT_CUSTOM_ACTION Xac nhan yeu cau ! X¸c nhËn yªu cÇu !
1 UIIT_RUN_OUT_OF_MONEY Ban khong du gold ! B¹n kh«ng ®ñ Gold !
1 UIIT_NO_JOB_PLS Vui long thao job ! Vui lßng th¸o trang bÞ nghÒ nghiÖp !
1 UIIT_ONLY_INTEGER Vui long chi nhap so ! ChØ ®*îc nhËp sè !
1 UIIT_INPUT_TEXT_EMPTY Vui long nhap day du thong tin ! Vui lßng nhËp ®Çy ®ñ th«ng tin !
1 UIIT_CUSTOM_APPLY Yeu cau dang duoc xu ly Yªu cÇu ®ang ®*îc xö lý
1 UIIT_CUSTOM_LEN_FAIL So ky tu khong dung Sè ký tù kh«ng ®óng !
1 UIIT_CUSTOM_RANK1 #1 #1
1 UIIT_CUSTOM_RANK2 #2 #2
1 UIIT_CUSTOM_RANK3 #3 #3
1 UIIT_CUSTOM_RANK4 #4 #4
1 UIIT_CUSTOM_RANK5 #5 #5
1 UII_CUSTOM_PLAYERNAME_LABEL Name Name
1 UII_GUILD_MAX_SP Diem GP cua Guild da dat muc gioi han ! §iÓm GP cña Guild ®· ®¹t møc giíi h¹n !
//Custom XSMB_LS
1 UIIT_CUSTOM_XSMB_LS_NAME_LABEL Lich Su Lo De LÞch Sö L« §Ò
1 UIIT_CUSTOM_XSMB_LS_STT STT STT
1 UIIT_CUSTOM_XSMB_LS_NUMBER So Sè
1 UIIT_CUSTOM_XSMB_LS_TIENCUOC Tien Cuoc TiÒn C*îc
1 UIIT_CUSTOM_XSMB_LS_NHAY Nhay Nh¸y
1 UIIT_CUSTOM_XSMB_LS_TIENNHAN Tien Nhan TiÒn NhËn
1 UIIT_CUSTOM_XSMB_LS_TYPE Loai Lo¹i
1 UIIT_CUSTOM_XSMB_LS_STATUS Trang Thai Tr¹ng Th¸i
1 UIIT_CUSTOM_XSMB_LS_TIME Thoi Gian Thêi Gian
1 UIIT_CUSTOM_XSMB_LS_TRUNG Trung Tróng
1 UIIT_CUSTOM_XSMB_LS_TRUOT Truot Tr*ît
1 UIIT_CUSTOM_XSMB_LS_UPDATING Cho Ket Qua Chê KÕt Qu¶
1 UIIT_CUSTOM_XSMB_LS_SILK SILK SILK
1 UIIT_CUSTOM_XSMB_LS_GOLD GOLD GOLD
//Custom DPS_METER
1 CUSTOMDPS_DAMAGE_LABEL Damage Damage
1 CUSTOMDPS_TITLE DPS Metter DPS Metter
//Custom GiftCode
1 UIIT_CUSTOM_GIFTCODE Nhap Code NhËp Code
1 UIIT_CHANGE_GIFTCODE_CHECKED Dang tien hanh check code... ! §ang tiÕn hµnh check code... !
1 UIIT_CUSTOM_GIFTCODE_TOOLTIP Sau khi nhan code , vui long dich chuyen nhan vat de ITEM hien thi trong kho ! Sau khi nhËn code , vui lßng dÞch chuyÓn nh©n vËt ®Ó ITEM hiÓn thÞ trong kho !
//Custom Ranking
1 UIIT_CUSTOM_RANKING_LABEL Bang Xep Hang B¶ng XÕp H¹ng - Update Mçi 5 Phót
1 UIIT_CUSTOM_RANKING_STT # #
1 UIIT_CUSTOM_RANKING_FRIST #1 #1
1 UIIT_CUSTOM_RANKING_SECOND #2 #2
1 UIIT_CUSTOM_RANKING_THIRD #3 #3
1 UIIT_CUSTOM_RANKING_STT_RANK1 #1 #1
1 UIIT_CUSTOM_RANKING_STT_RANK2 #2 #2
1 UIIT_CUSTOM_RANKING_STT_RANK3 #3 #3
1 UIIT_CUSTOM_RANKING_STT_RANK4 #4 #4
1 UIIT_CUSTOM_RANKING_STT_RANK5 #5 #5
1 UIIT_CUSTOM_RANKING_STT_RANK6 #6 #6
1 UIIT_CUSTOM_RANKING_STT_RANK7 #7 #7
1 UIIT_CUSTOM_RANKING_STT_RANK8 #8 #8
1 UIIT_CUSTOM_RANKING_STT_RANK9 #9 #9
1 UIIT_CUSTOM_RANKING_STT_RANK10 #10 #10
1 UIIT_CUSTOM_RANKING_CHINA_TOOLTIP Top EXP China Top EXP China
1 UIIT_CUSTOM_RANKING_EU_TOOLTIP Top EXP Europe Top EXP Europe
1 UIIT_CUSTOM_RANKING_GUILD_TOOLTIP Top diem item cua toan bo thanh vien trong Guild Top ®iÓm item cña toµn bé thµnh viªn trong Guild
1 UIIT_CUSTOM_RANKING_TRADER_TOOLTIP Top EXP Trade Top EXP Trade
1 UIIT_CUSTOM_RANKING_HUNTER_TOOLTIP Top EXP Hunter Top EXP Hunter
1 UIIT_CUSTOM_RANKING_THIEF_TOOLTIP Top EXP Thief Top EXP Thief
1 UIIT_CUSTOM_RANKING_UNIQUE_TOOLTIP Top Kill Boss Top Kill Boss - Sè boss ®· giÕt + tæng ®iÓm (®iÓm dùa trªn lv boss)
1 UIIT_CUSTOM_RANKING_ITEM_TOOLTIP Top diem item nhan vat (Tong so item dang mac + so cong va so dong xanh tren toan bo item dang trang bi) Top ®iÓm item nh©n vËt (Tæng sè trang bÞ ®ang mÆc + sè céng vµ sè dßng xanh trªn toµn bé item ®ang trang bÞ + cÊp ®å*10)
//Custom Timer
1 UIIT_CUSTOM_SERVER_TIMER_LABEL Server Timer Server Timer - Update Mçi 5 Phót
1 UIIT_CUSTOM_SERVER_TIMER_EVENT_NAME Event Name Tªn Event
1 UIIT_CUSTOM_SERVER_TIMER_EVENT_TIME Time Thêi Gian
1 UIIT_CUSTOM_SERVER_TIMER_EVENT_TIME_TOOLTIP Time HiÓn thÞ thêi gian Giê:Phót cßn l¹i cho ®Õn khi EVENT diÔn ra !
1 UIIT_CUSTOM_SERVER_TIMER_BOSS_NAME Boss Name/Killer Tªn Boss/Ng*êi GiÕt
1 UIIT_CUSTOM_SERVER_TIMER_BOSS_TIME Status Status
1 UIIT_CUSTOM_SERVER_TIMER_BOSS_TIME_TOOLTIP Status HiÓn thÞ theo thêi gian gÇn víi hiÖn t¹i nhÊt , xanh = cßn sèng ; ®á = ®· chÕt !
//Custom Client Func
1 UIIT_CUSTOM_CLIENT_FUNC_AUTOPT_TOOLTIP Tu dong chap nhan khi nguoi choi khac xin vao nhom cua ban tren kenh E! Tù ®éng chÊp nhËn khi ng*êi ch¬i kh¸c xin vµo nhãm cña b¹n trªn kªnh E!
1 UIIT_CUSTOM_CLIENT_FUNC_UPSKILL_TOOLTIP Chi can up san lv cua bang ky nang mong muon sau do su dung chuc nang nay - khong kha dung khi dang JOB ! ChØ cÇn up s½n lv cña b¶ng kü n¨ng mong muèn sau ®ã sö dông chøc n¨ng nµy - kh«ng kh¶ dông khi ®ang JOB !
1 UIIT_CUSTOM_CLIENT_FUNC_UPSTR_TOOLTIP Tu dong + diem suc manh khi len cap Tù ®éng + ®iÓm søc m¹nh khi lªn cÊp !
1 UIIT_CUSTOM_CLIENT_FUNC_UPINT_TOOLTIP Tu dong + diem tri tue khi len cap Tù ®éng + ®iÓm trÝ tuÖ khi lªn cÊp !
1 UIIT_CUSTOM_CLIENT_FUNC_GNJ_TOOLTIP Hien thi ten Guild khi JOB HiÓn thÞ tªn Guild khi JOB !
1 UIIT_CUSTOM_CLIENT_FUNC_ZOOM_TOOLTIP Bat/tat Zoom xa BËt/t¾t Zoom xa !
1 UIIT_CUSTOM_CLIENT_FUNC_NUDE_TOOLTIP Nude mode Nude mode
//Custom Lottery
1 CUSTOM_LOTTERY_TITLE Lottery Event Lottery Event
1 CUSTOM_LOTTERY_PLAYER_TOOLTIP Lottery Event Sè ng*êi ®· tham gia
1 CUSTOM_LOTTERY_SUM_SILK_TOOLTIP Lottery Event Tæng sè silk thu ®*îc
1 CUSTOM_LOTTERY_SUM_GOLD_TOOLTIP Lottery Event Tæng sè gold thu ®*îc
1 CUSTOM_LOTTERY_STT_TOOLTIP Time HiÓn thÞ thêi gian Giê:Phót cßn l¹i cho ®Õn khi EVENT diÔn ra !
1 CUSTOM_LOTTERY_MIN_VALUES Lottery Event Sè silk tèi thiÓu ®Ó tham gia lµ 100
1 CUSTOM_LOTTERY_TUTORIAL_TOOLTIP Lottery Event H*íng dÉn ch¬i Event Lottery:\nTÊt c¶ ng*êi ch¬i ®Òu cã thÓ tham gia b»ng c¸ch bá 1 sè Silk/Gold ®Ó mua vÐ tham gia phÝa d*íi.\n§Õn thêi ®iÓm quay th*ëng, hÖ thèng sÏ chän ngÉu nhiªn mét ng*êi duy nhÊt tróng th*ëng vµ nhËn toµn bé sè Silk/Gold ®· thu ®*îc tr*íc ®ã.\nKh«ng giíi h¹n sè vÐ,mua cµng nhiÒu vÐ trong 1 l*ît quay th*ëng th× tØ lÖ chiÕn th¾ng trong l*ît ®ã cµng cao(kh«ng cã nghÜa lµ cao nhÊt sÏ ch¾c ch¾n th¾ng, hoµn toµn dùa vµo vËn may, h·y c©n nh¾c ®Ó ®*a ra c¸ch ch¬i hiÖu qu¶ nhÊt).\nPhÇn th*ëng lµ Gold sÏ ®*îc chuyÓn vµo kho.\nKhi quay th*ëng ng*êi ®· ®¨ng ký ch¬i kh«ng cÇn online.
//Custom DReward
1 CUSTOM_DREWARD_OUT Dreward H«m nay b¹n ®· ®iÓm danh råi
//Custom FWKills
1 CUSTOM_FW_KILLS_TITLE FWKills Top Kill CTC
1 CUSTOM_FW_KILLS_KILLS_LABEL FWKills Kill
//Custom MD_EVENT
1 CUSTOM_MD_EVENT_TITLE FWKills Top Kill
1 CUSTOM_MD_EVENT_POINTS_LABEL FWKills Kill
//So sanh
1 UII_ITEM_COMPARE \n [HÖ Thèng So S¸nh] [Gi÷ ALT vµ chØ vµo trang bÞ] \n [HÖ Thèng So S¸nh] [Gi÷ ALT vµ chØ vµo trang bÞ]
//HWAN COLOR
1 UIIT_HWAN_COLOR_1 E0FFFF
1 UIIT_HWAN_COLOR_2 FFE4E1
1 UIIT_HWAN_COLOR_3 6495ED
1 UIIT_HWAN_COLOR_4 556B2F
1 UIIT_HWAN_COLOR_5 9932CC
1 UIIT_HWAN_COLOR_6 000000
1 UIIT_HWAN_COLOR_7 F5FFFA
1 UIIT_HWAN_COLOR_8 66CDAA
1 UIIT_HWAN_COLOR_9 FFFFF0
1 UIIT_HWAN_COLOR_10 5F9EA0
1 UIIT_HWAN_COLOR_11 20B2AA
1 UIIT_HWAN_COLOR_12 F0FFFF
1 UIIT_HWAN_COLOR_13 C0C0C0
1 UIIT_HWAN_COLOR_14 FFF0F5
1 UIIT_HWAN_COLOR_15 B0C4DE
1 UIIT_HWAN_COLOR_16 800000
1 UIIT_HWAN_COLOR_17 FF8C00
1 UIIT_HWAN_COLOR_18 7FFF00
1 UIIT_HWAN_COLOR_19 DCDCDC
1 UIIT_HWAN_COLOR_20 40E0D0
1 UIIT_HWAN_COLOR_21 8B0000
1 UIIT_HWAN_COLOR_22 FF7F50
1 UIIT_HWAN_COLOR_23 ADFF2F
1 UIIT_HWAN_COLOR_24 483D8B
1 UIIT_HWAN_COLOR_25 A0522D
1 UIIT_HWAN_COLOR_26 00FFFF
1 UIIT_HWAN_COLOR_27 6A5ACD
1 UIIT_HWAN_COLOR_28 008080
1 UIIT_HWAN_COLOR_29 8FBC8F
1 UIIT_HWAN_COLOR_30 9370DB
1 UIIT_HWAN_COLOR_31 E9967A
1 UIIT_HWAN_COLOR_32 778899
1 UIIT_HWAN_COLOR_33 B8860B
1 UIIT_HWAN_COLOR_34 FF00FF
1 UIIT_HWAN_COLOR_35 FFEBCD
1 UIIT_HWAN_COLOR_36 DA70D6
1 UIIT_HWAN_COLOR_37 AFEEEE
1 UIIT_HWAN_COLOR_38 000080
1 UIIT_HWAN_COLOR_39 191970
1 UIIT_HWAN_COLOR_40 FDF5E6
1 UIIT_HWAN_COLOR_41 32CD32
1 UIIT_HWAN_COLOR_42 D2B48C
1 UIIT_HWAN_COLOR_43 48D1CC
1 UIIT_HWAN_COLOR_44 00FFFF
1 UIIT_HWAN_COLOR_45 B22222
1 UIIT_HWAN_COLOR_46 FFF5EE
1 UIIT_HWAN_COLOR_47 FFFFFF
1 UIIT_HWAN_COLOR_48 FAEBD7
1 UIIT_HWAN_COLOR_49 FFA07A
1 UIIT_HWAN_COLOR_50 FFDAB9
1 UIIT_HWAN_COLOR_51 FFFACD
1 UIIT_HWAN_COLOR_52 696969
1 UIIT_HWAN_COLOR_53 FFFAFA
1 UIIT_HWAN_COLOR_54 FFB6C1
1 UIIT_HWAN_COLOR_55 CD5C5C
1 UIIT_HWAN_COLOR_56 00FF00
1 UIIT_HWAN_COLOR_57 0000FF
1 UIIT_HWAN_COLOR_58 F5F5F5
1 UIIT_HWAN_COLOR_59 FFA07A
1 UIIT_HWAN_COLOR_60 8B008B
1 UIIT_HWAN_COLOR_61 800080
1 UIIT_HWAN_COLOR_62 F0E68C
1 UIIT_HWAN_COLOR_63 FFE4C4
1 UIIT_HWAN_COLOR_64 DAA520
1 UIIT_HWAN_COLOR_65 2F4F4F
1 UIIT_HWAN_COLOR_66 F4A460
1 UIIT_HWAN_COLOR_67 00FA9A
1 UIIT_HWAN_COLOR_68 808080
1 UIIT_HWAN_COLOR_69 FFE4B5
1 UIIT_HWAN_COLOR_70 2E8B57
1 UIIT_HWAN_COLOR_71 00FF7F
1 UIIT_HWAN_COLOR_72 D2691E
1 UIIT_HWAN_COLOR_73 FF4500
1 UIIT_HWAN_COLOR_74 D3D3D3
1 UIIT_HWAN_COLOR_75 7B68EE
1 UIIT_HWAN_COLOR_76 F08080
1 UIIT_HWAN_COLOR_77 FA8072
1 UIIT_HWAN_COLOR_78 DB7093
1 UIIT_HWAN_COLOR_79 87CEFA
1 UIIT_HWAN_COLOR_80 FAFAD2
1 UIIT_HWAN_COLOR_81 00BFFF
1 UIIT_HWAN_COLOR_82 CD853F
1 UIIT_HWAN_COLOR_83 4682B4
1 UIIT_HWAN_COLOR_84 7CFC00
1 UIIT_HWAN_COLOR_85 FFA500
1 UIIT_HWAN_COLOR_86 D8BFD8
1 UIIT_HWAN_COLOR_87 F0FFF0
1 UIIT_HWAN_COLOR_88 4169E1
1 UIIT_HWAN_COLOR_89 8A2BE2
1 UIIT_HWAN_COLOR_90 FFEFD5
1 UIIT_HWAN_COLOR_91 F8F8FF
1 UIIT_HWAN_COLOR_92 C71585
1 UIIT_HWAN_COLOR_93 BDB76B
1 UIIT_HWAN_COLOR_94 ADD8E6
1 UIIT_HWAN_COLOR_95 008000
1 UIIT_HWAN_COLOR_96 FF1493
1 UIIT_HWAN_COLOR_97 F5DEB3
1 UIIT_HWAN_COLOR_98 FF6347
1 UIIT_HWAN_COLOR_99 B0E0E6
1 UIIT_HWAN_COLOR_100 EE82EE
1 UIIT_HWAN_COLOR_101 2E8B57
1 UIIT_HWAN_COLOR_102 00008B
1 UIIT_HWAN_COLOR_103 DCDCDC
1 UIIT_HWAN_COLOR_104 808000
1 UIIT_HWAN_COLOR_105 ADFF2F
1 UIIT_HWAN_COLOR_106 FFFFF0
1 UIIT_HWAN_COLOR_107 AFEEEE
1 UIIT_HWAN_COLOR_108 FFF0F5
1 UIIT_HWAN_COLOR_109 00FA9A
1 UIIT_HWAN_COLOR_110 DB7093
1 UIIT_HWAN_COLOR_111 7B68EE
1 UIIT_HWAN_COLOR_112 66CDAA
1 UIIT_HWAN_COLOR_113 F08080
1 UIIT_HWAN_COLOR_114 B0E0E6
1 UIIT_HWAN_COLOR_115 DDA0DD
1 UIIT_HWAN_COLOR_116 FAEBD7
1 UIIT_HWAN_COLOR_117 000000
1 UIIT_HWAN_COLOR_118 2F4F4F
1 UIIT_HWAN_COLOR_119 8A2BE2
1 UIIT_HWAN_COLOR_120 FFF8DC
1 UIIT_HWAN_COLOR_121 8FBC8F
1 UIIT_HWAN_COLOR_122 00FFFF
1 UIIT_HWAN_COLOR_123 7FFFD4
1 UIIT_HWAN_COLOR_124 00FFFF
1 UIIT_HWAN_COLOR_125 000080
1 UIIT_HWAN_COLOR_126 7CFC00
1 UIIT_HWAN_COLOR_127 FFE4B5
1 UIIT_HWAN_COLOR_128 FFFACD
1 UIIT_HWAN_COLOR_129 FFA07A
1 UIIT_HWAN_COLOR_130 F5F5F5
1 UIIT_HWAN_COLOR_131 E6E6FA
1 UIIT_HWAN_COLOR_132 FDF5E6
1 UIIT_HWAN_COLOR_133 F0FFF0
1 UIIT_HWAN_COLOR_134 F0FFFF
1 UIIT_HWAN_COLOR_135 9370DB
1 UIIT_HWAN_COLOR_136 00CED1
1 UIIT_HWAN_COLOR_137 4682B4
1 UIIT_HWAN_COLOR_138 FFA07A
1 UIIT_HWAN_COLOR_139 5F9EA0
1 UIIT_HWAN_COLOR_140 9400D3
1 UIIT_HWAN_COLOR_141 FFA500
1 UIIT_HWAN_COLOR_142 20B2AA
1 UIIT_HWAN_COLOR_143 FF69B4
1 UIIT_HWAN_COLOR_144 008080
1 UIIT_HWAN_COLOR_145 FFDAB9
1 UIIT_HWAN_COLOR_146 00BFFF
1 UIIT_HWAN_COLOR_147 BA55D3
1 UIIT_HWAN_COLOR_148 7B68EE
1 UIIT_HWAN_COLOR_149 A9A9A9
1 UIIT_HWAN_COLOR_150 BDB76B
1 UIIT_HWAN_COLOR_151 D2B48C
1 UIIT_HWAN_COLOR_152 C71585
1 UIIT_HWAN_COLOR_153 808080
1 UIIT_HWAN_COLOR_154 87CEFA
1 UIIT_HWAN_COLOR_155 F5DEB3
1 UIIT_HWAN_COLOR_156 DA70D6
1 UIIT_HWAN_COLOR_157 DC143C
1 UIIT_HWAN_COLOR_158 C0C0C0
1 UIIT_HWAN_COLOR_159 228B22
1 UIIT_HWAN_COLOR_160 FAFAD2
1 UIIT_HWAN_COLOR_161 6495ED
1 UIIT_HWAN_COLOR_162 FFEBCD
1 UIIT_HWAN_COLOR_163 DAA520
1 UIIT_HWAN_COLOR_164 0000CD
1 UIIT_HWAN_COLOR_165 FF8C00
1 UIIT_HWAN_COLOR_166 F5FFFA
1 UIIT_HWAN_COLOR_167 FA8072
1 UIIT_HWAN_COLOR_168 800000
1 UIIT_HWAN_COLOR_169 FFEFD5
1 UIIT_HWAN_COLOR_170 FF1493
1 UIIT_HWAN_COLOR_171 0000FF
1 UIIT_HWAN_COLOR_172 FFE4E1
1 UIIT_HWAN_COLOR_173 708090
1 UIIT_HWAN_COLOR_174 CD853F
1 UIIT_HWAN_COLOR_175 FFE4C4
1 UIIT_HWAN_COLOR_176 4169E1
1 UIIT_HWAN_COLOR_177 7FFF00
1 UIIT_HWAN_COLOR_178 90EE90
1 UIIT_HWAN_COLOR_179 6A5ACD
1 UIIT_HWAN_COLOR_180 008000
1 UIIT_HWAN_COLOR_181 9932CC
1 UIIT_HWAN_COLOR_182 FF00FF
1 UIIT_HWAN_COLOR_183 EEE8AA
1 UIIT_HWAN_COLOR_184 ADD8E6
1 UIIT_HWAN_COLOR_185 D2691E
1 UIIT_HWAN_COLOR_186 F8F8FF
1 UIIT_HWAN_COLOR_187 98FB98
1 UIIT_HWAN_COLOR_188 FFFFFF
1 UIIT_HWAN_COLOR_189 F0F8FF
1 UIIT_HWAN_COLOR_190 FFDEAD
1 UIIT_HWAN_COLOR_191 CD5C5C
1 UIIT_HWAN_COLOR_192 FFFAFA
1 UIIT_HWAN_COLOR_193 3CB371
1 UIIT_HWAN_COLOR_194 FFF5EE
1 UIIT_HWAN_COLOR_195 FFFFE0
1 UIIT_HWAN_COLOR_196 EE82EE
1 UIIT_HWAN_COLOR_197 D8BFD8
1 UIIT_HWAN_COLOR_198 8B0000
1 UIIT_HWAN_COLOR_199 8B4513
1 UIIT_HWAN_COLOR_200 1E90FF
1 UIIT_STT_AFK_CTF 0 0 0 0 0 0 You have been disconnected from the server because you were AFK on CTF. B¹n bÞ ng¾t kÕt nèi v× AFK trong Event c*íp cê !
1 UIIT_STT_AFK_FW 0 0 0 0 0 0 You have been disconnected from the server because you were AFK on FW. B¹n bÞ ng¾t kÕt nèi v× AFK trong Event CTC !
1 UIIT_STT_AFK_BA 0 0 0 0 0 0 You have been disconnected from the server because you were AFK on BA. B¹n bÞ ng¾t kÕt nèi v× AFK trong §TDV !
1 UIIT_STT_ONEACC_ALLOWED_JOB 0 0 0 0 0 0 You are not allowed to equip job suit as long as one or more characters in your account wear job suit. Trong 1 TK chØ ®*îc phÐp cã 1 nh©n vËt mÆc JOB !
1 UIIT_STT_ACC_LOCKED 0 0 0 0 0 0 You are not allowed to perform this action, character is locked, type: /unlock <pass> in all chat to un-lock. Nh©n vËt ®ang trong tr¹ng th¸i khãa b¶o mËt !
1 UIIT_STT_RESTART_DELAY 0 0 0 0 0 0 You are not allowed to restart the game in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !
1 UIIT_STT_PTFORM_DELAY 0 0 0 0 0 0 You are not allowed to form a party in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !
1 UIIT_STT_PTDEL_DELAY 0 0 0 0 0 0 You are not allowed to delete a party entry in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !
1 UIIT_STT_RESTART_DISABLE 0 0 0 0 0 0 You are not allowed to restart the game, please use the exit option. Khëi ®éng l¹i kh«ng kh¶ dông, h·y chän tho¸t game !
1 UIIT_STT_JOBMODE_DISABLE 0 0 0 0 0 0 You are not allowed to enter job mode. HÖ thèng JOB t¹m khãa !
1 UIIT_STT_ADV_DG_DISABLE 0 0 0 0 0 0 You are not allowed to use advanced elixir on this item degree. LKD ®Æc biÖt kh«ng kh¶ dông t¹i cÊp trang bÞ nµy !
1 UIIT_STT_EXIT_DELAY 0 0 0 0 0 0 You are not allowed to use exit the game in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_ZERK_DELAY 0 0 0 0 0 0 You are not allowed to use berseker mode in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !
1 UIIT_STT_DISABLE_JOBFELLOWOPEN 0 0 0 0 0 0 You cannot attempt to use job mode while fellow pet is summoned, please close it and try again. Kh«ng thÓ triÖu håi PET2 khi ®ang JOB!
1 UIIT_STT_DISABLE_TAXES 0 0 0 0 0 0 You are not allowed to change fortress war taxes rate. Kh«ng thÓ thay ®æi thuÕ thµnh !
1 UIIT_STT_DISABLE_GOLDITEM_DROP_INTOWN 0 0 0 0 0 0 You are not allowed to drop items or gold in towns. Kh«ng thÓ vøt ®å trong thµnh !
1 UIIT_STT_DISABLE_FW_PETS 0 0 0 0 0 0 You cannot summon attack or fellow pets inside fortress war grounds. Kh«ng thÓ triÖu håi PET trong CTC !
1 UIIT_STT_DISABLE_FW_PETS_MOVE 0 0 0 0 0 0 You cannot move around fortress war grounds when pet is summoned, please close it and try again. Vui lßng t¾t thó c*ng !
1 UIIT_STT_DISABLE_FELLOW_ZERK 0 0 0 0 0 0 You cannot summon fellow pets while berseker mode is on. Kh«ng thÓ triÖu håi PET trong tr¹ng th¸i cuång né !
1 UIIT_STT_DISABLE_ZERK_FELLOW 0 0 0 0 0 0 You cannot attempt to use berseker mode while fellow pet is summoned, please close it and try again. Kh«ng thÓ tiÕn vµo tr¹ng th¸i cuång né khi ®ang triÖu håi PET !
1 UIIT_STT_DISABLE_THIEF_REWARDM 0 0 0 0 0 0 You cannot access thiefs reward menu. Chøc n¨ng nµy ®· bÞ ®ãng bëi GM !
1 UIIT_STT_DISABLE_FELLOW_JOB 0 0 0 0 0 0 You cannot summon fellow pets while job mode is on. Kh«ng thÓ triÖu håi PET2 khi ®ang JOB !
1 UIIT_STT_STALL_DELAY 0 0 0 0 0 0 You are not allowed to create a stall in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_GUILDMEMBER_DELAY 0 0 0 0 0 0 You are not allowed to join guild members in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_GUILDMEMBER_LIMIT 0 0 0 0 0 0 Your guild has reached the maximum amount of members. Héi cña b¹n ®· ®¹t giíi h¹n thµnh viªn !
1 UIIT_STT_UNIONMEMBER_DELAY 0 0 0 0 0 0 You are not allowed to join union members in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_UNIONMEMBER_LIMIT 0 0 0 0 0 0 Your union alliance has reached the maximum amount of members. Liªn minh cña b¹n ®· ®¹t giíi h¹n thµnh viªn !
1 UIIT_STT_EXCHANGE_DELAY 0 0 0 0 0 0 You are not allowed to issue an exchange request in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_ACADEMY_INVITE 0 0 0 0 0 0 Academy invitation is completely disabled. Chøc n¨ng nµy ®· bÞ ®ãng bëi GM !
1 UIIT_STT_ACADEMY_CREATION 0 0 0 0 0 0 Academy creation is completely disabled. Chøc n¨ng nµy ®· bÞ ®ãng bëi GM !
1 UIIT_STT_BA_REQLVL 0 0 0 0 0 0 Your level is too low to participate in Battle Arena. CÊp ®é nh©n vËt kh«ng ®¹t yªu cÇu !
1 UIIT_STT_CTF_REQLVL 0 0 0 0 0 0 Your level is too low to participate in Capture the flag. CÊp ®é nh©n vËt kh«ng ®¹t yªu cÇu !
1 UIIT_STT_FW_TRACE 0 0 0 0 0 0 You cannot trace entities during Fortress War. Kh«ng thÓ theo sau khi CTC !
1 UIIT_STT_FW_RESSSCROLL 0 0 0 0 0 0 You are not allowed to use resurrection scroll during Fortress War. Phøc Ho¹t kh«ng kh¶ dông trong CTC !
1 UIIT_STT_CTF_RESSSCROLL 0 0 0 0 0 0 You are not allowed to use resurrection scroll during Fortress War. Phøc Ho¹t kh«ng kh¶ dông trong c*íp cê !
1 UIIT_STT_GLOBAL_REQLVL 0 0 0 0 0 0 Your level is too low to use global chat scroll. CÊp ®é nh©n vËt ch*a ®ñ ®Ó sö dông chat all .
1 UIIT_STT_GLOBAL_DELAY 0 0 0 0 0 0 You are not allowed to use global chat scroll in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_VEHITRAN_DELAY 0 0 0 0 0 0 You are not allowed to use a vehicle or transport in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_PLUS_LIMIT 0 0 0 0 0 0 You have reached the maximum amount of plus permitted. Item ®· ®¹t giíi h¹n kh«ng thÓ n©ng cÊp !
1 UIIT_STT_INSUFFICIENT_PRIVILIGES 0 0 0 0 0 0 Insufficient privileges to perform this action. B¹n kh«ng ®ñ quyÒn h¹n ®Ó thùc hiÖn hµnh ®éng nµy !
1 UIIT_STT_PLAYER_APPARATED 0 0 0 0 0 0 You have been apparated successfully. You have been apparated successfully.
1 UIIT_STT_GOODS_DROPOUT_VIOLATION 0 0 0 0 0 0 You have to be 300m outside of towns to terminate vehicles/transports. B¹n ph¶i c¸ch xa thµnh tèi thiÓu 300m míi cã thÓ hñy hµng !
1 UIIT_STT_SKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill. Kü n¨ng bÞ khãa !
1 UIIT_STT_FWSKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill during Fortress War. Kü n¨ng nµy kh«ng kh¶ dông trong CTC !
1 UIIT_STT_CTFSKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill during CTF. Kü n¨ng nµy kh«ng kh¶ dông trong c*íp cê !
1 UIIT_STT_BASKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill during Battle Arena. Kü n¨ng nµy kh«ng kh¶ dông trong ®Êu tr*êng !
1 UIIT_STT_SASKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill inside Radium Arena. You are not allowed to use this skill inside Radium Arena.
1 UIIT_STT_JOBSKILL_PREVENTION 0 0 0 0 0 0 You are not allowed to use this skill while wearing a job suit. Kü n¨ng nµy kh«ng kh¶ dông trong ho¹t ®éng nghÒ !
1 UIIT_STT_GOODS_PICKUP_VIOLATION 0 0 0 0 0 0 You are not allowed to pickup goods inside towns under job mode, click on the ground not the sky. You are not allowed to pickup goods inside towns under job mode, click on the ground not the sky.
1 UIIT_STT_CHAT_FILTER 0 0 0 0 0 0 Some expressions are not allowed in our server. Ph¸t hiÖn ký tù kh«ng hîp lÖ !
1 UIIT_STT_BOT_ALLOW 0 0 0 0 0 0 Botting is not allowed in our server, bye bye! Botting is not allowed in our server, bye bye!
1 UIIT_STT_BOT_ALCHEMY 0 0 0 0 0 0 Third-party application fusing is not allowed. Third-party application fusing is not allowed.
1 UIIT_STT_BOT_PT 0 0 0 0 0 0 Third-party application partying is not allowed. Third-party application partying is not allowed.
1 UIIT_STT_BOT_ACTIONS 0 0 0 0 0 0 Third-party application actions is not allowed. Third-party application actions is not allowed.
1 UIIT_STT_BOT_BA 0 0 0 0 0 0 Third-party application are not allowed to participate in Battle Arena. Third-party application are not allowed to participate in Battle Arena.
1 UIIT_STT_BOT_CTF 0 0 0 0 0 0 Third-party application are not allowed to participate in Capture the flag. Third-party application are not allowed to participate in Capture the flag.
1 UIIT_STT_BOT_FW 0 0 0 0 0 0 Third-party application are not allowed to participate in Fortress war. Third-party application are not allowed to participate in Fortress war.
1 UIIT_STT_BOT_PVP 0 0 0 0 0 0 Third-party application are not allowed to participate in PvP. Third-party application are not allowed to participate in PvP.
1 UIIT_STT_SURV_FULL 0 0 0 0 0 0 You cannot register because the survival arena is full. B¹n kh«ng thÓ ®¨ng ký v× EVENT Survival Arena ®· max ng*êi ch¬i !
1 UIIT_STT_SURV_ALRDYREG 0 0 0 0 0 0 You are already registered to the survival arena. B¹n ®· ®¨ng ký EVENT Survival Arena råi !
1 UIIT_STT_SURV_REGCOMP 0 0 0 0 0 0 You have successfully registered to the survival arena. Chóc mõng b¹n ®· ®¨ng ký thµnh c«ng Survival Arena!
1 UIIT_STT_SURV_REGCAN 0 0 0 0 0 0 Your registeration to the survival arena has been cancelled. B¹n ®· hñy ®¨ng ký EVENT Survival Arena !
1 UIIT_STT_SURV_FORMPT 0 0 0 0 0 0 You cannot form a party inside the survival arena. Kh«ng kh¶ dông khi ®ang tham gia EVENT !
1 UIIT_STT_SURV_APPLYFORMEDPT 0 0 0 0 0 0 You cannot apply to a formed party while registered to the survival arena. Kh«ng kh¶ dông khi ®ang tham gia EVENT !
1 UIIT_STT_SURV_INVITEPT 0 0 0 0 0 0 You cannot invite to a party inside the surfvival arena. Gia nhËp nhãm bÞ cÊm trong khu vùc nµy !
1 UIIT_STT_SURV_WAIT 0 0 0 0 0 0 Waiting for other players. Vui lßng chê ng*êi ch¬i kh¸c !
1 UIIT_STT_SURV_CANCAPE 0 0 0 0 0 0 You cannot unequip your cape while your participating in the survival arena event. Kh«ng thÓ hñy tr¹ng th¸i PVP trong EVENT
1 UIIT_STT_SURV_GATECLOSED 0 0 0 0 0 0 You cannot enter the survival arena because the gate is closed. Kh«ng thÓ vµo khu vùc nµy v× cæng dÞch chuyÓn ®ang ®ãng !
1 UIIT_STT_SURV_NOTREGISTERED 0 0 0 0 0 0 You cannot enter to the survival arena because you did not register to the event. B¹n kh«ng thÓ tham gia EVENT v× b¹n ch*a ®¨ng ký !
1 UIIT_STT_SURV_INSIDEPT 0 0 0 0 0 0 You cannot enter to the survival arena inside a party or a party matching. B¹n kh«ng thÓ vµo khu vùc EVENT v× ®ang trong PT !
1 UIIT_STT_SURV_INSIDEJOB 0 0 0 0 0 0 You cannot enter to the survival arena in job. B¹n kh«ng thÓ vµo khu vùc EVENT v× ®ang mÆc JOB !
1 UIIT_STT_SURV_DC 0 0 0 0 0 0 You have been disconnected from the server because you stayed in the survival arena after it finished. Sau khi EVENT kÕt thóc h·y rêi khái khu vùc nµy nÕu kh«ng sÏ bÞ dis !
1 UIIT_STT_SURV_ACT_BLOCK 0 0 0 0 0 0 All actions our blocked until you wear a cape. Mäi hµnh ®éng ®Òu bÞ cÊm khi ®ang ®eo kh¨n !
1 UIIT_STT_SURV_HAMMERS_ACT_LIMIT 0 0 0 0 0 0 This behaviour isn't allowed on this event. Hµnh ®éng nµy kh«ng ®*îc phÐp trong EVENT !
1 UIIT_STT_BLOCK_TEAM_CHAT 0 0 0 0 0 0 You are not allowed to send private messages to the management team unless they send you first. Please send the message over the Radium chat. You are not allowed to send private messages to the management team unless they send you first. Please send the message over the Radium chat.
1 UIIT_STT_PT_MATCH_PROTECTED 0 0 0 0 0 0 This party is protected with password, please send the command "!enterpw <pass>" to enter the party. This party is protected with password, please send the command "!enterpw <pass>" to enter the party.
1 UIIT_STT_UE_REGCOMP 0 0 0 0 0 0 You have successfully registered to the unique event. B¹n ®· ®¨ng ký Unique EVENT thµnh c«ng !
1 UIIT_STT_UE_ALRDYREG 0 0 0 0 0 0 You are already registered to the unique event. B¹n ®· ®¨ng ký Unique EVENT tr*íc ®ã råi !
1 UIIT_STT_FW_HWID 0 0 0 0 0 0 You have reached the maxmimum allowed PCs to enter the fortress. B¹n ®· ®¹t giíi h¹n ACC/PC khi tham gia CTC !
1 UIIT_STT_E_ZONE_HWID 0 0 0 0 0 0 You have reached the maxmimum allowed PCs to enter the special events zone. B¹n ®· ®¹t giíi h¹n ACC/PC khi tham gia EVENT !
1 UIIT_STT_ITEM_INSIDE_TOWN 0 0 0 0 0 0 You cannot use this item outside of towns. Kh«ng thÓ sö dông item nµy ngoµi thµnh !
1 UIIT_STT_LOTTO_REG 0 0 0 0 0 0 You have been successfully registered to the lottery event, please wait for the results. B¹n ®· ®¨ng ký EVENT Lottery thµnh c«ng !
1 UIIT_STT_TITLES_INST_REMOVE 0 0 0 0 0 0 Type !settitle 0 to remove your title, Available title IDs on this server: Type !settitle 0 to remove your title, Available title IDs on this server:
1 UIIT_STT_TITLES_INVALID 0 0 0 0 0 0 Your title code must be a valid 2-digit number. Your title code must be a valid 2-digit number.
1 UIIT_STT_TITLES_SUC 0 0 0 0 0 0 Your new title has been set successfully. Your new title has been set successfully.
1 UIIT_STT_TITLES_VIP_ONLY 0 0 0 0 0 0 Only VIP members are allowed to use this command. Only VIP members are allowed to use this command.
1 UIIT_STT_TITLES_INVALID_PIN 0 0 0 0 0 0 Your pin code must be a valid 4-digit number. Your pin code must be a valid 4-digit number.
1 UIIT_STT_TITLES_WRONG_PIN 0 0 0 0 0 0 Your pin code is invalid or incorrect, please try again. Your pin code is invalid or incorrect, please try again.
1 UIIT_STT_BA_FW_REG 0 0 0 0 0 0 Registration to Bandit Fortress is disabled. CTC STT t¹m khãa !
1 UIIT_STT_JG_FW_REG 0 0 0 0 0 0 Registration to Jangan Fortress is disabled. CTC TA t¹m khãa !
1 UIIT_STT_HT_FW_REG 0 0 0 0 0 0 Registration to Hotan Fortress is disabled. CTC H§ t¹m khãa !
1 UIIT_STT_CT_FW_REG 0 0 0 0 0 0 Registration to Constantinople Fortress is disabled. CTC COS t¹m khãa !
1 UIIT_STT_GM_NOT_PRIV 0 0 0 0 0 0 You are not privileged to use this command. B¹n kh«ng ®ñ quyÒn h¹n ®Ó sö dông lÖnh nµy !
1 UIIT_STT_GM_NOT_IP 0 0 0 0 0 0 This IP is not allowed to login into this [GM] Account, disconnected. IP nµy kh«ng ®*îc cÊp phÐp ®¨ng nhËp vµo TK GM !
1 UIIT_STT_GM_NOT_PRIVG 0 0 0 0 0 0 You are not a privileged [GM], a message has been sent to notify the server owner, bye bye! Tµi kho¶n nµy ch*a ®*îc thªm vµo danh s¸ch GM !
//TANSAT
1 UIIT_STT_LOD_FULL 0 0 0 0 0 0 You cannot register because the tansat arena is full. B¹n kh«ng thÓ ®¨ng ký v× EVENT ®· ®ñ ng*êi ch¬i !
1 UIIT_STT_LOD_ALRDYREG 0 0 0 0 0 0 You are already registered to the tansat arena. B¹n ®· ®¨ng ký tr*íc ®ã råi !
1 UIIT_STT_LOD_REGCOMP 0 0 0 0 0 0 You have successfully registered to the tansat arena. Chóc mõng b¹n ®· ®¨ng ký tham gia EVENT thµnh c«ng !
1 UIIT_STT_LOD_REGCAN 0 0 0 0 0 0 Your registeration to the tansat arena has been cancelled. B¹n ®· hñy tham gia EVENT !
//RED BATTLE
1 UIIT_STT_RB_FULL 0 0 0 0 0 0 You cannot register because the tansat arena is full. B¹n kh«ng thÓ ®¨ng ký v× EVENT ®· ®ñ ng*êi ch¬i !
1 UIIT_STT_RB_ALRDYREG 0 0 0 0 0 0 You are already registered to the tansat arena. B¹n ®· ®¨ng ký tr*íc ®ã råi !
1 UIIT_STT_RB_REGCOMP 0 0 0 0 0 0 You have successfully registered to the tansat arena. Chóc mõng b¹n ®· ®¨ng ký tham gia EVENT thµnh c«ng !
1 UIIT_STT_RB_REGCAN 0 0 0 0 0 0 Your registeration to the tansat arena has been cancelled. B¹n ®· hñy tham gia EVENT !
1 UIIT_STT_RB_FORMPT 0 0 0 0 0 0 You cannot form a party inside the tansat arena. B¹n kh«ng thÓ tham gia EVENT khi ®ang trong PT !
1 UIIT_STT_RB_APPLYFORMEDPT 0 0 0 0 0 0 You cannot apply to a formed party while registered to the tansat arena. ThiÕt lËp nhãm kh«ng kh¶ dông trong khu vùc EVENT !
1 UIIT_STT_RB_INVITEPT 0 0 0 0 0 0 You cannot invite to a party inside the surfvival arena. ThiÕt lËp nhãm kh«ng kh¶ dông trong khu vùc EVENT !
1 UIIT_STT_RB_WAIT 0 0 0 0 0 0 Waiting for other players. H·y chê ng*êi ch¬i kh¸c !
//JOB
1 UIIT_STT_JOB_TRACE 0 0 0 0 0 0 You cannot trace entities under job mode. Kh«ng thÓ theo sau trong ho¹t ®éng JOB !
1 UIIT_STT_JOB_RESSDELAY 0 0 0 0 0 0 You are not allowed to be resurrected in a short period of time, please wait. Vui lßng chê thªm gi©y l¸t !.
1 UIIT_STT_JOB_RESSBTDP 0 0 0 0 0 0 You are not allowed to use reverse scroll to previous death point under job mode. Kh«ng thÓ sö dông DCN ®Õn ®iÓm chÕt trong ho¹t ®éng JOB !
1 UIIT_STT_JOB_MAPLOC 0 0 0 0 0 0 You are not allowed to use reverse scroll to map location under job mode. Kh«ng thÓ sö dông DCN ®Õn ®Þa ®iÓm cô thÓ trªn map trong ho¹t ®éng JOB !
1 UIIT_STT_JOB_RESSSCROLL 0 0 0 0 0 0 You are not allowed to use resurrection scroll under job mode. Kh«ng thÓ sö dông phøc ho¹t trong ho¹t ®éng JOB !
1 UIIT_STT_JOB_RESSLRP 0 0 0 0 0 0 You are not allowed to use reverse scroll to last recall point under job mode. Kh«ng thÓ sö dông DCN ®Õn ®iÓm cuèi trong ho¹t ®éng JOB !
1 UIIT_STT_JOB_HWID 0 0 0 0 0 0 You have exceeded the amount of allowed PCs eligible to enter job mode. B¹n ®· ®¹t giíi h¹n JOB/PC !
1 UIIT_STT_JOB_HWID_SPAWN 0 0 0 0 0 0 You have exceeded the amount of allowed PCs eligible to enter job mode, please take off the job suit from your other logged in character to login. B¹n ®· ®¹t giíi h¹n JOB/PC !
1 UIIT_STT_JOB_MERC_BLOCK 0 0 0 0 0 0 You are not allowed to use a mercenary without a job suit. You are not allowed to use a mercenary without a job suit.
1 UIIT_STT_JOB_EXCHANGE 0 0 0 0 0 0 You are not allowed to use a mercenary without a job suit. Kh«ng thÓ giao dÞch khi ®ang JOB.
1 UIIT_STT_JOB_CANCEL_EXCHANGE 0 0 0 0 0 0 You are not allowed to use a mercenary without a job suit. Kh«ng thÓ chÊp nhËn giao dÞch khi ®ang JOB.
//RADIUM
1 UIIT_STT_SET_RECALL_DIS 0 0 0 0 0 0 This ability is disabled for the job towns. This ability is disabled for the job towns.
1 UIIT_STT_MAST_UP_BLOCK 0 0 0 0 0 0 You are not allowed to manually increase your mastery, please use the master scrolls in your inventory. You are not allowed to manually increase your mastery, please use the master scrolls in your inventory.
1 UIIT_STT_WANTED_TRADER_ONLY 0 0 0 0 0 0 Only traders are allowed to use the wanted scroll. Only traders are allowed to use the wanted scroll.
1 UIIT_STT_JOB_TP_BLOCK 0 0 0 0 0 0 You are not allowed to walk around in jangan or donwhang region without a job suit. You are not allowed to walk around in jangan or donwhang region without a job suit.
1 UIIT_STT_JOB_LDP_BLOCK 0 0 0 0 0 0 You are not allowed to reverse back to death point if you died in job regions. You are not allowed to reverse back to death point if you died in job regions.
1 UIIT_STT_JOB_LRP_BLOCK 0 0 0 0 0 0 You are not allowed to reverse back to recall point if its in job regions. You are not allowed to reverse back to recall point if its in job regions.
1 UIIT_STT_JOB_LMP_BLOCK 0 0 0 0 0 0 You are not allowed to reverse back to map point if you are not in job mode. You are not allowed to reverse back to map point if you are not in job mode.
//UNK
1 UIIT_STT_PAND_REQ_LVL 0 0 0 0 0 0 You have to be at least level 110 to use the pandora's box. You have to be at least level 110 to use the pandora's box.
1 UIIT_STT_REMOVE_JOB_BLOCK 0 0 0 0 0 0 You cannot unequip your job suit inside job towns. You cannot unequip your job suit inside job towns.
1 UIIT_STT_GOVOTE 0 0 0 0 0 0 Go vote on our website and earn free credits every 12 hours! Go vote on our website and earn free credits every 12 hours!
1 UIIT_STT_RADCHAT 0 0 0 0 0 0 Feel free to ask us any questions through the Radium Chat by starting your message with & Feel free to ask us any questions through the Radium Chat by starting your message with &
1 UIIT_STT_SAFETY 0 0 0 0 0 0 Admin/Supporters will never ask for your login details, don't give them away. Admin/Supporters will never ask for your login details, don't give them away.
1 UIIT_STT_SURVIVAL_CHAT_BLOCK 0 0 0 0 0 0 Public messages aren't allowed while playing in this arena. Public messages aren't allowed while playing in this arena.
1 UIIT_STT_ATTENDANCE_CHECK 0 0 0 0 0 0 Thank you for coming in today, please come back tomorrow. Thank you for coming in today, please come back tomorrow.
1 UIIT_STT_RG_LVL 0 0 0 0 0 0 You cannot enter Radium's Garden below level 100. You cannot enter Radium's Garden below level 100.
1 UIIT_STT_RG_JOB 0 0 0 0 0 0 You cannot enter Radium's Garden without a job suit. You cannot enter Radium's Garden without a job suit.
1 UIIT_STT_RG_JS 0 0 0 0 0 0 You are not allowed to reverse back to Radium's Garden without a job suit. You are not allowed to reverse back to Radium's Garden without a job suit.
Media Devkit :

Database Filter :

Vsro-Filter :

DLL :

Password File : trungpravite
Password Filter : 18cm30phut
Using on the server the Crack version can be exploited by attack. I will not take full responsibility for it. The file is decompiled for code reference.
