![]() |
|
(App) Instanced Boss Timer - Printable Version +- Southperry.net (https://www.southperry.net) +-- Forum: Maplestory (https://www.southperry.net/forumdisplay.php?fid=15) +--- Forum: Maplestory Discussion (https://www.southperry.net/forumdisplay.php?fid=31) +--- Thread: (App) Instanced Boss Timer (/showthread.php?tid=47225) |
(App) Instanced Boss Timer - IceCorp - 2011-09-22 Update: Timers no longer reset when changing continents. (Sept. 23 2011) A simple boss timer designed for instanced bosses, optimized for minimal memory usage. ![]() Get it here. (App) Instanced Boss Timer - ChosenFruit - 2011-09-22 Oh, that seems pretty cool =o gonna give it a shot~ Looks like it works fine xP though the timers stop if you switch to a different category. Though you could just open multiple windows of it for each of the categories you need I guess xP =o I like how the color of the numbers change when it gets close to ending xP (App) Instanced Boss Timer - Spaz - 2011-09-22 No source code? I'd be curious to know what you used. Must be a native app to be using under 1 MB. Maybe not even a GUI library, just raw win32? (App) Instanced Boss Timer - Eos - 2011-09-23 Spaz Wrote:No source code? I'd be curious to know what you used. Must be a native app to be using under 1 MB. Maybe not even a GUI library, just raw win32? And lo' notepad reveals the cluelessness of this assumption; System.Resources.Tools.StronglyTypedResourceBuilder 4.0.0.0 Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator 10.0.0.0 Powered by SmartAssembly 6.2.2.215 (App) Instanced Boss Timer - Spaz - 2011-09-23 Now I'm really curious. A console Hello World uses 2 MB and an empty winforms application uses 2 MB before the window appears and 4 MB after. NGen or something? (App) Instanced Boss Timer - IceCorp - 2011-09-23 ChosenFruit Wrote:Oh, that seems pretty cool =o gonna give it a shot~Changed so the timers don't reset. Spaz Wrote:No source code? I'd be curious to know what you used. Must be a native app to be using under 1 MB. Maybe not even a GUI library, just raw win32?It only uses that little if the timers aren't activated. Eos Wrote:And lo' notepad reveals the cluelessness of this assumption;I think I fixed the flaw. (App) Instanced Boss Timer - Eos - 2011-09-23 IceCorp Wrote:Eos made me facepalm myself for underestimating him. Throwing it Reflector or IDA seemed like a waste when exposed strings are easy enough to read with notepad ![]() Especially since the point was anyone could've done it to answer Spaz's question. (App) Instanced Boss Timer - IceCorp - 2011-09-23 It shouldn't be readable anymore in notepad, hopefully. (App) Instanced Boss Timer - Eos - 2011-09-23 IceCorp Wrote:It shouldn't be readable anymore in notepad, hopefully. NotePad; The Great Revealer:
Spoiler
(App) Instanced Boss Timer - IceCorp - 2011-09-23 It's not a secret that I encrypt and obfuscate my files. I don't see how the information currently revealed is going to be an issue, as its the same with most other .net applications. (App) Instanced Boss Timer - Eos - 2011-09-23 Neither was the info previously revealed. The point is obfuscation is a waste of time and resources because if I really cared I'd be able to take it apart with very little effort, as demonstrated by even notepad being sufficient to show every literal in the app. (App) Instanced Boss Timer - IceCorp - 2011-09-23 Well, i'm completely inexperienced and ignorant of your coding knowledge. You should already know that the main function (countdown timer), consists of only a few lines of code. Anyways, i'm just a noob passing by who just happened to help the community. (App) Instanced Boss Timer - Okiesmokie - 2011-09-26 IceCorp Wrote:Well, i'm completely inexperienced and ignorant of your coding knowledge.I don't know why you'd go to the trouble of encrypting and obfuscating the assembly of such a simple program, unless you were trying to hide something. Edit: Also for the record, the SupressIldasm attribute you applied is pointless. Anyone who knows how to use Ildasm knows how to remove that attribute from the assembly. (App) Instanced Boss Timer - KhainiWest - 2011-09-26 Okiesmokie Wrote:I don't know why you'd go to the trouble of encrypting and obfuscating the assembly of such a simple program, unless you were trying to hide something. If there was anything to hide the eye of eos would have saw it and crucified him in an announcement titled "AN EXAMPLE". (App) Instanced Boss Timer - Okiesmokie - 2011-09-27 KhainiWest Wrote:If there was anything to hide the eye of eos would have saw it and crucified him in an announcement titled "AN EXAMPLE". Eos Wrote:because if I really cared I'd be able to take it apart with very little effortMeaning he doesn't care, and probably didn't bother looking through it. I'm just saying, I don't see why he would need to specifically code a check to see whether the app was running in FullTrust mode. You shouldn't need FullTrust to run a simple timer app. I don't see why he's calling CallWindowProcW and GetModuleHandle from kernel32.dll/user32.dll either. Or why he has a reference to WebServices, and serializes data. (App) Instanced Boss Timer - Okiesmokie - 2011-09-28 Edit: Seriously? An infraction for informing the public about being safe about executables? REALLY? Posting this here, because this is where it should have been, not my PM box. IceCorp Wrote:I think you're misunderstanding my point. I too do not agree that people are actually *hacking* others. It is the people who download programs such as yours without checking for sure that they are not malicious.Okiesmokie Wrote:It's ok, I don't believe a word of that junk about the server check hackings.IceCorp Wrote:Or maybe it's because a ton of people have been getting hacked in maplestory recently? Why would I want to steal the code of something I could write in 5 minutes if I cared enough to?Okiesmokie Wrote:I don't know why you'd go to the trouble of encrypting and obfuscating the assembly of such a simple program, unless you were trying to hide something. Your program may very well be safe, but the burden of proof is on YOU, the person releasing the program, to show that it is not malicious. Not the general public. Purposely obfuscating your IL code is the wrong step to take in relieving that burden, and that is what I was pointing out. |