Earlier quoted context omitted.
When I was a kid, this is the first thing I did that I'd call programming, but it was to use a hex editor on my Warcraft (the original game, yeah) save files to give myself more gold and wood. I had a friend teach me how to convert to hex, learned about LSB/MSB then away I went. It's amazing how cheating or tweaking a game can spark a lot of interest professionally.
Ah, I recall in high school we made a localized version of Warcraft by hexediting the strings in the executable - though with this approach it was a pain in cases when you needed longer words than English had.
Legalizing gay marriage in Crusader Kings III with Ghidra
171–180 of 183 posts
Re: Legalizing gay marriage in Crusader Kings III with Ghidra
#172Re: Legalizing gay marriage in Crusader Kings III with Ghidra
#173It seems odd to me. Paradox is a Swedish company, and Sweden is a fairly liberal country. Same-sex marriage was legalized in 2009, and even the Church of Sweden gave the go-ahead on performing same-sex marriages the same year. The game logic around this is simple enough that changing two byes fixes it, so it's not a technical issue. What gives?
I suspect it has approximately nothing to do with what the patch implemented. And a lot more to do with it being effectively a guide to reverse-engineering the game executable. Paradox makes multiplayer games. They probably saw this as How To Cheat 101. As to not wanting to do the work to make it implementable without a binary patch, well, it's just not in the game. I can imagine hesitance to start modifying the game…
Re: Legalizing gay marriage in Crusader Kings III with Ghidra
#174Earlier quoted context omitted.
I suspect it has approximately nothing to do with what the patch implemented. And a lot more to do with it being effectively a guide to reverse-engineering the game executable. Paradox makes multiplayer games. They probably saw this as How To Cheat 101. As to not wanting to do the work to make it implementable without a binary patch, well, it's just not in the game. I can imagine hesitance to start modifying the game…
They host How to Cheat 101.[1] [1] https://ck3.paradoxwikis.com/Console_commands
Re: Legalizing gay marriage in Crusader Kings III with Ghidra
#175Earlier quoted context omitted.
Code is not people.
There's a philosophical discussion here longer than a comment can afford but the bottom line isn't "code is not people". While I took GP's "wife" remark as a joke, I feel like you're implying that as long as it's "not people" it's a free for all. Like someone "exploring" how it feels like to spend your money, wear your watch, and drive your car. Since this is a digital world, hacking doesn't have to lead to a loss fo…
Why not? I'd argue the opposite: that making something available online to the general public is the first step toward maximizing exploration - in particular, enabling exploration beyond the limits of your own imagination/ability.
Re: Legalizing gay marriage in Crusader Kings III with Ghidra
#176I don't know anything about reverse engineering but why can't you just change the IF in the decompiled C++? Why do you need to mess around with the assembly instructions?
I reverse engineered some games trying to fix them. If they were made in ASM? Well, then it is easy, what you get from the decompiler is probably very close to what went into the compiler. C? It gets harder, but decompilation to C is possible, you lose function names and whatnot but that is alright. C++? Then you are 100% screwed, virtual functions, polymorphism, etc... it all becomes just a huge mess, if they used s…
Re: Legalizing gay marriage in Crusader Kings III with Ghidra
#177Earlier quoted context omitted.
This is what people don't get. Marriage is a concept with a unique purpose. Marriage is an institution that straight male humans and straight female humans invented to solve their coordination problem around heterosexual life-partnerships. Gay people should be entitled to the full rights of monogamous cohabitation (tax, adoption rights, inheritance etc) via civil partnerships. But not marriage.
For you, what is the difference between marriage and wedding?
Re: Legalizing gay marriage in Crusader Kings III with Ghidra
#178Earlier quoted context omitted.
Considering the way you talk to people on here, "good culture" is as far away as I could imagine from anything you might be able to touch.
You may wish to reevaluate your approach to participation at Hacker News. When I encountered this thread and your insult here, I checked your profile and found many antagonistic and low-value comments over the past few days alone. Your history considerably weakens your position and suggests that I can skip reading your other comments in this thread, and your future comments and posts, without being likely to miss any…
A self-described "curious" person will seek out connections where none exists, force others to entertain their "great ideas", and eventually arrive at what looks like knowledge but is merely an illusion borne of their pride.
If curiosity is not balanced by humility, anyone could end up like the GP. Wanting to know, but unable and unfit to know because all their inquiries are perverted by their own unerring, unconscious self-love.
Re: Legalizing gay marriage in Crusader Kings III with Ghidra
#179Earlier quoted context omitted.
Changing JZ into JZ to the following address has the advantage of ease of editing: same length, same opcode, reliably copied, pasted and inspected value. A NOP sequence is more general but making it the wrong length is not impossible.
NOP on x86 is one byte. Patching out an instruction with a NOP is always possible. Further, not all jumps are equal; while you can certainly patch the assembly and let the assembler manage the variant selection and relocations etc., doing bytecode patching is a different story. You might have to change the jump instruction altogether depending on how "far" away the pointer is. Also, jumps hold conditions in most case…
Re: Legalizing gay marriage in Crusader Kings III with Ghidra
#180Earlier quoted context omitted.
You may wish to reevaluate your approach to participation at Hacker News. When I encountered this thread and your insult here, I checked your profile and found many antagonistic and low-value comments over the past few days alone. Your history considerably weakens your position and suggests that I can skip reading your other comments in this thread, and your future comments and posts, without being likely to miss any…
This comment comes late, but I've recently learned that "just curious" without qualification is a fair indicator of hubris. A self-described "curious" person will seek out connections where none exists, force others to entertain their "great ideas", and eventually arrive at what looks like knowledge but is merely an illusion borne of their pride. If curiosity is not balanced by humility, anyone could end up like the…