Jump to content
New account registrations are disabed. This website is now an archive. Read more here.
  • 0
Arawn

Error by Using a lights-script

Question

Hi :)

I

 downloaded a script from Victor Sant and make the event, how it explain it in the tutorial, but when I start the game, then there stands that:

 

lichte10.png

 

The part code is here:

module Victor_Engine
  #--------------------------------------------------------------------------
  # * required
  #   This method checks for the existance of the basic module and other
  #   VE scripts required for this script to work, don't edit this
  #--------------------------------------------------------------------------
  def self.required(name, req, version, type = nil)
	if !$imported[:ve_basic_module]
  	msg = "The script '%s' requires the script\n"
  	msg += "'VE - Basic Module' v%s or higher above it to work properly\n"
  	msg += "Go to http://victorscripts.wordpress.com/ to download this script."
  	msgbox(sprintf(msg, self.script_name(name), version))
  	exit
	else
  	self.required_script(name, req, version, type)
	end
  end
  #--------------------------------------------------------------------------
  # * script_name
  #   Get the script name base on the imported value, don't edit this
  #--------------------------------------------------------------------------
  def self.script_name(name, ext = "VE")
	name = name.to_s.gsub("_", " ").upcase.split
	name.collect! {|char| char == ext ? "#{char} -" : char.capitalize }
	name.join(" ")
  end
end

The last "end" is the line 224.

The basic script I install too.

Share this post


Link to post
Share on other sites

7 answers to this question

Recommended Posts

  • 0

remove it and see what happens. Also do you have the other scripts that it says you need?

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...