Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 569
» Latest member: AreYouDead
» Forum threads: 910
» Forum posts: 12,608

Full Statistics

Latest Threads
Brigandine GE : Hex Edito...
Forum: Brigandine: Grand Edition
Last Post: Rune
2024-11-26, 06:30 PM
» Replies: 20
» Views: 37,213
world of fire
Forum: Diadem of Maunstraut
Last Post: Henrique
2024-11-07, 06:32 PM
» Replies: 0
» Views: 182
Vault of ideas(Mods/hacks...
Forum: Brigandine: Grand Edition
Last Post: Rune
2024-09-29, 09:03 PM
» Replies: 39
» Views: 26,078
In game menu translation
Forum: SOM Guides, FAQ and Help
Last Post: Azynt
2024-09-08, 01:22 PM
» Replies: 2
» Views: 392
Website Update Feedback (...
Forum: General Discussion
Last Post: Verdite Cat
2024-09-05, 08:48 PM
» Replies: 19
» Views: 8,156
kings-field.neocities.org...
Forum: King's Field Series
Last Post: Verdite Cat
2024-09-04, 12:30 AM
» Replies: 2
» Views: 1,822
Hello! :D
Forum: General Discussion
Last Post: Verdite Cat
2024-09-02, 02:19 PM
» Replies: 2
» Views: 1,037
Unable to climb stairs ma...
Forum: SOM Guides, FAQ and Help
Last Post: Fennick
2024-08-27, 08:18 PM
» Replies: 3
» Views: 739
Mista Fopa didn't give a ...
Forum: King's Field Series
Last Post: Verdite Cat
2024-08-27, 03:03 AM
» Replies: 5
» Views: 716
Wiki rendering issue.
Forum: General Discussion
Last Post: StolenBattenberg
2024-05-08, 05:08 AM
» Replies: 1
» Views: 1,324

 
  GOOD NEWS UPDATE: The mother of all cracks!
Posted by: Holy_Diver - 2009-05-03, 10:32 PM - Forum: SOM Addons - Replies (23)

I had a thought, about probably the single most effective code injection that could be achieved...

Basically the idea is, to locate the address of the counters in the executable image. Then reserve so many of the counters at the very end.

Then inject some very simple code that loads another address into each of the counters. The other addresses being wherever you think useful data is stored (that can be found later)

Basically in the simplest case, this could access integer values with the same specs as the counters directly into counters each event loop, so you can use an IF on that counter and do something, or set something to that value.

For stuff that might be stored as a floating point (with a decimal point) value, code could be injected to pre-convert those values (probably not hard to do once you get that far)

Same for data that might be stored in a bit vector (like your bad status state could be)

I'm assuming this is more or less how a Game Genie works. I've never done anything like injecting instructions into an executable image. I'm guessing it's very possible, and probably not too dangerous. If so there are probably websites dedicated to helping people do this sort of thing.

I'm not volunteering to do this... but I'm volunteering the idea, and again it would be an amazingly fruitful hack I think, and I would be very grateful for one Twisted

Print this item

  Groovy event recipes...
Posted by: Holy_Diver - 2009-05-02, 08:46 AM - Forum: SOM Addons - Replies (13)

It took some crude logic to wrap my head around the workings of the event handler dialogs (really it could be more explicit -- but I can't say if there is enough room for a proper translation... at least more technical programming terminology might help)

Anyway.... I worked out a clean and efficient means of giving the player constant regen proportional to their str/mag stat (or any stat really)

First let's say it's possible (though I haven't yet tested it on a faster machine to be sure it doesn't spin out of control -- I will soonish though... I should be engineering real software, not dealing with this hackneyed scripting interface Twisted )

Anyhow, the basic thrust of it is...

1) Make a Counter for the stat you want to track (strength in this case) ...use the Set Counter From Parameter instruction (took me a while to notice that one... and all of this goes in the same thread, "Sequence" per John's translation)

2) Next you'll need to have another Counter, call it Regen Whatev, and you test this to see if it's over some threshold (in this howto, we'll use 98x10 -- max str (-1) time 10... for human scale timing)

3) IF it is, then give the player 1hp and the important part... set the Regen Whatev Counter to 0!

4) OTHERWISE add the contents of your first Counter (has your current Strength) to the Whatev Counter.

5) END IF


Anywho, that is about as fancy as you can make it (given the poor selection of possibilities)


------------------------------------


For my next trick, I'm going to try to turn the pointless POISON status into a very severe BLEEDING status. Probably change CURSE into a different sort of POISON. And make SLOW a GOLEM status (you don't bleed and other stuff) ...and DARK to a combined DARK/CURSE state. PARALYZE is pretty weird, so I will try to have a counter look for it, then immediately take it off, and replace it with some other side effect (probably critical hit... so a short moment of not moving might be a plus)

edited: Actually max str is 107 (go fig) but you can set it to start at least up to 999 when testing your game (but the level up model stops you at 107... events could make it go higher presumably)

Print this item

  Formerly: The Remix DoM Project!?! Now general KF discourse.
