CODE
#==============================================================================
# ** Window_Pet.
#------------------------------------------------------------------------------
# Based on the Script Builder's Guide, this is a selectable window :)
#==============================================================================
class Window_Pet < Window_Selectable
#--------------------------------------------------------------------------
# * Object Initialization
#--------------------------------------------------------------------------
def initialize
super(200, 200, 640-200, 480-200)
self.index = 0 # This is what item is selected when the window is first made
@item_max = 4
self.contents = Bitmap.new(width-32,height-32)
refresh
end
#--------------------------------------------------------------------------
# * Refresh
#--------------------------------------------------------------------------
def refresh
self.contents.clear
#self.contents.draw_text(x_position_from_edge , y_position_from_edge,
# width, height, "Text", alignment)
self.contents.font.color = system_color
self.contents.draw_text(0,0,150,32,"Dieeee!")
self.contents.font.color = green_color
self.contents.draw_text(0,32,150,32,"What? I kill you!")
self.contents.font.color = knockout_color
self.contents.draw_text(0,64,150,32,"This is getting boring...")
self.contents.font.color = normal_color
self.contents.draw_text(0,96,150,32,"METALLICA ROCKS!")
end
#--------------------------------------------------------------------------
# * Check_Input
#--------------------------------------------------------------------------
def check_input
if Input.trigger?(Input::C)
$window.dispose
if self.index == 0
print "You want to dieeee?"
elsif self.index == 1
print "C'mon man I just asked you a simple question!"
elsif self.index == 2
print "I know.... this is really boring huh"
elsif self.index == 3
print "METALLICA IS THE BOMB!"
end
end
end
end
Is there anything wrong with it?
EDIT: I fixed THAT problem. It was because I accidentally added a period after is inside the call script conditional branch thingy. But now I have a different problem:

in Interpreter 7 line 274, this is what is says (and a while after that)
CODE
if result == false
# End
return false
end
# Continue
return true
end
end
Any help?
This post has been edited by Redd: Dec 10 2009, 09:45 AM