Posts: 350
Threads: 69
Joined: May 2009
OK, bringing this back up for questions:
I tried to open up the Gens11svn emulator, but when the moment that I do, my computer tells me that it is an invalid Win32 application and then my Norton Security Suite recognizes it as a virus and completely removes it from my computer.
Does anyone have this problem, too?
Are there any better Sprite Ripping/BG Rip-Extracting Emulators out there?
hmm, that's curious. Where did you download it from?
Tsunami Bomb - The Simple Truth
We could run away
Leave behind anything paper
Not knowing where we're going to stay
When there's no Mondays
You're part of me, it's so easy to see the simple truth
When I'm in your arms, I feel safe from harm and sorrow too
You're part of me, it's so easy to see the simple truth
But most of all, nothing couldn't be solved when I'm with you
Posts: 350
Threads: 69
Joined: May 2009
11-11-2014, 05:05 PM
(This post was last modified: 11-11-2014, 05:10 PM by LooneyTunerIan.
Edit Reason: UPDATED with link description
)
Well, last time I remembered...
I think it was in a forum post somewhere in this forum.
This one to be exact: www.vg-resource.com/thread-23494.html
This link led me to the false-working emulator: https://code.google.com/p/gens-rerecordi...loads/list
Works fine for me, and I'm not getting told that it's a virus. Personally I find this to be the best emulator for Mega Drive ripping, the palettes are accurate and you can modify the background colour using an LUA script (instead of just black).
I've been using Gens11b though, I didn't know there was a later version. Try using that version instead and see if it works.
You may have a fresh start any moment you choose, for this thing that we call "failure" is not the falling down, but the staying down. -Mary Pickford
Posts: 350
Threads: 69
Joined: May 2009
11-12-2014, 06:08 PM
(This post was last modified: 11-12-2014, 08:54 PM by LooneyTunerIan.)
Nevermind, I fixed the problem.
But now I've got another problem: How to change the background color from black to a different color.
Does anyone know how to do that?
Posts: 515
Threads: 31
Joined: Aug 2014
Then you should disable Norton For a while or something like that.
My Program Has NEVER done that, so dunno what you're experiencing.
Posts: 350
Threads: 69
Joined: May 2009
11-12-2014, 08:55 PM
(This post was last modified: 11-12-2014, 09:00 PM by LooneyTunerIan.)
That's ok, I fixed the problem somehow.
But now I've got another problem: How to change the color of the background from black to a different color.
I know there was a color key feature, but I don't know how to get it.
Posts: 515
Threads: 31
Joined: Aug 2014
11-12-2014, 08:59 PM
(This post was last modified: 11-12-2014, 09:01 PM by eureka.)
(11-12-2014, 08:55 PM)LooneyTunerIan Wrote: But now I've got another problem: How to change the color of the background from black to a different color. LUA script.
Code: BLUE = {r=0, g=0, b=1}
...
background = BLUE
I don't know much LUA, but maybe someone can help you with that
This LUA script changes the background to magenta:
Code: gens.registerbefore(function(address,size)
local p,t=vdp.readpalette(1,1);
local c=pal.getcolor(t[1],1);
c.A=255;
c.B=255;
c.G=0;
c.R=255;
pal.setcolor(t[1],1,c);
vdp.writepalette(1,t[1]);
end)
If you know how colour channels work you should be able to modify this to any colour you want. Magenta should be sufficient though.
Copy-paste that into a text file called "bg-change.lua". In the emulator go to Tools -> Lua Scripting -> New Lua Script Window. Click Browse and select bg-change.lua.
You may have a fresh start any moment you choose, for this thing that we call "failure" is not the falling down, but the staying down. -Mary Pickford
Posts: 350
Threads: 69
Joined: May 2009
It works, but it won't stay in its color.
It goes back to black after the next scene comes in.
Hmm, I don't know why that would happen. What do you mean by next scene? Try clicking Run in the Lua window once it's gone back to black.
You may have a fresh start any moment you choose, for this thing that we call "failure" is not the falling down, but the staying down. -Mary Pickford
Posts: 350
Threads: 69
Joined: May 2009
No worries, I fixed the problem now. All is working properly.
|