hackersrage
Member
- Joined
- Nov 18, 2012
- Messages
- 342
- Reaction score
- 15
Please modify HonorBuddy so that when it creates log files it does not put:
1. Your [Username] which is part of the path where meshes are stored.
2. Your WoW character name. Typically this shows when there was an error of some sort.
3. Your operating system version and build number
4. The level of your character
5. The race of your character
7. The build of your character (talent tree spec)
None of the above information is relevant to any issue that may arise from a poorly written routine, or other bug with the exception of the possibility of which edition of windows the user may be running.
Currently, this information is unacceptable for Mods to request a "log" for basically every single question, and assuring the log does not contain personal information which it does.
Examples below. I have replaced the non-anonymous information with the word "Anonymous"
Please, correct this in the core. A simple string replace would do for most part, and removal of data that is not relevant. These logs DO give enough information to ban accounts, such as level, time and location, race, etc.
1. Your [Username] which is part of the path where meshes are stored.
2. Your WoW character name. Typically this shows when there was an error of some sort.
3. Your operating system version and build number
4. The level of your character
5. The race of your character
7. The build of your character (talent tree spec)
None of the above information is relevant to any issue that may arise from a poorly written routine, or other bug with the exception of the possibility of which edition of windows the user may be running.
Currently, this information is unacceptable for Mods to request a "log" for basically every single question, and assuring the log does not contain personal information which it does.
Examples below. I have replaced the non-anonymous information with the word "Anonymous"
Code:
[03:58:25.200 D] [LuaEvents] Getting argument values for event COMBAT_LOG_EVENT_UNFILTERED
[03:58:25.206 D] [Singular-DEBUG] [CombatLog] Anonymous:72057594123629718 cast of Earth Shock#8042 failed: 'Not yet recovered'
[03:58:25.206 D] [LuaEvents] Getting argument values for event COMBAT_LOG_EVENT_UNFILTERED
[03:58:25.207 D] [Singular-DEBUG] [CombatLog] Anonymous:72057594123629718 cast of Stormstrike#17364 failed: 'Not yet recovered'
[03:58:25.207 D] [LuaEvents] Getting argument values for event COMBAT_LOG_EVENT_UNFILTERED
Code:
[03:57:10.313 N] Mesh folder path does not exist, creating folder at path: C:\Users\Anonymous\AppData\Local\HonorbuddyMeshes
[03:57:10.343 N] New bot added!: ArchaeologyBuddy
[03:57:10.345 N] New bot added!: BGBuddy
[03:57:10.496 N] New bot added!: DungeonBuddy
[03:57:10.578 N] New bot added!: Gatherbuddy2
[03:57:10.579 N] New bot added!: Grind Bot
[03:57:10.581 N] New bot added!: Questing
[03:57:10.611 N] New bot added!: Mixed Mode
[03:57:10.613 N] New bot added!: PartyBot
[03:57:10.618 D] Reloading AssemblyLoader<BotBase> - Reloading Bots
[03:57:11.242 N] New bot added!: Combat Bot
[03:57:11.242 N] New bot added!: Raid Bot
[03:57:11.245 N] Honorbuddy v2.5.6585.517 started!
[03:57:11.245 D] Using WoW with process ID 2396
[03:57:11.246 D] Platform: Microsoft Windows NT 6.2.9200.0
[03:57:11.246 D] Executable Path: C:\Users\Anonymous\Desktop\hb\Honorbuddy.exe
[03:57:11.249 N] Character is a level 42 Pandaren Shaman
[03:57:11.250 N] Current zone is The Hinterlands
[03:57:11.322 D] CombatRoutinesPath: Routines
[03:57:11.322 D] ReloadRoutinesOnFileChange: False
[03:57:11.322 D] PluginsPath: Plugins
[03:57:11.322 D] ReloadPluginsOnFileChange: False
[03:57:11.322 D] BotsPath: Bots
[03:57:11.322 D] ReloadBotsOnFileChange: False
[03:57:11.322 D] QuestBehaviorsPath: Quest Behaviors
[03:57:11.322 D] MeshesFolderPath: C:\Users\Anonymous\AppData\Local\HonorbuddyMeshes
Please, correct this in the core. A simple string replace would do for most part, and removal of data that is not relevant. These logs DO give enough information to ban accounts, such as level, time and location, race, etc.