Help - Search - Members - Calendar
Full Version: Side View Battle System
RPG RPG Revolution Forums > Scripting > Script Tutorials > RGSS
Pages: 1, 2, 3
mikeawmids
Thanks Fade, you're the stuff of legends. biggrin.gif
Naridar
Error, line 52, "undefined method [] fornil:NilClass
Lato
Hmm i tried to get it but both links are bad it seems.... or am i doing somthing wrong?
Trin-rin
QUOTE (lato22 @ Oct 21 2008, 05:06 PM) *
Hmm i tried to get it but both links are bad it seems.... or am i doing somthing wrong?


I'm having the same problem. The links no longer work... Can someone post the script? Or tell us where the new link is for the script?
Majingaara
QUOTE (darkhalo @ Feb 22 2008, 01:17 PM) *
Hagosha, these scripts work well together. Here is a sideview Ive been fiddling with in VX using both scripts.
It can be fiddly though and Ill help if you want, step by step. Sorry I cant help with the 2nd request wink.gif
But don't give up !



How the heck did you make the battle background like that?!!! And did you have to import backgrounds to use for the battle?
Pimex
Can you make another script link cause i think thats one's broken
Adrien.
Scripts please!!!!
Thanks
djmaster1994
Im confuse with this script i dont why it dont work.
Please help me front view battle is lame.
Genshyu
Script link is broken.
Elemental Crisis
Hello All,

Sorry for the late update, I've updated the link in my original post.
Genshyu
I'm getting an error message saying in the Sideview Formation script, line 54... Wtf? o.o. The line on 54 is this.
return Battle_Formation::FORM[$game_system.battle_formation][self.index][0]
Help?



Edit: Fixed, it turnes out when I loaded my game, then the battle system glitched, but when I start a new game, I think it will work, because it worked in the battle test.



Edit Edit: It works biggrin.gif.
Elemental Crisis
Yeah you never want to load a game when you've made changes to it. Always start a new one.
Genshyu
QUOTE (Elemental Crisis @ Jan 1 2009, 09:37 PM) *
Yeah you never want to load a game when you've made changes to it. Always start a new one.

Thanks for that info bud, I apreciate it biggrin.gif.
tarzanboy
great script, thank you =D
TigStripe
This is a bit of a necropost (not as much as the last one), but this is a valid concern and/or change to the script.

This is an awesome script, but I'm wanting to tweak it to use different actors (drawn images like the battlers from XP). Problem is that I can't seem to find in the scripts where it defines the source images of the actors. Also, battlers moving around would look silly, so to get them to stop moving, would I merely redefine M_MODE_ATK1 and M_MODE_ATK3? These define moving into proximity and returning to the lineup, respectively.

Any input is appreciated. Great script, hope to use it!
headless1
I like this script, but it seems you have to have at least two or more in your party for it to work other wise your character disappears on the second attack and the game locks up. Is there any way to fix that. Even with two characters it locked up but took a little longer.
nighthawk282
I know this is sort of a necropost, but I have a question:
I love the script, it works extremely well, and I have had no problems. However, I am trying to give one party member a ranged attack, and I don't want them to rush up to the enemy. How would I stop just one character from moving up to the enemy, and just standing still?
Sable
Hey, I'm new here, the script works well, having an issue that I and a regular user of RPGmaker arehaving trouble with.

under normal circumstances, the battle plays out fine, but when I try clicking battle test in the database, it gives me a cache error on line 75.

If a screenshot is necessary, I'll try and supply one
joseuceda
I have a problem with your script, when an enemy casts confusion, my char attacks himself and then he moves offscreen, the game crash at this point, any idea pal?.
The Creator
PROBLEM: after I attack the last monster my char runs out of the screen, and it just says John Attacks and stays like that.
Ouberion
I don't have any problems with it. Are you having that problem in the battle test or in game test? If you are having it in game test, have you done a "new game" and tried it?
Jonnyofthefunk
Is there a way to make this work with a large party number?
i have a script that allows me to have more party members than the default. . . soooo?
mudducky
@Jonnyofthefunk

Find the script Spriteset_Battle

then where it says "Create Actor Sprite
# By default, the actor image is not displayed, but a dummy sprite is
# created for treating enemies and allies the same, if required."

Add an extra
CODE
@actor_sprites.push(Sprite_Battler.new(@viewport1))
for each additional party member.

Then find where it says "Update Actor Sprite" and again add an extra line for each actor. I.e. I have 6 actors on the battle so I would have

