Questo è il mio menu.Sono delle colonne vuote ma io vorrei inserire i comandi oggetti,equip,ecc...nella colonna di sinistra.Fatto cio il resto lo so fare da me(Sempre se ci riesco).
Spero che qualcuno di voi mi aiuti e che questo topic non sia uno di quelli che occupano spazio inutilmente nel forum. :rolleyes:
Question
Darkshiva
Allora io come sid ho creato un menu con lo script generator.Ma il mio problema è diverso.
Questo è lo script:
#===================================================
# - CLASS Your_Scene Begins
#===================================================
class Your_Scene
#---------------------------------------------------------------------------------
def initialize
end
#---------------------------------------------------------------------------------
def main
@window1 = Window1.new
@window1.x =0
@window1.y =0
@window1.height = 57
@window1.width = 641
#@window1.z = 200
@window2 = Window2.new
@window2.x =0
@window2.y =57
@window2.height = 424
@window2.width = 149
#@window2.z = 200
@window3 = Window3.new
@window3.x =148
@window3.y =57
@window3.height = 424
@window3.width = 493
#@window3.z = 200
Graphics.transition
loop do
Graphics.update
Input.update
#update
if $scene != self
break
end
end
Graphics.freeze
@window1.dispose
@window2.dispose
@window3.dispose
end
#---------------------------------------------------------------------------------
#---------------------------------------------------------------------------------
def update
end
#---------------------------------------------------------------------------------
end
#===================================================
# - CLASS Your_Scene Ends
#===================================================
#===================================================
# - CLASS Window1 Begins
#===================================================
class Window1 < Window_Base
#---------------------------------------------------------------------------------
def initialize
super(0, 0, 641,57)
self.contents = Bitmap.new(width - 32, height - 32)
self.contents.font.name = "Tahoma"
self.contents.font.size = 22
self.contents.font.color = text_color(0)
self.contents.draw_text(0, 0, 33, 33, "1")
end
#---------------------------------------------------------------------------------
end
#===================================================
# - CLASS Window1 Ends
#===================================================
#===================================================
# - CLASS Window2 Begins
#===================================================
class Window2 < Window_Base
#---------------------------------------------------------------------------------
def initialize
super(0, 0, 149,424)
self.contents = Bitmap.new(width - 32, height - 32)
self.contents.font.name = "Tahoma"
self.contents.font.size = 22
self.contents.font.color = text_color(0)
self.contents.draw_text(0, 0, 33, 33, "2")
end
#---------------------------------------------------------------------------------
end
#===================================================
# - CLASS Window2 Ends
#===================================================
#===================================================
# - CLASS Window3 Begins
#===================================================
class Window3 < Window_Base
#---------------------------------------------------------------------------------
def initialize
super(0, 0, 493,424)
self.contents = Bitmap.new(width - 32, height - 32)
self.contents.font.name = "Tahoma"
self.contents.font.size = 22
self.contents.font.color = text_color(0)
self.contents.draw_text(0, 0, 33, 33, "3")
end
#---------------------------------------------------------------------------------
end
#===================================================
# - CLASS Window3 Ends
#===================================================
Questo è il mio menu.Sono delle colonne vuote ma io vorrei inserire i comandi oggetti,equip,ecc...nella colonna di sinistra.Fatto cio il resto lo so fare da me(Sempre se ci riesco).
Spero che qualcuno di voi mi aiuti e che questo topic non sia uno di quelli che occupano spazio inutilmente nel forum. :rolleyes:
http://team.ffonline.it/imgpersonaggio/seifer_it.jpg http://team.ffonline.it/imgpersonaggio/kimahri_it.jpg
E tu in che personaggio ti identifichi?
http://img145.imageshack.us/img145/4716/squallni0.gifhttp://img262.imageshack.us/img262/6382/gohanssj2ky4.gif
Link to comment
Share on other sites
37 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now