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

Duplicate [Indev 0.46.1] radioscientist.dat Script Typo

J

jianmingyong

Guest
Pokemon\Scripts\pewter\radioscientist.dat script has a bug although it does not crash the game but it skip the countdown making things easy for me :p

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(signalguy1)>=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
@register.registertime(findingsignal,10,minuets) => It suppose to be @register.registertime(findingsignal,10,minutes)
 

Fanta

Content Developer
P3D Developer
Global Moderator
Pokemon\Scripts\pewter\radioscientist.dat script has a bug although it does not crash the game but it skip the countdown making things easy for me :p

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(signalguy1)>=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
@register.registertime(findingsignal,10,minuets) => It suppose to be @register.registertime(findingsignal,10,minutes)
i think this supposed to be fixed in next version.

http://pokemon3d.net/forum/threads/7038/
 
J

jianmingyong

Guest
Oh... that thread was few page behind. I didn't saw it :p
 
Top