• ✨ ARCHIVE MODE ✨
    The forum has now been set to read-only mode, no new posts, resources, replies etc will not be possible.
    We recommend you join our Discord server to get real-time response: Discord Invite Link

MissingNo Do exists in daycare.... scary glitch.

J

jianmingyong

Guest
By doing that,
• File validation will fail. ( Thats why I purposely left the console on the top right so it will show that all files are default and noting funny script is added in )
• Cannot play online game anymore.

So my is the default. I have to use phone :) Someone help me copy that file for me :p
 

leeloozete

Active Member
Trusted Support
By doing that,
• File validation will fail. ( Thats why I purposely left the console on the top right so it will show that all files are default and noting funny script is added in )
• Cannot play online game anymore.

So my is the default.
Just simply duplicate the file and bring it to a new place on your computer and upload it here
 

Fanta

Content Developer
P3D Developer
Global Moderator
View attachment 4854
I FOUND IT
MR DEFENDANT
HAVE A LOOK AT THIS
IN MY FILE OF THE OLD LADY SCRIPT, SHE TRIES TO SELL ME A LAVA COOKIE
BUT NOW HAVE A LOOK AT EXACTLY THE MOMENT 1:00 OF YOUR VIDEO
SHE SAYS "Glad you came! Your missingno is doing just fine"
ISNT THIS STRANGE?
PLEASE, I ASK YOU TO COPY THE FILE "oldLady" from pokemon/scripts/route34 AND COPY IT HERE
AND HERE IS MY FILE BTW

version=2
@Text.show(Hi there, sweetie~Do you want to buy~a lava cookie?)
@Options.show(Buy,See Ya!)
:when:Buy
@screen.Trade({7|-1|-1},True,True)
:when See Ya!
@Text.show(Are you sure?*Your [POKE]MON would~love them.)
:endwhen
:end
missing no is a replace to a pokemons name, the lavacookie script has nothing to do with it
 

Fanta

Content Developer
P3D Developer
Global Moderator
It has, the woman have no such script talking about the pokemon that are deposited in the daycare, she simply sell you cookies
NO, she tells you how well your pokemons are getting along!!