Posted by: Holy_Diver - 2009-05-02, 06:14 AM - Forum: Diadem of Maunstraut - Replies (36)

First off, I've been given permission to remix Tom's DoM. If you don't know what that is... how dare you?? Twisted

Second off, if I have any say, this website is gonna need an official DoM board... cause I'm gonna be bringin it back from the dead...

Also, if you don't mind the remix being somewhat spoiled, I'm happy to discuss the project, and even make changes democratically (and even take on help)

But the primary objective of this thread, is to help me out along my way. In here will be more DoM oriented questions. If I have a more general SoM question, it will show up elsewhere. So Tom being the top authority, might wanna check in here now and then (I will try to mark spoilers as much as possible so Tom won't feel like he knows the remix as well as he must know DoM when it finally comes time to play it)



Anyway... first stumpage up to bat. I've moved the starting point for the first map. But the warp point is still there (for you know what) ...and for now I'm leaving it there. But I noticed when I bumped into it (on accident) the level greeting info (title and music) still popped up. So I thought to myself... groovy... better move that. Instead of putting it at the new start point though... for the purpose of dramatics, I situated it at the mouth of a new cave I've made, that opens up into the starting field (and first appearance of monsters)

Only prob is, the event no longer fires when I walk over it, and I've done everything I can think of to make it do so.

Rather than trying to recreate the greeting event, I re-bound it to a new object (which is unique to the map) ...an object I called False Starting Point (cleverly enough)

Anyway, it ain't workin' Evil


PS: I'm wondering if it's possible to change music with a triggered event, or if that is just stuck per map (edited: nvm: see change bgm event)

Print this item

  Last area - how am I doing?
Posted by: dmpdesign - 2009-04-24, 06:42 AM - Forum: Trismegistus - Replies (9)

Don't have any hearts, so the obvious answer to the question is...I suck.

Anyways, here is what I have done.

Used the symbol, beat the 4 scythe skeletons.

Went into the earth area, unearthed a switch, flipped the axes, unlocked that room.

Moved to the hand area and got the switch there by removing the hands.

Dunno what I am missing now...something about ribs perhaps?

Moving on....water area.

Upheaval on the two pillars obviously turns the symbols on the wall in a specific manner, how that is affected by the placement of the ones you can move on the opposite wall is beyond me.

Fire area.

Got into the room with the shields, locked the fire seal and opened the room to drain the lava. Found I believe 4 switches among the broken pillars (two on the floor and two in the pillars themselves). Where the other two are, i dont know yet...I will keep looking.

Wind area.

Hehe haven't gotten jack squat here yet except frustration.

99 solves 49 magic and i think 17 or 18 intellect.

Print this item

  Where did you find out about Trismegistus?
Posted by: dmpdesign - 2009-04-20, 01:47 PM - Forum: Trismegistus - Replies (2)

Just taking a poll to see where everyone is getting this game from.

Print this item

  Little stuck and more trapped areas
Posted by: adder1 - 2009-04-15, 11:42 PM - Forum: Trismegistus - Replies (13)

First let me say this is a great game. I have been playing it since saturday night on and off. I am a little stuck in the fire real can get the fire staff but can`t find how to cancel force field. will persevere though also have started wind realm don`t know how to get back to main area. Any way the real reason for this post is more trapped areas. One is at the large mask which had the arrow in it if you goto the left between the wall and the boundry before you go up the steps and keep moving forward you will become trapped the view flashes between black and with patterns and the original area first then you get trapped discovered this by accident (got distracted and kept keys pressed). Another area is in the fire realm. When you teleport on to the block beside the tree. If you fall off at the back between the tree and block you can`t seem to get out

Print this item

  need help
Posted by: key - 2009-04-13, 10:55 PM - Forum: Trismegistus - Replies (1)

been looking for days, for the illuninate!!!!!

Print this item

  Icarus Plume?
Posted by: key - 2009-04-11, 07:10 PM - Forum: Trismegistus - Replies (1)

Been looking for days for the Icarus Plume! Help! Where is it?

Print this item

  Shadow Tower - I changed my mind
Posted by: dmpdesign - 2009-04-10, 09:37 PM - Forum: King's Field Series - Replies (20)

Been mulling this one over in my mind for a while now thinking I just wouldnt ever feel like playing through it, but for whatever reason I have decided this weekend I will give it another try.

I stuck it on my psp and it looks alot better than when I am playing it on my PC, so I think this will work for me (it was the only way I could play through original KF 1, for some reason old school graphics look so much better on the small screen :)

Anyways, I will likely run into trouble, so I will be needing all your knowledge as I progress and run into trouble ;)

Print this item

  Which elemental realm is the most difficult to beat?
Posted by: Hguols - 2009-04-10, 09:11 PM - Forum: Trismegistus - No Replies

Um.... This is the first poll I've created ever.
(which is displayed above)

I picked the Water Realm because you have to traverse to another area completely to finish it, and getting the clocks to appear I thought was particularly hidden.

Print this item