Register | Login
Views: 19364387
Main | Memberlist | Active users | ACS | Commons | Calendar | Online users
Ranks | FAQ | Color Chart | Photo album | IRC Chat
11-02-05 12:59 PM
Acmlm's Board - I2 Archive - - Posts by Geiger
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
User Post
Geiger

Buster Beetle
Level: 34

Posts: 401/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 07-24-05 01:35 AM, in Temporal Flux Release Link
Apparently, I have never looked at Command 19 in depth before. It has nothing whatsoever to do with random number generation. It would seem that it is a "Load Result" command. The offset is where the result is loaded from.

From looking at the original Millenium Fair, it looks like the random number generator is Unknown Command 7F. The offset there is where the random number is stored to.

Here is a fixed version of the code you sent me Chicken.


[01EA] Startup / Idle
7F07 [01EA] Command7F(Mem.7F020E)
6F0607 [01EC] Mem.7F020E <<= 06
1907 [01EF] RandomNum(Mem.7F020E)
1A000F [01F1] If(Result == 00)
83C086 [01F4] LoadEnemy({C0} Atropos XR , 06, Static)
8B0808 [01F7] SetObjectCoord(080, 080)
0D02 [01FA] NPCMoveProps(WalkAround, 00)
00 [01FC] Return
8920 [01FD] SetSpeed(20)
AA03 [01FF] Animation(Normal, 03, 00)
00 [0201] Return
1A010E [0202] If(Result == 01)
839286 [0205] LoadEnemy({92} Gato , 06, Static)
8B0808 [0208] SetObjectCoord(080, 080)
0D02 [020B] NPCMoveProps(WalkAround, 00)
8920 [020D] SetSpeed(20)
AA03 [020F] Animation(Normal, 03, 00)
00 [0211] Return
1A0203 [0212] If(Result == 02)
1004 [0215] Goto [021A]
1A030E [0217] If(Result == 03)
82B1 [021A] LoadNPC {B1} Alfador
8B0808 [021C] SetObjectCoord(080, 080)
0D02 [021F] NPCMoveProps(WalkAround, 00)
00 [0221] Return
8920 [0222] SetSpeed(20)
AA03 [0224] Animation(Normal, 03, 00)
00 [0226] Return
00 [0227] Return


The random number is generated at 01EA. The number is downshifted by 6 (divided by 0x40) at 01EC. This limits it to four choices. It is then loaded into the Result variable at 01EF.

This is how the game generally does random number stuff. If you wanted to do the same style of comparison that you were previously, you could drop line 01EC and 01EF and just compare directly to 7F020E.

Your prior "random" number is coming from some unknown code. You are loading it into the result variable in Object 00.

---T.Geiger


(edited by Geiger on 07-23-05 04:42 PM)
(edited by Geiger on 07-23-05 04:43 PM)
Geiger

Buster Beetle
Level: 34

Posts: 402/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-09-05 08:50 AM, in Temporal Flux Release Link
For the record, I will not be providing any more fixes for the 1.xx versions. I have been away from the codebases for three months. I will not have time to re-familiarize myself with both of them once I resume coding. Downside, no more fixes. Upside, quicker turnaround on v2.00.

After 2.00 is released, and any major catastrophes are handled, I will be putting Flux to bed for awhile as I have another major project to work on. I do not wish to speak on it at this time except to say some of you will be happy, some of you will be appalled, but most of you will merely say "meh" before you continue munching on your tacos. Its big to me, but not much of a change to most of you.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 403/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-09-05 09:20 AM, in Temporal Flux Release Link
May I recommend you release some source so future problems that are found can be nailed and fixed then?

You may, but the answer is no.

I hate tacos...

I did say "most". Its possible you may be in one of the other two groups. Or possibly an unmentioned fourth group. For instance, any zombies in the audience probably do not have any strong feelings about much of anything except their hunger for brains. And being primarily brain-munchers, it is unlikely they would be feeding on tacos.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 404/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-10-05 08:25 AM, in Temporal Flux Release Link
v2.00 will support 48 Mbit expanded ROMs.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 405/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-11-05 02:36 AM, in Rom Hacker Link
I weigh in at 28 white middle class male.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 406/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-12-05 01:04 AM, in Temporal Flux Release Link
I am focusing on things nothing else can edit. Item editing is not scheduled for v2.00.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 407/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-16-05 11:59 PM, in 1 big problem with SNES9X and looking for a real good tracer or debugger for SNES Link
Its worth mentioning once again that this bug is from the official Snes9x source, and not introduced by me. I have it on good word that this bug will be eliminated in the next version.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 408/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-17-05 12:11 AM, in Temporal Flux Release Link
What gives, what happened to your site.

