Quands je veux tester mon jeu , le jeu se démare normalement , mais quands je charge la parti il me mets:
"script window_base line 22: type error occured
no simplicit convertion from nil to integrer"
#=================================================
=============================
# ** Window_Base
#-------------------------------------------------
-----------------------------
# This is a superclass of all windows in the game.
#=================================================
=============================
class Window_Base < Window
#-------------------------------------------------
-------------------------
# * Constants
#-------------------------------------------------
-------------------------
WLH = 24 # Window Line Height
#-------------------------------------------------
-------------------------
# * Object Initialization
# x : window x-coordinate
# y : window y-coordinate
# width : window width
# height : window height
#-------------------------------------------------
-------------------------
def initialize(x, y, width, height)
super()
self.windowskin = Cache.system("Window")
self.x = x
self.y = y
self.width = width
self.height = height
self.z = 100
self.back_opacity = 200
self.openness = 255
create_contents
@opening = false
@closing = false
end
Ils disent que le probleme viens de la ligne 22...
(je n'ai pas copié tt le script , seulement jusqu'à la ligne 32...)
sinon un screen...
dsl , voilà le screen :