RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[RESOLVED] Freggin Error I Can't Fix!

0 Members and 1 Guest are viewing this topic.

**
Rep:
Level 86
It's Jepherz Bitch
Alright here's the problem, I tried to put the caterpillar script in but it never worked... so then I took it out and I got this error:

Spoiler for:

Spoiler for:

Please Help!!
« Last Edit: January 23, 2008, 01:52:30 AM by Zeriab »

*
Meet me in the middle
Rep:
Level 89
or left of the dial.
For frequently finding and reporting spam and spam botsSecret Santa 2012 Participant
Make a new project and take the 'Sprite_Character' script from that one and replace your old one.

**
Rep:
Level 86
It's Jepherz Bitch
Tried it, it doesn't work.

*
Meet me in the middle
Rep:
Level 89
or left of the dial.
For frequently finding and reporting spam and spam botsSecret Santa 2012 Participant
reinstall or wait until one of the scripters can look at this

?_?

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Strike 1, should be in script help forum because this is an error.

You should also post the damn caterpillar script you're using, there's at least 5 of them.

**
Rep:
Level 86
It's Jepherz Bitch
Strike 1, should be in script help forum because this is an error.

You should also post the damn caterpillar script you're using, there's at least 5 of them.

Isn't this the "Script Help - For Help and Troubleshooting with your Scripts"

And this is the caterpillar script I used: http://www.rpgrevolution.com/script/32/

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
I moved it for you, it was in scripts.

Also, there's no need to quote the post that's directly above yours.

**
Rep:
Level 86
It's Jepherz Bitch
 I can't find my topic anymore.. (the one you moved)

And sorry for the quoting, I wasn't aware of that, I'll keep it in mind next time...

Did you see a reason why my scripts are all screwed up?

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
What the hell are you smoking? The topic that was in the scripts section is in the script help section.

http://rmrk.net/index.php/topic,19774.0.html

**
Rep:
Level 86
It's Jepherz Bitch
alright, ANYWAYS.

what's the problem with the scripts? I mean everything screwed up because of..?

*
Meet me in the middle
Rep:
Level 89
or left of the dial.
For frequently finding and reporting spam and spam botsSecret Santa 2012 Participant
What the hell are you smoking? The topic that was in the scripts section is in the script help section.

http://rmrk.net/index.php/topic,19774.0.html
Yeah, pretty sure he got that.

As for the error, I'll take a look at the script and see if I get the error.

**
Rep:
Level 86
It's Jepherz Bitch

**
Rep:
Level 86
It's Jepherz Bitch
I now know that there is something wrong with the Window_Shopbuy script and that the error I posted above is related to the "EM Exclamation" Animation

*
Rep:
Level 87
When I get an error like that, the first thing I look for is new scripts that have been inserted in the wrong place.

When you get new scripts, they're USUALLY placed just above MAIN.  Is it possible you have another script down there somewhere that redefines anything about $data_animations or Sprite_Character?  I don't know enough to be sure, but it LOOKS like it's $data_animations that's the culprit.

Is it possible when you removed the caterpillar script, that you got rid of more than you should have?
Always remember you're unique.
Just like everybody else.

**
Rep:
Level 86
It's Jepherz Bitch
But still, there's an error with the Window_Shopbuy script

**
Rep:
Level 86
It's Jepherz Bitch
omg, can someone help?

***
Rep:
Level 88
None of your maps have names >.>

Anywho, make a new projet and replace Window_Shopbuy and Sprite_Character and see if that works.

If it dosent, insert the caterpilar script into a new project along with the SDK and post any errors you get.
Games in progress:
Tome of Arastovia: 7% complete at 2 hours of gametime

**
Rep:
Level 86
It's Jepherz Bitch
No, they have names, they're just censored ;D

**
Rep:
Level 86
It's Jepherz Bitch
Could it be possible that in a cutscene, the player can't buy anything or like there's some sort of limit to what he can do? Here's the script I used.

Spoiler for:
class Scene_Cutscene
def main
    $data_actors        = load_data("Data/Actors.rxdata")
    $data_tilesets      = load_data("Data/Tilesets.rxdata")
    $data_common_events = load_data("Data/CommonEvents.rxdata")
    $data_system        = load_data("Data/System.rxdata")
    $data_mapInfos     = load_data("Data/MapInfos.rxdata")
    $game_temp          = Game_Temp.new
    $game_system        = Game_System.new
    $game_switches      = Game_Switches.new
    $game_variables     = Game_Variables.new
    $game_self_switches = Game_SelfSwitches.new
    $game_screen        = Game_Screen.new
    $game_actors        = Game_Actors.new
    $game_party         = Game_Party.new
    $game_map           = Game_Map.new
    $game_player        = Game_Player.new
    @save_max = 3
    for i in 0..@save_max     
      if FileTest.exist?("Save#{i+1}.rxdata") : $scene = Scene_Title.new end
    end
    $game_map.setup(25)
    $game_player.moveto(9,14)
    $game_player.refresh
    $game_map.update
    $scene = Scene_Map.new
  end
end

If anyone sees anything, please tell!