I lost my job.

But through the grace of God, I have recently regained employment. My site will return once I have a suitable replacement computer (as my old server died during the interim).

If you ever wanted to make a Donation, now would be a good time.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 409/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-25-05 08:33 AM, in TPo100T: Delve Duo (Current Floor; A) Link
Great.

HP: 13
PhysOff: 4
PhysDef: 3
MagAtt: 3
MagG: 2
BP: 1
AP: 0


The man's name? Thomas Geiger. He is a paranormal hunter who carries an industrial chainsaw for a weapon (the kind they use to open cars). He's a big muscular man whose physical outline resembles Arnold Schwarzenegger. He wears urban camo fatigues with the chainsaw clipped to his side.

---T.Geiger


(edited by Geiger on 08-24-05 11:38 PM)
Geiger

Buster Beetle
Level: 34

Posts: 410/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-25-05 09:11 PM, in TPo100T: Delve Duo (Current Floor; A) Link
OOC: Check your stats moneybags. There is no way you should have 12 hit points.

(edit)

You have spent 14.7 AP, you definately need to check on how much stats cost.


---T.Geiger


(edited by Geiger on 08-25-05 12:15 PM)
(edited by Geiger on 08-25-05 12:17 PM)
Geiger

Buster Beetle
Level: 34

Posts: 411/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-26-05 03:49 AM, in TPo100T: Delve Duo (Current Floor; A) Link
The following people NEED to post their stats so I can start the game:

Geiger


I posted my stats last night.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 412/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-26-05 06:35 AM, in TPo100T: Delve Duo (Current Floor; A) Link
HPts - 10 + 4 = 14

If you are going to spend four points on your HP, your HP total would be 22.

---T.Geiger


(edited by Geiger on 08-25-05 09:36 PM)
(edited by Geiger on 08-25-05 09:37 PM)
Geiger

Buster Beetle
Level: 34

Posts: 413/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-26-05 06:38 AM, in TPo100T: Delve Duo (Current Floor; A) Link
And that's everyone from his most recent list.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 414/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-26-05 05:24 PM, in SNES 512x448 mode Link
I seem to recall reading that it was only available as a 3D mode, but I might not remember correctly. Been awhile since I studied bitplane modes.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 415/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-26-05 05:28 PM, in TPo100T: Delve Duo (Current Floor; A) Link
Thomas does a suitup montage, and prepares to enter the cavern of the damned. "Let's go."

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 416/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-26-05 10:00 PM, in TPo100T: Delve Duo (Current Floor; A) Link
Thomas moves in from the entrance slightly (to S1), looking the place over before proceeding.

---T.Geiger


(edited by Geiger on 08-26-05 01:01 PM)
(edited by Geiger on 08-26-05 01:02 PM)
(edited by Geiger on 08-26-05 01:04 PM)
Geiger

Buster Beetle
Level: 34

Posts: 417/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-28-05 12:31 AM, in TPo100T: Delve Duo (Current Floor; A) Link
"Careful. Stray even a little to either side, and you could fall off the raised ridge to the floor far below."

Thomas strides over to S2.

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 418/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-28-05 07:05 AM, in TPo100T: Delve Duo (Current Floor; A) Link
OOC: Actually, my stats were listed as such in my first post:

HP: 13
PhysOff: 4
PhysDef: 3
MagAtt: 3
MagG: 2
BP: 1
AP: 0

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 419/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-29-05 07:42 AM, in TPo100T: Delve Duo (Current Floor; A) Link
Thomas brushes aside the rubble and climbs back up onto S3.

"This place is quite unstable."

---T.Geiger
Geiger

Buster Beetle
Level: 34

Posts: 420/460
EXP: 241080
For next: 12571

Since: 03-15-04
From: Indianapolis, IN, USA

Since last post: 6 hours
Last activity: 6 hours
Posted on 08-30-05 01:06 AM, in STOP FUCKING POSTING REQUESTS AND DO THE SHIT YOUR DAMN OWN SELF Link
So instead of just ignoring these "requests" and going on about your day, you decided to be real nasty and tell people to fuck off?

And then someone else decided to sticky it, promoting this as acceptable behavior?

What the hell is wrong with you people?

---T.Geiger
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Acmlm's Board - I2 Archive - - Posts by Geiger


ABII


AcmlmBoard vl.ol (11-01-05)
© 2000-2005 Acmlm, Emuz, et al



Page rendered in 0.026 seconds.