• ✨ 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

Fixed [Indev 0.46.1] Scientist Not Finding Radio Signal

Fanta

Content Developer
P3D Developer
Global Moderator
so.....I reached in the story where a scientist tells me where the team rocket's radio signal is coming from, but he tells me to come back in 10 min and that i should beat Brock first, i did all that and now he tells me to come to him if i need to know anything about electronic signals,

so my question is, is this how far the story has been implemented, or it is bugged, or maybe i am doing something wrong?

Thanks in advance.
 

Tornado9797

Content Developer
P3D Developer
Global Moderator
so.....I reached in the story where a scientist tells me where the team rocket's radio signal is coming from, but he tells me to come back in 10 min and that i should beat Brock first, i did all that and now he tells me to come to him if i need to know anything about electronic signals,

so my question is, is this how far the story has been implemented, or it is bugged, or maybe i am doing something wrong?

Thanks in advance.
I'm not sure if this has already been reported or not, but I'm also experiencing this.
 

OdinDude

Bug Catcher
I have this problem too. I just assumed that part wasn't fully implemented and decided to do other stuff.
 

Darkfire

Administrator
Administrator
P3D Developer
So I found the bug
I messed up the time based register(so it failed and just required the gym badge)
and once you had the badge I had also messed up the register check so it skipped past the correct dialogue and went straight to the re-talk dialogue
If anyone is interested here is the script with the surrounded by slashes
Code:
version=2
:if:<register.registered(signalguy1)>=False
    @text.show(Hello there!*I specialize in~electronic signals*I can tell you anything~you want to know about~things like radio signals.*You want to know where~a transmission is coming from?*Sure let me check!)
    @npc.turn(0,0)
    @level.wait(50)
    @npc.turn(0,2)
    @text.show(This broadcast seems~to be a message to members~of Team Rocket!*There was something about a~plan and a powerful [POKE]mon.*The rest of the message~was to garbled to understand.*I wasn't able to find the~exact location of the~transmission yet but I can~tell you it is coming from~outside of Kanto.*It will take me some time~to find the exact location.*If you come back in about~ten minuets I should be able~to tell you where it~is coming from.*If you need something to do~I hear the Gym Leader is strong,~maybe you should battle him.)
    @register.registertime(findingsignal,10,/minuets\)
    @register.register(signalguy1)
    :end
:else
    :if:<register.registered(findingsignal)>=True <or> <player.hasbadge(1)>=False
        @text.show(It will take me some time~to find the exact location.*If you come back in about~ten minuets I should be able~to tell you where it~is coming from.*If you need something to do~I hear the Gym Leader is strong,~maybe you should battle him.)
        :end
    :else
        :if:<register.registered(signalguy/2\)>=False
            @text.show(Ah you're back!*The radio signal is~coming from a warehouse~on Five Island.*Five Island is one of the~Sevii Islands, an archipelago~not far from Kanto.*Normally there is a boat~that runs between Vermilion City~and the islands but the sailors~have joined the relief effort~for Cinnabar Island and so the~ferry hasn't been running.*While you were gone I~contacted one of the ferrymen~and he agreed to take you~to Five Island.*I hope that Team Rocket~hasn't been causing much~trouble there.*Good luck!)
            @register.register(signalguy2)
            :end
        :else
            @text.show(Come see me again~if you need to know anything~else about electronic signals.)
            :end
        :endif
    :endif
:endif
:end
 

Fanta

Content Developer
P3D Developer
Global Moderator
so.....? fixed in next version?
also, how far does the story go after this?
 

Darkfire

Administrator
Administrator
P3D Developer
Yeah fixed for next version....
And the story didnt go any further.....
You can see my sprite on the vermilion docks which is where the scientist directs you
 

Fanta

Content Developer
P3D Developer
Global Moderator
oh my god!, are you "Connor" or the shinny charizard?
you totally spooked me when i saw you for the first time, when the guy said "soon" i thought to myself "we are gonna see an Assassin'sCreed/Pokemon Crossover.;)
 

Darkfire

Administrator
Administrator
P3D Developer
oh my god!, are you "Connor" or the shinny charizard?
you totally spooked me when i saw you for the first time, when the guy said "soon" i thought to myself "we are gonna see an Assassin'sCreed/Pokemon Crossover.;)
I am "Connor" the Shiny Charizard is my Pokemon :p
Since I do most of the map/script making I usually put myself at the end of the update to tell you what is coming next update(also we kept getting "I can't go to <insert uniplemented place here>" so that was my way to show what wasnt ready yet.....)
 
Top