CODE
  #--------------------------------------------------------------------------
  # * Update Actor Sprite
  #--------------------------------------------------------------------------
  def update_actors
    @actor_sprites[0].battler = $game_party.members[0]
    @actor_sprites[1].battler = $game_party.members[1]
    @actor_sprites[2].battler = $game_party.members[2]
    @actor_sprites[3].battler = $game_party.members[3]
    @actor_sprites[4].battler = $game_party.members[4]
    @actor_sprites[5].battler = $game_party.members[5]
    for sprite in @actor_sprites
      sprite.update
    end
  end



Then in the Formation script add more actor postions. I.e.

CODE
    0 => [[400,130],[425,180],[435,140],[460,205],[480,225],[380,225]]


for 6 actors.
KrloOs
I also had the problem of the "coward hero" hehe...
it happens when the enemy is too big (example "Evilking")
After the hero attacks it flies off the screen and the game freezes...
(well actually the game continues but you can't do any action...)
I solved this by just moving the enemy a little farther from the heroes
haha silly solution don't you think?
t5yvxc
how do make this script be able to use minkoff style battlers?
and also how do i get the script to show the players hp and mp like in this post
http://www.rpgrevolution.com/forums/index....st&p=107830
AngeliqueSama
Awsome! Thanksive been wanting side view for my project happy.gif
Draakjepet2
how can i let my characters hold their weapons in battle?
i would like to see them holding their weapons while in battle
pleas awnser ^^

(PS: if combinated this script whit the spin battle script it look very nice it maby something you want to do 2 ^^)
AngeliqueSama
QUOTE (KrloOs @ Sep 25 2009, 10:12 AM) *
I also had the problem of the "coward hero" hehe...
it happens when the enemy is too big (example "Evilking")
After the hero attacks it flies off the screen and the game freezes...
(well actually the game continues but you can't do any action...)
I solved this by just moving the enemy a little farther from the heroes
haha silly solution don't you think?

I also had that problem in my old projects i found it annoying
Deuresco
dont know if this has been answered or not.

when i use custom battlers with this script, it makes the battler run Past my character, and doesnt display any animation. but when i use any of the battlers that come with RMVX it goes up to the actor and displays the Melee/Physical animation..

how do i make it work for imported battlers?
thanks
dejers
everything is good except
that my player stays small and my enemies stay big
and i float above the enemies heads huh.gif
shozanmario93
Hey, R3 community! I got this script and it's working fine, except for one thing...

The enemies won't die.

They'll die, but they won't make the noise and disappear. If anyone could help me with this, that would be excellent.
AkimboKai
Nice!I'm gonna use this.
Mire_92
Very very cool!! mage.gif
Were Vampire
I have a problem that has not been put here so far.
Script "Battle Backgrounds" line 1: Syntax error ocurred
How can I fix that?
MajEnigma
I get this error everytime. Can I have some help please?

pixel
I don't know what I did wrong. I'm new to scripting and copy/pasted the scripts for this once I got them. I got errors, of course, and fixed them. The game runs fine-until I encounter a monster. Then it says 'Script '( Insert here )' line 449: NameError occurred.
unstabilized constant Sprite_Battler::SideView
I put a text box before the battle originally, then removed it. The error still occurs.
This is the script:
script
#--------------------------------------------------------------------------
# ● Motion Control (Enemy)
#--------------------------------------------------------------------------
def enemy_motion_control
# Operation Change
case @moving_mode
when SideView::M_MODE_WAIT # Standby
init_direct_attack
when SideView::M_MODE_MAGI # Attack
@battler_x_plus = 10
when SideView::M_MODE_DAMG # Non-Damage Attack
@battler_x_plus = -10
@shake_flg = true
when SideView::M_MODE_ATK1 # Direct Attack (Approaching)
exe_moving_attack_start
@end_pos_x = @battler_x_plus
when SideView::M_MODE_ATK2 # Direct Attack (Attacking)
@battler_x_plus = @end_pos_x + 10
when SideView::M_MODE_ATK3 # Direct Attack (Returning)
exe_moving_attack_end
else
p "error:Sprite_Battler>> @moving_mode", @moving_mode
end
end
Hawaiihola
Thanks Elemental Crisis, these scripts are the first working SideView Battle I've ever seen smile.gif
Ndoelicious
The link doesnt work for me..and I cant find this anywhere anymore =.=
Kread-EX
http://rpgcreative.net/rpgmakervx/scripts-...ur-le-cote.html
Here. The site is in French, but the script comments are still in English.
Ndoelicious
Thanks mister Kready, I think I got a feeling that its your site since umm..its French, and ure a Frenchmen smile.gif
btw, I think it works fine, gotta really expand the next 50% of the SBS on our own ^^
Kread-EX
Nope, I found it with Google. It's not my site in any fashion, I didn't even know it existed before.
Kedanna
Any chance of this being converted to work on VX-Ace?
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.