Code:
version=2

    :select:<daycare.countpokemon(0)>
    :when:0
        @text.show(I'm the Day-Care Lady.*We take care of the~precious [POKE]MON of~other trainers.*If you'd like us to~raise your [POKE]MON,~have a word with~my husband.)
    :when:1
        @text.show(Glad you came!~Your <daycare.pokemonname(0,0)> is~doing just fine!)
    :when:2
        :select:<daycare.canbreed(0)>
        :when:70
            @storage.set(string,breed_text,The two seem to get~along very well.)
        :when:50
            @storage.set(string,breed_text,The two seem to~get along.)
        :when:20
            @storage.set(string,breed_text,The two don't seem~to like each other.)
        :when:0
            @storage.set(string,breed_text,The two prefer to play~with other [POKE]MON than~each other.)
        :endwhen
        @text.show(Glad you came!*Your <daycare.pokemonname(0,0)> and~your <daycare.pokemonname(0,1)> are~doing just fine.*<storage.get(string,breed_text)>)
      
        :if:<daycare.canbreed(0)>=70 <and> <register.registered(daycare_lavacookies)>=false
        :then
            @text.show(Your [POKE]MON really like~each other.*I am pleased to see~this level of happyness.*Here, take these,~sweetie.)
            @item.give(7,10)
            @item.messagegive(7,10)
        :endif
      
        @storage.clear
    :endwhen

:end
are you like....playing P3D version 0.01???
 

The Omega Gengar

Content Developer
P3D Developer
Global Moderator
Code:
    :Select:<daycare.countpokemon(0)>
    :when:0
        @text.show(I'm the Day-Care Lady.*We take care of the~precious [POKE]MON of~other trainers.*If you'd like us to~raise your [POKE]MON,~have a word with~my husband.)
    :when:1
        @text.show(Glad you came!~Your <daycare.pokemonname(0,0)> is~doing just fine!)
    :when:2
    :Select:<daycare.canbreed(0)>
        :when:70
            @storage.set(string,breed_text,The two seem to get~along very well.)
        :when:50
            @storage.set(string,breed_text,The two seem to~get along.)
        :when:20
            @storage.set(string,breed_text,The two don't seem~to like each other.)
        :when:0
            @storage.set(string,breed_text,The two prefer to play~with other [POKE]MON than~each other.)
        :endwhen
        @text.show(Glad you came!*Your <daycare.pokemonname(0,0)> and~your <daycare.pokemonname(0,1)> are~doing just fine.*<storage.get(string,breed_text)>)
      
        :if:<daycare.canbreed(0)>=70 <and> <register.registered(daycare_lavacookies)>=false
        :then
            @text.show(Your [POKE]MON really like~each other.*I am pleased to see~this level of happyness.*Here, take these,~sweetie.)
            @item.give(7,10)
            @item.messagegive(7,10)
        :endif
      
        @storage.clear
    :endwhen


0 = No pokes at daycare, script runs:
Code:
@text.show(I'm the Day-Care Lady.*We take care of the~precious [POKE]MON of~other trainers.*If you'd like us to~raise your [POKE]MON,~have a word with~my husband.)
1= 1 poke only:
Code:
@text.show(Glad you came!~Your <daycare.pokemonname(0,0)> is~doing just fine!)
2= 2 pokes
Code:
    :Select:<daycare.canbreed(0)>
        :when:70
            @storage.set(string,breed_text,The two seem to get~along very well.)
        :when:50
            @storage.set(string,breed_text,The two seem to~get along.)
        :when:20
            @storage.set(string,breed_text,The two don't seem~to like each other.)
        :when:0
            @storage.set(string,breed_text,The two prefer to play~with other [POKE]MON than~each other.)
        :endwhen
        @text.show(Glad you came!*Your <daycare.pokemonname(0,0)> and~your <daycare.pokemonname(0,1)> are~doing just fine.*<storage.get(string,breed_text)>)
      
        :if:<daycare.canbreed(0)>=70 <and> <register.registered(daycare_lavacookies)>=false
        :then
            @text.show(Your [POKE]MON really like~each other.*I am pleased to see~this level of happyness.*Here, take these,~sweetie.)
            @item.give(7,10)
            @item.messagegive(7,10)
        :endif
 
J

jianmingyong

Guest
He had a hard time now.... :p thanks for the extra 50 P :) For tons of reply
 
Last edited by a moderator:

Darkfire

Administrator
Administrator
P3D Developer
so who has this glitch?
if you have this glitch something might be wrong with your save file for the daycare and I would like to check it
 

Fanta

Content Developer
P3D Developer
Global Moderator
so who has this glitch?
if you have this glitch something might be wrong with your save file for the daycare and I would like to check it
the glitch fixes itself as soon as you talk to the old man
 

leeloozete

Active Member
Trusted Support
the glitch fixes itself as soon as you talk to the old man
I talked to Darkfire, he said that missingno was a error handler, and that it was protecting you from a crash
So this had nothing to do with missingno, it was just a mere crash protection
Your save on the daycare might be corrupted tough, so watch out for that
GG.
 

Fanta

Content Developer
P3D Developer
Global Moderator
I talked to Darkfire, he said that missingno was a error handler, and that it was protecting you from a crash
So this had nothing to do with missingno, it was just a mere crash protection
Your save on the daycare might be corrupted tough, so watch out for that
GG.
so you really meant all what you said?? we already knew that when the thread was posted, we were not expecting to capture missingno in this game or anything, i thought all ur comments were jokes and for fun!
 

Darkfire

Administrator
Administrator
P3D Developer
okay so what happens is that after you take your pokemon back the game does "clean up" the save file properly
that is done by a script command that runs at the beginning of the old man's scripts
I will add that script to later parts of his scripts too so it doesnt happen later too
 

leeloozete

Active Member
Trusted Support
so you really meant all what you said?? we already knew that when the thread was posted, we were not expecting to capture missingno in this game or anything, i thought all ur comments were jokes and for fun!
Well... It was for both fun and explaining reasons and because I just finished phoenix wright and I HAD to object to something :p
 
J

jianmingyong

Guest
Well... It was for both fun and explaining reasons and because I just finished phoenix wright and I HAD to object to something :p
:D In the end fail to object something.
 
Last edited by a moderator:
Top