Hey Guys how or where can i read the Hacklogs of users.
On Admintool i dont get some files only Accountname and Gearname.
So Where i found the Hacklogs, okay "Speedhack" on Fieldserver from HS thats it
Printable View
Hey Guys how or where can i read the Hacklogs of users.
On Admintool i dont get some files only Accountname and Gearname.
So Where i found the Hacklogs, okay "Speedhack" on Fieldserver from HS thats it
In your Database...
I think he mean, "how to understand the logs" :)
atum2_db_1----->atum_log_user_memory_hack and atum_log_user_speed_hack
Problem?Code:SELECT ISNULL(c.LogStringEN, 'N/A') as 'Log Type', a.Time, b.AccountName, b.CharacterName, a.MapIndex, a.Position_X, a.Position_Y, a.Position_Z, a.ItemKind, d.ItemName, a.ItemNum, a.ItemUniqueNumber, a.MemoryHackCheckType, a.ValidValue, a.CurrentValue, a.Param1
FROM atum2_db_1.dbo.atum_log_user_memory_hack a
JOIN atum2_db_1.dbo.td_Character b
ON a.CharacterUniqueNumber = b.UniqueNumber
JOIN atum2_db_1.dbo.atum_log_type_info c
ON a.LogType = c.LogType
JOIN atum2_db_account.dbo.ti_Item d
ON a.ItemNum = d.ItemNum
GO
SELECT ISNULL(c.LogStringEN, 'N/A') as 'Log Type', a.Time, b.AccountName, b.CharacterName, a.MapIndex, a.Position_X, a.Position_Y, a.Position_Z, a.CheckType, a.ReceivedMoveCounts, d.ItemName, a.EngineItemNum, a.ServerPastTime, a.ClientPastTime, a.PastDistance, a.CurrentSpeed
FROM atum2_db_1.dbo.atum_log_user_speed_hack a
JOIN atum2_db_1.dbo.td_Character b
ON a.CharacterUniqueNumber = b.UniqueNumber
JOIN atum2_db_1.dbo.atum_log_type_info c
ON a.LogType = c.LogType
JOIN atum2_db_account.dbo.ti_Item d
ON a.EngineItemNum = d.ItemNum
GO