The PokéCommunity Forums  

Go Back   The PokéCommunity Forums > Fan Games > Binary ROM Hacking
Reload this Page Other FireRed rejecting all custom scripts

Notices
For all updates, view the main page.

Binary ROM Hacking Need a helping hand or just want to talk about binary ROM hacks? Get comments and answers to any ROM Hacking-related problems, questions or thoughts you have here.

Ad Content
Reply
 
Thread Tools
  #1   Link to this post, but load the entire thread.  
Old May 24th, 2015 (2:38 PM). Edited May 26th, 2015 by Rockoria.
Rockoria Rockoria is offline
 
Join Date: Jan 2015
Posts: 97
Hello!

Rather bad problem. Essentially, I took a new FSF offset and attempted to put this script into it as a test:
Quote:
#dynamic 0x(FSF Offset)
#org @start
lock
faceplayer
msgbox @1 0x6
release
end

#org @1 = Hi.\nMy name is Diego.
Now, the rather disastrous issue here is that when I compile, if I exit and re-enter it just reverts back to the original. I've tried both removing and leaving the #org offset at the beginning of all offsets when you first open them and no changes. This is an absolutely massive issue for me, as I've tried using several different offsets and all of them just reject the script; this basically means I will NEVER be able to make any progress at all as long as this problem persists.
Reply With Quote
  #2   Link to this post, but load the entire thread.  
Old May 24th, 2015 (2:49 PM).
Mana's Avatar
Mana Mana is offline
 
Join Date: Jan 2009
Location: UK
Age: 31
Gender: Male
Posts: 10,075
Do you know what version of XSE you're using?

Also, to confirm, you're compiling with the gear-symbol button and then copying the given address to A-Map?
__________________
Reply With Quote
  #3   Link to this post, but load the entire thread.  
Old May 24th, 2015 (7:25 PM).
Rockoria Rockoria is offline
 
Join Date: Jan 2015
Posts: 97
Quote:
Originally Posted by Mana View Post
Do you know what version of XSE you're using?

Also, to confirm, you're compiling with the gear-symbol button and then copying the given address to A-Map?
I'm using v1.1.1, and yes, but I don't even get that far, right after using the gear button, if I reload the offset in XSE it just reverts back.
Reply With Quote
  #4   Link to this post, but load the entire thread.  
Old May 24th, 2015 (11:31 PM).
Mana's Avatar
Mana Mana is offline
 
Join Date: Jan 2009
Location: UK
Age: 31
Gender: Male
Posts: 10,075
Which offset are you reloading? If you're reloading without copying the new one to the Noc then you're ignoring the new script! It's held at a completely new location, and writing a new script leaves the old one untouched (hence no change on reload).

I think that may be the problem!
__________________
Reply With Quote
  #5   Link to this post, but load the entire thread.  
Old May 25th, 2015 (2:00 PM).
Rockoria Rockoria is offline
 
Join Date: Jan 2015
Posts: 97
Quote:
Originally Posted by Mana View Post
Which offset are you reloading? If you're reloading without copying the new one to the Noc then you're ignoring the new script! It's held at a completely new location, and writing a new script leaves the old one untouched (hence no change on reload).

I think that may be the problem!
Can you define the term Noc here? Also, what am I supposed to be copying? I put a script into a blank offset, compiled it, and posted that offset into Advance Map. When it didn't work in-game, I opened up the offset and surprise, nothing there, all gone. What am I doing wrong?
Reply With Quote
  #6   Link to this post, but load the entire thread.  
Old May 26th, 2015 (4:49 AM).
Splash's Avatar
Splash Splash is offline
But nothing happened.
 
Join Date: Oct 2009
Location: Just use an Old Rod
Gender: Male
Nature: Hasty
Posts: 658
Have you tried saving it? You listed the steps and I dont see you saving it..
__________________
༼ つ ◕_◕ ༽つ PRAISE Splash ༼ つ ◕_◕ ༽つ
|VM|PM
|
Reply With Quote
  #7   Link to this post, but load the entire thread.  
Old May 26th, 2015 (5:35 AM).
daniilS's Avatar
daniilS daniilS is offline
busy trying to do stuff not done yet
 
Join Date: Aug 2013
Age: 23
Gender: Male
Posts: 409
Quote:
Originally Posted by Rockoria View Post
Can you define the term Noc here? Also, what am I supposed to be copying? I put a script into a blank offset, compiled it, and posted that offset into Advance Map. When it didn't work in-game, I opened up the offset and surprise, nothing there, all gone. What am I doing wrong?
What do you mean by a blank offset and which offset did you put into amap?
__________________
Reply With Quote
  #8   Link to this post, but load the entire thread.  
Old May 26th, 2015 (11:49 AM).
Rockoria Rockoria is offline
 
Join Date: Jan 2015
Posts: 97
Quote:
Originally Posted by daniilS View Post
What do you mean by a blank offset and which offset did you put into amap?
By blank offset I was referring to an offset given to me by Free Space Finder, and I put that same offset into Amap. Was I supposed to be putting the dynamic offset in Amap, the one defined by the script?
Reply With Quote
  #9   Link to this post, but load the entire thread.  
Old May 26th, 2015 (12:03 PM). Edited May 26th, 2015 by Anexenaumoon.
Anexenaumoon Anexenaumoon is offline
 
Join Date: May 2015
Gender: Male
Posts: 16
When you write a script, you compile it to the dynamic offset, and put that dynamic offset in amap as well now, did you compile it and change it up more than once? Cause maybe you rewrote over old data... messing up the script compilation...

EDIT: I inserted your script, and it worked perfectly fine.
Reply With Quote
  #10   Link to this post, but load the entire thread.  
Old May 26th, 2015 (12:57 PM).
Rockoria Rockoria is offline
 
Join Date: Jan 2015
Posts: 97
Quote:
Originally Posted by Anexenaumoon View Post
When you write a script, you compile it to the dynamic offset, and put that dynamic offset in amap as well now, did you compile it and change it up more than once? Cause maybe you rewrote over old data... messing up the script compilation...

EDIT: I inserted your script, and it worked perfectly fine.
Wait... So why this now?
http://i.imgur.com/gSXBOA8.png
Reply With Quote
  #11   Link to this post, but load the entire thread.  
Old May 26th, 2015 (1:01 PM).
Anexenaumoon Anexenaumoon is offline
 
Join Date: May 2015
Gender: Male
Posts: 16
Quote:
Originally Posted by Rockoria View Post
Wait so...
instead of:
#org @1 = Hi\nMy Name is Diego.

Indent after the equal sign to make it:

#org @1
= Hi\nMy Name is Diego.

With messages, the raw text always goes after the equal sign on the next line! & Please don't post so many of the same picture lol
~Anex
Reply With Quote
  #12   Link to this post, but load the entire thread.  
Old May 26th, 2015 (1:08 PM).
Rockoria Rockoria is offline
 
Join Date: Jan 2015
Posts: 97
Quote:
Originally Posted by Anexenaumoon View Post
instead of:
#org @1 = Hi\nMy Name is Diego.

Indent after the equal sign to make it:

#org @1
= Hi\nMy Name is Diego.

With messages, the raw text always goes after the equal sign on the next line! & Please don't post so many of the same picture lol
~Anex
Woo! All is well, thanks for your help!
Reply With Quote
Reply

Quick Reply

Join the conversation!

Create an account to post a reply in this thread, participate in other discussions, and more!

Create a PokéCommunity Account
Ad Content

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 9:11 AM.