Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Looking for help with XAS

ok, in the script called MOG Scene Title find the code that says....(lines 36-53)

Code:
    @mnpan = Plane.new
    @mnpan.bitmap = RPG::Cache.title("Title_Pano01")
    @mnpan.z = 1 
    @mnpan2 = Plane.new
    @mnpan2.bitmap = RPG::Cache.fog("001-Fog01",0)
    @mnpan2.opacity = 120
    @mnpan2.blend_type = 1
    @mnpan2.z = 3         
    @mnlay = Sprite.new
    @mnlay.bitmap = RPG::Cache.title("Title")
    @mnlay.z = 10
    @mnlay.zoom_x = 3
    @mnlay.opacity = 0
    for i in 0..3
    if FileTest.exist?("Save#{i+1}.rxdata")
    @continue_enabled = true
    end
    end

See "Title"?? Change that to a pic of your choice that you have in the titles folder of hte graphics. If you want to change the moving pic in the title, then change "Title_Pano01". Hope this helps!!

~xgamexfreakx

EDIT: I didn't really answer your question too well....if you want it gone, then delete
Code:
    @mnlay = Sprite.new
    @mnlay.bitmap = RPG::Cache.title("Title")
    @mnlay.z = 10
    @mnlay.zoom_x = 3
    @mnlay.opacity = 0
and it should work...Let me know if you get any errors!
 
ok well i deleted what you told me to delete here, and that made an error:  Script 'mog-scene_title_sora' line 98 nomethoderror occured. undefined method 'zoom_x' for nil:NILClass. ill try the first thing you said though.

EDIT: yeah im trying to get rid of it, but i dont have a picture of my own im not making a background really... or at least not yet.
 
well...the easiest way to fix that, is to leave everything the way it is, then just take everything out of the parenthesis. so it looks like this..

Code:
   
    @mnlay = Sprite.new
    @mnlay.bitmap = RPG::Cache.title("")
    @mnlay.z = 10
    @mnlay.zoom_x = 3
    @mnlay.opacity = 0

Then it'll be a delayed white screen. I'll look into deleteing it fully in the morning. it's too late now for this right now though. Try this method though and see if it works for you. Hope this helps!

~xgamexfreakx
 
*sigh* im afraid not. i did what you said and it only took off 1 part of the title, so almost there i guess you could say. i tried deleting all the parenthesis containing title info, and an arror occured. this si what it looked like after i ttok the titles out, so you know wich ones i took out:

well this is a before
Code:
@mnpan.bitmap = RPG::Cache.title("Title_Pano01")
    @mnpan.z = 1 
    @mnpan2 = Plane.new
    @mnpan2.bitmap = RPG::Cache.fog("001-Fog01",0)
    @mnpan2.opacity = 120
    @mnpan2.blend_type = 1
    @mnpan2.z = 3         
    @mnlay = Sprite.new
    @mnlay.bitmap = RPG::Cache.title("Title")

and an after
Code:
@mnpan.bitmap = RPG::Cache.title("")
    @mnpan.z = 1 
    @mnpan2 = Plane.new
    @mnpan2.bitmap = RPG::Cache.fog("001-Fog01",0)
    @mnpan2.opacity = 120
    @mnpan2.blend_type = 1
    @mnpan2.z = 3         
    @mnlay = Sprite.new
    @mnlay.bitmap = RPG::Cache.title("")
this is where i got the error. even if i take out the "001-fog01,0" it gets the error. i do not know if i did someting wrong or...?  well im going to bed, cus yes it is very late (2 am for me). and thx for all you help so far.  :shades:
 
OH! it seems it was something i did, i tried a second time before i went to bed and it worked! i kep the line with the fog in there and it created a nice effect to the title screen!  :lol:  anyways. If your not too busy i  seem to have another problem, idk if its script related soo...

i create a new map, and i decide for some basic monsters i just copy and paste the event monsters that were in the demo. 1 problem, they wont atk me, but yes they do move around, take damage, and die and everything is normal except their not attacking. well im off to bed, hope you can help me.  :straightthumb:
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top