The PokéCommunity Forums  

Go Back   The PokéCommunity Forums > Fan Games > Binary ROM Hacking
Reload this Page Script Need help in Hiding sprite permanently and Fadescreen + person ID location

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 November 16th, 2020 (3:46 AM). Edited November 16th, 2020 by MM980.
MM980's Avatar
MM980 MM980 is offline
"You said you have a dream...That dream...Make it come true ! Make your wonderful dream a reality, and it will become your truth ! If anyone can, it's you !"
 
Join Date: Nov 2020
Location: Kerala,India
Age: 16
Gender: Male
Nature: Sassy
Posts: 118
1. How to find person ID
2.How to use hide a sprote after talking permanently (I tried a lot but not working, the line just goes off from script)
3. Fadescreen. screen should fade black and come back(tried a lot(fadescreen 0x1 then 0x0,still...)

So, I want Mew to gift the player a Pokemon(i did) and then I want the screen to fade, then the screen should come back and Mew should not be there...
Please help me
Thank You
Reply With Quote
  #2   Link to this post, but load the entire thread.  
Old November 16th, 2020 (8:35 PM).
MM980's Avatar
MM980 MM980 is offline
"You said you have a dream...That dream...Make it come true ! Make your wonderful dream a reality, and it will become your truth ! If anyone can, it's you !"
 
Join Date: Nov 2020
Location: Kerala,India
Age: 16
Gender: Male
Nature: Sassy
Posts: 118
Hi, I tried a lot but the values are changing
Reply With Quote
  #3   Link to this post, but load the entire thread.  
Old November 16th, 2020 (9:00 PM).
FireFig's Avatar
FireFig FireFig is offline
Ignite
 
Join Date: Jun 2020
Age: 17
Gender: Male
Nature: Calm
Posts: 199
Quote:
Originally Posted by MM980 View Post
1. How to find person ID
2.How to use hide a sprote after talking permanently (I tried a lot but not working, the line just goes off from script)
3. Fadescreen. (tried a lot,still...)

So, I want Mew to gift the player a Pokemon(i did) and then I want the screen to fade, then the screen should come back and Mew should not be there...
Please help me
Thank You
1. You don't "find" person ID, you "set" person ID.
2 & 3. Both these things are solved here.
Spoiler:

#dynamic 0x720000

#org @start.
msgbox @talk 0x6 //after or before givepokemon depends on your dialogue.
fadescreen 0x1 //fades to black
hidesprite 0x800F //hides the sprite you talked to recently (LAST TALKED)
setflag 0x011 // This is the flag/person ID, use this in the person ID section on Amap.
fadescreen 0x0 //fades to normal.
release
end

#org @talk
= Hi!

Additionally, if you're using FR, check out this thread to learn which flags are safe to use and which aren't.

Hope it helped. If you have any doubts feel free to ask :)
Reply With Quote
  #4   Link to this post, but load the entire thread.  
Old November 17th, 2020 (12:11 AM).
MM980's Avatar
MM980 MM980 is offline
"You said you have a dream...That dream...Make it come true ! Make your wonderful dream a reality, and it will become your truth ! If anyone can, it's you !"
 
Join Date: Nov 2020
Location: Kerala,India
Age: 16
Gender: Male
Nature: Sassy
Posts: 118
Thank you very much 😍 I will do this evening after classes finish
Reply With Quote
  #5   Link to this post, but load the entire thread.  
Old November 17th, 2020 (10:58 PM).
MM980's Avatar
MM980 MM980 is offline
"You said you have a dream...That dream...Make it come true ! Make your wonderful dream a reality, and it will become your truth ! If anyone can, it's you !"
 
Join Date: Nov 2020
Location: Kerala,India
Age: 16
Gender: Male
Nature: Sassy
Posts: 118
Quote:
Originally Posted by Mob View Post
1. You don't "find" person ID, you "set" person ID.
2 & 3. Both these things are solved here.
Spoiler:

#dynamic 0x720000

#org @start.
msgbox @talk 0x6 //after or before givepokemon depends on your dialogue.
fadescreen 0x1 //fades to black
hidesprite 0x800F //hides the sprite you talked to recently (LAST TALKED)
setflag 0x011 // This is the flag/person ID, use this in the person ID section on Amap.
fadescreen 0x0 //fades to normal.
release
end

#org @talk
= Hi!

Additionally, if you're using FR, check out this thread to learn which flags are safe to use and which aren't.

Hope it helped. If you have any doubts feel free to ask :)
Hi, my fadesceen 0x0 gets vanished after i close XSE, even though I compiled and saved, what is the problem?
Should I change to any other script editor?
Reply With Quote
  #6   Link to this post, but load the entire thread.  
Old November 18th, 2020 (5:39 AM).
FireFig's Avatar
FireFig FireFig is offline
Ignite
 
Join Date: Jun 2020
Age: 17
Gender: Male
Nature: Calm
Posts: 199
It might be a flag problem so try using this..
Spoiler:

#dynamic 0x720000

#org @start.
lock
msgbox @talk 0x6 //after or before givepokemon depends on your dialogue.
fadescreen 0x1 //fades to black
hidesprite 0x800F //hides the sprite you talked to recently (LAST TALKED)
setflag 0x200 // This is the flag/person ID, use this in the person ID section on Amap.
fadescreen 0x0 //fades to normal.
release
end

#org @talk
= Hi!


... If that doesn't solve it then the issue might be:
1. I am really stoopid!
2. There is a bug in your xse so try using this sh*t :)
Reply With Quote
  #7   Link to this post, but load the entire thread.  
Old November 18th, 2020 (7:33 AM).
MM980's Avatar
MM980 MM980 is offline
"You said you have a dream...That dream...Make it come true ! Make your wonderful dream a reality, and it will become your truth ! If anyone can, it's you !"
 
Join Date: Nov 2020
Location: Kerala,India
Age: 16
Gender: Male
Nature: Sassy
Posts: 118
Quote:
Originally Posted by Mob View Post
It might be a flag problem so try using this..
Spoiler:

#dynamic 0x720000

#org @start.
lock
msgbox @talk 0x6 //after or before givepokemon depends on your dialogue.
fadescreen 0x1 //fades to black
hidesprite 0x800F //hides the sprite you talked to recently (LAST TALKED)
setflag 0x200 // This is the flag/person ID, use this in the person ID section on Amap.
fadescreen 0x0 //fades to normal.
release
end

#org @talk
= Hi!


... If that doesn't solve it then the issue might be:
1. I am really stoopid!
2. There is a bug in your xse so try using this sh*t :)
You are not stupid, you are helpful and this might be the problem of XSE, my problems are : 1.hidesprite LASTTALKED change to something like hidesprite ' 0 x random number' , 2. fadescreen 0x0 vanishes..
No probs, Thanks for everything...
I will try this XSE link
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:16 AM.