Having dome problems....

● ARCHIVED · READ-ONLY
Started by yayamiho 6 posts View original ↗
  1. Hey. I'm new here, so if I put it into the wrong place, tell me ^^; and sorryyyyy~ XD anyway--- I'm having a problem-- I was messing with some stuff on the script and this appeared:



    I don't know--- I didn't mess with the data manager part, so I'm kind of confused about what to do--- Is the game system written part supposed to be somewhere else? Is it another problem? What do I doooo~?
  2. Can you post what you actually did mess with?
  3. I've moved this thread to RGSSx Script Support. Please be sure to post your threads in the correct forum next time. Thank you.


    Please edit your post to actually state what the problem is. "Having some problems" is very ambiguous and doesn't help anyone help you.


    Can't see the image. What does the error message say? The FULL text - script name, line numbers, all that.


    What scripts have you added? What did you change?
  4. The error must be in the DataManager Section, line 84
     

    #-------------------------------------------------------------------------- # * Create Game Objects #-------------------------------------------------------------------------- def self.create_game_objects $game_temp = Game_Temp.new $game_system = Game_System.new # <= this is line 84 in mine, $game_timer = Game_Timer.new $game_message = Game_Message.new $game_switches = Game_Switches.new $game_variables = Game_Variables.new $game_self_switches = Game_SelfSwitches.new $game_actors = Game_Actors.new $game_party = Game_Party.new $game_troop = Game_Troop.new $game_map = Game_Map.new $game_player = Game_Player.new endPerhaps in line 84 above , perhaps you did(accidentaly did) something like this DataManager::Game_System.new ?
    Regardless, just remove the DataManager:: or copy the snippet above and paste it in your editor, we'll see if that's will fix it or not. If not then you need to give more detail :) .
  5. If you're updating a script, you might have, by accident, posted the script's contents into the wrong section.   When I've done that, during a hasty edit, I've seen very cryptic errors.

    See if you can see your script contents in any other one of the scripts in the list.  If you pasted it into, say, the Game_System line by mistake, you'll need to create a fresh project, and copy the Game_System line from that into your current project to fix it.
  6. BoluBolu, can you explain your logic?


    The problem is NOT with the section of code you've posted. It's with ANOTHER script that is trying to use it incorrectly.

    yayamiho said:
    I was messing with some stuff on the script
    THIS is what's cause the problem.


    What "stuff" were you "messing" with? Show us.