KaizenSoze Posted September 9 Author Share Posted September 9 Cyclops 1.2 released. See first post. Night Pixie on Excelsior Introduction to Arachnos Widows - Night/Blood/Fortunata Link to comment Share on other sites More sharing options...
JoeTivo Posted September 10 Share Posted September 10 (edited) Am getting an error: Unable to read line from "....\\Logs\\2024-02-22.txt": Error { kind: InvalidData, message: "stream did not contain valid UTF-8" } It appears to come from a channel welcome message where they are using extended ascii (quote) characters: > please also join affiliated channels For badge hunting type: /chanjoin Torchbearer Badges ? For Trials & Task(strike)forces type: /chanjoin Torchbearer TFs ? can manually delete those, but maybe those chars can be filtered out? Edited September 10 by JoeTivo Link to comment Share on other sites More sharing options...
KaizenSoze Posted September 10 Author Share Posted September 10 4 hours ago, JoeTivo said: Am getting an error: Unable to read line from "....\\Logs\\2024-02-22.txt": Error { kind: InvalidData, message: "stream did not contain valid UTF-8" } It appears to come from a channel welcome message where they are using extended ascii (quote) characters: > please also join affiliated channels For badge hunting type: /chanjoin Torchbearer Badges ? For Trials & Task(strike)forces type: /chanjoin Torchbearer TFs ? can manually delete those, but maybe those chars can be filtered out? Yes, you can filter those out. If you could send me a log via forum message. I can try and handle that type of message properly. Night Pixie on Excelsior Introduction to Arachnos Widows - Night/Blood/Fortunata Link to comment Share on other sites More sharing options...
KaizenSoze Posted September 10 Author Share Posted September 10 7 hours ago, JoeTivo said: Am getting an error: Unable to read line from "....\\Logs\\2024-02-22.txt": Error { kind: InvalidData, message: "stream did not contain valid UTF-8" } It appears to come from a channel welcome message where they are using extended ascii (quote) characters: > please also join affiliated channels For badge hunting type: /chanjoin Torchbearer Badges ? For Trials & Task(strike)forces type: /chanjoin Torchbearer TFs ? can manually delete those, but maybe those chars can be filtered out? I have a fix, more like bad data you go into the trash can. It does print out the offending line number. If you see lot of those errors let me know. Look like chat messages and message of day text can contain non-UTF text. Night Pixie on Excelsior Introduction to Arachnos Widows - Night/Blood/Fortunata Link to comment Share on other sites More sharing options...
Retired Community Rep Americas Angel Posted September 27 Retired Community Rep Share Posted September 27 Been using this to parse Kheldian ST attack chains. Fantastic tool. Thanks for taking the time to put it together @KaizenSoze 1 My Stuff: Fightclub PvP Discord (Melee PvP tournaments, builds, and beta testing) Influence Farming Guide (General guide to farming, with maps and builds) Link to comment Share on other sites More sharing options...
KaizenSoze Posted September 27 Author Share Posted September 27 12 hours ago, Americas Angel said: Been using this to parse Kheldian ST attack chains. Fantastic tool. Thanks for taking the time to put it together @KaizenSoze Any interesting insights? Night Pixie on Excelsior Introduction to Arachnos Widows - Night/Blood/Fortunata Link to comment Share on other sites More sharing options...
Retired Community Rep Americas Angel Posted September 28 Retired Community Rep Share Posted September 28 7 hours ago, KaizenSoze said: Any interesting insights? Just that I wished the CoH ingame timer went down to miliseconds One thing I wanted to mention, which has nothing to do with my tests, is that roleplayers don't really have a good log cleaning tool, and I think this tool could be used for this. If you you added a mode that allowed players to pick the channels they want to keep (local/emotes/request for roleplaying, etc), and then cleaned up the log by removing all the other channels, and timestamps and channel names; and then delivered that cleaned up log to the user? Would be a godsend. Not sure if this is of interest to you, but you did ask. My Stuff: Fightclub PvP Discord (Melee PvP tournaments, builds, and beta testing) Influence Farming Guide (General guide to farming, with maps and builds) Link to comment Share on other sites More sharing options...
KaizenSoze Posted September 28 Author Share Posted September 28 4 hours ago, Americas Angel said: Just that I wished the CoH ingame timer went down to miliseconds One thing I wanted to mention, which has nothing to do with my tests, is that roleplayers don't really have a good log cleaning tool, and I think this tool could be used for this. If you you added a mode that allowed players to pick the channels they want to keep (local/emotes/request for roleplaying, etc), and then cleaned up the log by removing all the other channels, and timestamps and channel names; and then delivered that cleaned up log to the user? Would be a godsend. Not sure if this is of interest to you, but you did ask. Send me an example with before and after logs. DM or forum message. Sounds very doable and not that hard. Famous last words. 🙂 Night Pixie on Excelsior Introduction to Arachnos Widows - Night/Blood/Fortunata Link to comment Share on other sites More sharing options...
lemming Posted September 28 Share Posted September 28 5 hours ago, KaizenSoze said: Send me an example with before and after logs. DM or forum message. Sounds very doable and not that hard. Famous last words. 🙂 Should be, I did a perl script that just prints out all the chat messages (I think). while($line = <FILE>) { chomp($line); chop($line) if ($line =~ /\r$/); $line =~ s/<color #[\d\w]{6}>|<bgcolor #[\d\w]{6}>//g; print $line, "\n" if ($line =~ m/^\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d \[[\s\w]+\]/); } Of course, this has the assumption that one has timestamps turned on. 1 Link to comment Share on other sites More sharing options...
Black_Assassin Posted September 29 Share Posted September 29 Love me some numbers. I did a parse on my Fire/Storm/Levi troller as I was interested in how much my damage was split between my primary and secondary. Was very interested to find out how much heavy lifting the ATO psi damage proc and energy font proc was doing in my Tornado vs Waterspout with no procs. Also Hot feet+arma proc = 25% my total damage Fire cage spam every other attack = 11% of my total damage. Water spout (no procs) = only 2% So now I can proc it out and retest to see how much extra damage I get. Then decide if its worth while to keep that or respec and test say Stone with a proc'd fissure spam. Could not do that without the tool so thumbs up from me b(^_^)b Also Might test proc'd out Hot Feet vs 5x Arma 1 @Black Assassin - Torchbearer Link to comment Share on other sites More sharing options...
Koopak Posted September 29 Share Posted September 29 Can we get this pinned? i know this category is a little pin heavy but given Carni helped provide code for this and its versatility id like to avoid it eventually slipping off the list. Especially with the search tool as bad as it is. Not sure who to ping if anyone. 1 Regeneration CalculatorClear Speed Leaderboard Link to comment Share on other sites More sharing options...
KaizenSoze Posted September 29 Author Share Posted September 29 8 hours ago, Black_Assassin said: Love me some numbers. I did a parse on my Fire/Storm/Levi troller as I was interested in how much my damage was split between my primary and secondary. Was very interested to find out how much heavy lifting the ATO psi damage proc and energy font proc was doing in my Tornado vs Waterspout with no procs. Also Hot feet+arma proc = 25% my total damage Fire cage spam every other attack = 11% of my total damage. Water spout (no procs) = only 2% So now I can proc it out and retest to see how much extra damage I get. Then decide if its worth while to keep that or respec and test say Stone with a proc'd fissure spam. Could not do that without the tool so thumbs up from me b(^_^)b Also Might test proc'd out Hot Feet vs 5x Arma The only thing that can get close to nuke damage are damage auras. So, I am not surprised Hot feet is #1. Were you testing against mobs or pylons? I haven't been impressed with Water spout, too small, too much time spent wandering from target to target. Night Pixie on Excelsior Introduction to Arachnos Widows - Night/Blood/Fortunata Link to comment Share on other sites More sharing options...
Black_Assassin Posted September 29 Share Posted September 29 1 minute ago, KaizenSoze said: The only thing that can get close to nuke damage are damage auras. So, I am not surprised Hot feet is #1. Were you testing against mobs or pylons? I haven't been impressed with Water spout, too small, too much time spent wandering from target to target. Yeah, I was so surprised. Just never clicks that its doing damage since I'm not pressing buttons. It was 1 full clear of Unai Kemens first mission the council empire 20x portals one in PI. Was trying to drop WS on cooldown, i think its higher base recharge vs tornado really does hurt it. @Black Assassin - Torchbearer Link to comment Share on other sites More sharing options...
KaizenSoze Posted September 29 Author Share Posted September 29 2 minutes ago, Black_Assassin said: Yeah, I was so surprised. Just never clicks that its doing damage since I'm not pressing buttons. It was 1 full clear of Unai Kemens first mission the council empire 20x portals one in PI. Was trying to drop WS on cooldown, i think its higher base recharge vs tornado really does hurt it. How much damage did Tornado do? It was the potential to do a lot, but I haven't tested it. Night Pixie on Excelsior Introduction to Arachnos Widows - Night/Blood/Fortunata Link to comment Share on other sites More sharing options...
Black_Assassin Posted September 29 Share Posted September 29 3 minutes ago, KaizenSoze said: How much damage did Tornado do? It was the potential to do a lot, but I haven't tested it. According to the parse: Nado had 19050 base damage (for some reason isn't showing the number of activations) Spout down at 6834 On my build nado has 17.73s cd and spout 51.86. so depending on my clicking etc its probably about 2 nado's for every 1 spout upwards to 2.88 if i'm casting perfectly on CD. The napkin maths seems to imply they are actually doing the same damage (6834*2.79=19066). Just cant get many of them out. Maybe I am being harsh on it. Would have to see how much lifting a proc bombed fissure could do to compare. @Black Assassin - Torchbearer Link to comment Share on other sites More sharing options...
Black_Assassin Posted September 29 Share Posted September 29 Also, you get the coralax pet too which did 24302 over 5 summons on the 1 run. So that was 8% of my total damage. So the APP contributed 10% overall. Would potentially be more if I swap the two -res procs in spout (rely purely on them in freezing rain) and put two damage procs in. Would be interested to see if Earth mastery can contribute a similar total damage out put with say this slotting 1 @Black Assassin - Torchbearer Link to comment Share on other sites More sharing options...
KaizenSoze Posted September 30 Author Share Posted September 30 On 9/28/2024 at 1:59 AM, Americas Angel said: Just that I wished the CoH ingame timer went down to miliseconds One thing I wanted to mention, which has nothing to do with my tests, is that roleplayers don't really have a good log cleaning tool, and I think this tool could be used for this. If you you added a mode that allowed players to pick the channels they want to keep (local/emotes/request for roleplaying, etc), and then cleaned up the log by removing all the other channels, and timestamps and channel names; and then delivered that cleaned up log to the user? Would be a godsend. Not sure if this is of interest to you, but you did ask. So, I tested a few things. Chat is easy, I am already parsing those into their own category. Not sure what a request for roleplay looks like. 🙂 Emotes are a problem. Because it's just, player name emote. Like [timestamp] Kaizen waves. I could capture the player's emotes, because I know their name. Other players emotes are an issue. Night Pixie on Excelsior Introduction to Arachnos Widows - Night/Blood/Fortunata Link to comment Share on other sites More sharing options...
Bionic_Flea Posted October 3 Share Posted October 3 Hey Kaisen: Do you think this is something that could be formatted to work in the City Mod Installer (https://forums.homecomingservers.com/topic/49175-city-mod-installer-released/) to make it even easier to get started? I downloaded it a few months ago and couldn't seem to get it to work, but I haven't tried again. Link to comment Share on other sites More sharing options...
KaizenSoze Posted October 3 Author Share Posted October 3 59 minutes ago, Bionic_Flea said: Hey Kaisen: Do you think this is something that could be formatted to work in the City Mod Installer (https://forums.homecomingservers.com/topic/49175-city-mod-installer-released/) to make it even easier to get started? I downloaded it a few months ago and couldn't seem to get it to work, but I haven't tried again. Yes, in time I want it to be in the COH installer, but it needs more polish before it can be added to the installer. If you try the newest version and have issues. Let me know. Night Pixie on Excelsior Introduction to Arachnos Widows - Night/Blood/Fortunata Link to comment Share on other sites More sharing options...
Bionic_Flea Posted October 3 Share Posted October 3 13 minutes ago, KaizenSoze said: Yes, in time I want it to be in the COH installer, but it needs more polish before it can be added to the installer. Well . . . start polishing! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now