The RPG Maker Resource Kit

RMRK RPG Maker Creation => XP => XP Scripts Database => Topic started by: xilef on May 01, 2007, 01:09:45 PM

Title: NASVBS
Post by: xilef on May 01, 2007, 01:09:45 PM
If you're wondering, NASVBS stands for Non-Animated Side-View Battle System. It's a small script edit designed by me. The long name for this script is just to fit into the trend of battle systems being called things like: Time Action Turn Based Physical Mouse Input With Cherries On Top Battle Sytem.
TATBPMIWCOTBS for short.
(Not, that battle system doesn't actually exist, but if it did that would be cool.)

At the bottom Game_Actor in the script editor are these things:
Code: [Select]
Get Battle Screen X-Coordinate
and
Code: [Select]
Get Battle Screen Y-Coordinate
Copy the Get Battle Screen X-Coordinate section, and paste it over the Get Battle Screen Y-Coordinate section.
Now comes the important part.
Where is says: return self.index * 160 + 80, replace the 160 + 80 with
Code: [Select]
40 + 500
and where it has these numbers in the Get Battle Screen Y-Coordinate section, replace them with
Code: [Select]
40 + 180
This system looks best with the character facing left graphic.

I did have a screen shot of this once, but that vanished...

For covering my ass reasons:
And one more thing: This is nothing like RPG Advocate's version, his has a huge pointless part under Get Battle Screen Y-Coordinate, which just changes the layers. Petros is a complete dumb ass :P

If you don't understand a thing I wrote (Like myself) then here's a simpler version but you'll have to do the thinking yourself.
At the bottom of Game_Actor, replace from part with def screen_x, to the end of def screen_y with this:
[CODE]def screen_x
if self.index != nil
return self.index * 40+500
else
return 0
end
end
def screen_y
if self.index != nil
return self.index * 40+180
else
return 0
end
end

I originally posted this at hbgames.org under the name el felixio, so some hbgames.org immigrants might say: Hey! I've seen this before![/code]
Title: Re: NASVBS
Post by: modern algebra on May 02, 2007, 03:30:23 PM
That's cool. Simple and it works well.
Title: Re: NASVBS
Post by: xilef on May 04, 2007, 03:45:41 PM
This was quite popular back in the day. But times have changed and people now want fast-paced battle systems with flashy animations.
Title: Re: NASVBS
Post by: modern algebra on May 04, 2007, 06:46:40 PM
It's pretty damn cool none the less. For people like me, especially, since I would hate to waste the time making all the animated sprites. If I were to use a side view battle-system, this is the kind I would use for sure. Good job.

EDIT:

Also, the Time Action Turn Based Physical Mouse Input With Cherries On Top Battle Sytem would totally be an awesome script.
Title: Re: NASVBS
Post by: Kokowam on May 04, 2007, 07:13:00 PM
I've seen part of this but then the guy asked for help on the "Get Battle Screen" whatever coordinates. Cool thing!
Title: Re: NASVBS
Post by: loloaziib on February 10, 2009, 02:38:35 PM
please,give me a DEMO ;D