Posts for feos

1 2 285 286 287 440 441
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Alright. Here's the principle. The game has random enemy spawns. Each time it wants to do one, it runs a certain code, and increments a certain value. Then, that value is used to read data from a ROM offset, which is used to set the amount of enemies to spawn. Which means, if you have different amount of random spawns than the other movie, the amount of enemies to spawn at those random places will differ. Exactly: MaTo walks through some area in Mission 2 where first random spawns occur to him, so his random spawn counter starts increasing. You don't have any of those until Mission 3, so you 2 start it with different counter values. The address for that counter is FFC17F. The script shows it, along with some other data I used. See how it's different for your start of Mission 3 and MaTo's. Conclusion: since it's actually not so random (depends on which areas with random spawns you visit), you can't manipulate it. Script: Download Rambo3.lua
Language: lua

count = 0 function object(base) id = memory.readbyte(base) if id == 0 then return end hp = memory.readwordsigned(base+0x2f) x = memory.readwordsigned(base+0x18)-130 y = memory.readwordsigned(base+0x14)-130 x1 = memory.readwordsigned(base+0x38)-130 x2 = memory.readwordsigned(base+0x3a)-130 y1 = memory.readwordsigned(base+0x3c)-130 y2 = memory.readwordsigned(base+0x3e)-130 gui.box(x1,y1,x2,y2,"#00ff0040") gui.text(x-5,y,string.format("%X",base-0xff0000)) --gui.text(x-5,y,string.format("%X\n%d\n%d",id,x+camx,y+camy)) end gui.register(function () camx = memory.readword(0xffc210) camy = memory.readword(0xffc218) total = 0 for i = 0xffd000, 0xFFE100, 0x40 do object(i) num = (i-0xffd000)/0x40 x0 = num%26*12 y0 = math.floor(num/26)*10 if id ~= 0 and num > 0 then --gui.line(x0+3,y0+6,x,y,"#ff0000c0") gui.text(x0,y0,num,"yellow") total = total+1 end end c170 = memory.readword(0xffC170) c17f = memory.readbyte(0xffC17F) gui.text(10,230,string.format("TOTAL OBJECTS: %2d CamY: %3d C17F: %X C170: %X Count: %d", total,camy,c17f,c170,count),"green") end) function spawn() address = memory.getregister("a2") count = memory.readword(address) --count = AND(memory.getregister("d7"),0xF) emu.pause() end memory.registerexecute(0xBD1A, spawn)
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Maybe if a link to this thread is put in the Japanese forum section, real Japanese people will easily resolve this?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
I believe that can be a reason for a Verified flag.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Yes, they can. I just needed to make sure it won't work otherwise.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
I contacted a person who can send it to you. But he was pretty sure the final costs would be the same as if you simply bought the Amazon one. He promised to check. Hold on.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Oh! Then it's "all levels" and can be vaulted as full completion!
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Processing...
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
I'm being deadly lazy during my 4-day weekend. Will eventually do it in a couple days I hope.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
I feel weird, as I don't think I understand: does this run actually use that cheat code? Does it use SRAM for anything?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
You've probably missed the part where I HATE OPENMSX. So I wanted you, as a person who's interested, to help me with getting the dump done without me actually touching this emu, because I HATE IT.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
feos wrote:
MSX, ouch! Can you make a lossless dump?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
So you can't, right?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Uncheck "Disable BBCode in this post". Also, I simply reported which variables in the script you need to change to what. So the latter. PS: the unmodified line is "hdframerate = 30", not 60.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Samsara wrote:
Um, an 80% success rate is actually pretty bad, especially for a site that's supposed to strive for perfection.
We not only love perfection in runs here, but also perfection in how they are organized. This is why there are threads about something that looks "silly" and "autistic" to a layperson, where those "silly" points are argued about to death by those "autistic" nerds. But my personal opinion is that every issue has a solution, and it may be of different quality, hence you can always improve it, until you can't anymore. This is what perfection means: it's subjectively perfect if one can't improve it. Ignoring the problem (even a tiny one) is in no way solving it. 1 frame is also an improvement.
r57shell wrote:
Let me explain your way. It looks like this: We can't do A because we can't define it well. So if we add "more actual gameplay" -> There will always be people that want "a bit more" gameplay included, and that want "a bit less". In other words. If we make A -> There will always be people who disagree. It's redicilous, because it's true for any A. In other words, you don't need A in this sentence. So it's true anyways: "There will always be people who disagree". So, if there always disagreeing people, if you use it like test of applicability, then you can't do anything, because "There will always be people who disagree".
Guidelines and organizing in the kind of art TASing is don't work as robotic as that. Who wants to come up with some solution here needs to know as much as possible about the problem, then think it over as hard as he can, and then bring it on public, to look for last fixes. This is what the system we're suggesting is based on. Abstract sophisms don't help. I'm basing my words on these, for example: Input time vs avi time "glitched" label vs. "no x glitch" label Both of these problems got the audience exactly halve in opinions, and the crowds supporting each of them was quite huge. Both were solved. I don't remember anyone disagreeing with the solutions and bringing up any new serious problems. Even if there are some that are still not satisfied, there's so few of them (or they care so little) that they produce no stress. Why is that? Because the solutions were good. There is also Site policy regarding Alternative RAM stats on Power-up that was part of this submission's discussion. Ridiculously long convo, but the problem was also solved! So these are the cases when the final decisions generate little to no stress. Because they match the criteria I provided in the beginning. And there are cases that aren't still solved, and there are ones that can not be solved with certain decisions at all. Adding another category to Vault (exactly what I was addressing in my response to goldenband) can not happen without stress. Because "fastest possible" is somewhat clear. "Contains more of something" is not. Deal with it.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Why are you going forward and back to the door again during the second minute of day 4?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
blend = false hdframerate = 60
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
The guideline is about Moon cases I believe. Inversion's judgment note is exactly what I'm saying. Bugs bunny is pre-Vault, looking at the rating, it should have been rejected. There is also Bushido Blade 2, that uses an unlockable mode, but was still vaulted, but it happened before such a situation was actually thought over.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Passwords or cheat codes that aren't supposed to be known from running the game for the first time aren't vaultable. So you guys have to actually like it if you want it accepted :) Otherwise it'd have to be 2 runs - all normal stages (vaultable) and all extra stages (only Moons).
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
My point is, it's is a clear Vault run, and it was not submitted back then because there was no Vault to accept it to. When the latter appeared, unrejecting of runs that could potentially be vaulted happened. In other words, if this run was submitted and rejected, it would already be published in Vault. Also, I don't understand what is wrong about asking for submitting an old completed movie.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
I'd say don't spoil and wait until it's finally done.
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
feos looks at publication rates. Welp, people don't think it is suboptimal at all! And the entertainment rating is hilariously high. It'd be in top 5 of the most entertaining Stars! Since suggested a bunch of times, I'm now in favor of finally starring it. Anyone disagrees? Also, what do we do to other Genesis Sonics that have stars (2)? Removing the S3K any% star isn't possible, it's one of the most mind-blowing runs on the site (hence newcomer rec). Is the S2 run by Aglar as different from both S3K any% and this one as they are different from each other?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Oh! Thank god Archive was unblocked again! HYPE NEW PUBS
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
Experienced Forum User, Published Author, Site Admin, Skilled player (1239)
Joined: 4/17/2010
Posts: 11314
Location: RU
Hm. Aren't you going to improve it anytime soon then?
Warning: When making decisions, I try to collect as much data as possible before actually deciding. I try to abstract away and see the principles behind real world events and people's opinions. I try to generalize them and turn into something clear and reusable. I hate depending on unpredictable and having to make lottery guesses. Any problem can be solved by systems thinking and acting.
1 2 285 286 287 440 441