• ✨ 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] Gentleman Alfred's Swapped Calls

Tornado9797

Content Developer
P3D Developer
Global Moderator
He keeps calling me for a battle in the Glitter lighthouse but he wont battle me.

On another related note, he's supposed to only call me for a rematch every Tuesday only (according to HG/SS), yet he keeps calling all the time.
This trainer's rematch and normal call are very similar I believe, and could easily be misunderstood (like with Youngster Joey: his normal call claims that we should battle again sometime soon, but that's not his rematch call).

Try calling him again on a different day (rematch and not) and see how his dialogue is different.
 

Fanta

Content Developer
P3D Developer
Global Moderator
i did try to call him on other days....same dialogue, however, i know the difference between a trainer's rematch call and normal call, when the trainer adds his location in the call, that call would be a rematch call, and it's working for all the trainers i have tried so far except him.
 

Tornado9797

Content Developer
P3D Developer
Global Moderator
i did try to call him on other days....same dialogue, however, i know the difference between a trainer's rematch call and normal call, when the trainer adds his location in the call, that call would be a rematch call, and it's working for all the trainers i have tried so far except him.
Hmm, I may need to check some dat files later to validate this.
 

Fanta

Content Developer
P3D Developer
Global Moderator
there are issues with his .dat file that explain the same rematch/normal dialogue.

here's the file location
Pokemon 3D\Pokemon\Scripts\phone\021.dat

turned out his dialogues are mixed up in his dat file,
and he will only fight me if i call him after he calls me (probably a save/reload related issue).
 
Last edited:

Tornado9797

Content Developer
P3D Developer
Global Moderator
there are issues with his .dat file that explain the same rematch/normal dialogue.

here's the file location
Pokemon 3D\Pokemon\Scripts\phone\021.dat

turned out his dialogues are mixed up in his dat file,
and he will only fight me if i call him after he calls me (probably a save/reload related issue).
I knew there was some sort of issue with his dialogue...
 

Dizzee

Starting Trainer
This happened to me, same exact call. Can't provide screen caps, but same bug here.
 

Fanta

Content Developer
P3D Developer
Global Moderator
well...if you want a more solid confirmation.....here it is:
*see that last (else) input*
Code:
version=2

:if:<phone.callflag>=calling
:then
@Text.Show([POKE]gear:~Calling..............)
:else
@Text.Show([POKE]gear: Gentleman Alfred~Receiving call.......)
:endif

:if:<register.registered(phone_reg_021)>=true
:then

:if:<player.gender>=1
:then
@Text.Show(Why, hello~MR. <player.name>.*How are you doing?*I was wondering~if you would be~so kind as to~grace me with~a battle?*I will be~waiting in the~GLITTER LIGHTHOUSE.)
:else
@Text.Show(Why, hello~MS. <player.name>.*How are you doing?*I was wondering~if you would be~so kind as to~grace me with~a battle?*I will be~waiting in the~GLITTER LIGHTHOUSE.)
:endif

:else

:if:<environment.dayinformation>=tuesday,evening <and> <register.registered(phone_reg_021_time)>=false
:then

:if:<player.gender>=1
:then
@Text.Show(Why, hello~MR. <player.name>.*How are you doing?*I was wondering~if you would be~so kind as to~grace me with~a battle?*I will be~waiting in the~GLITTER LIGHTHOUSE.)
:else
@Text.Show(Why, hello~MS. <player.name>.*How are you doing?*I was wondering~if you would be~so kind as to~grace me with~a battle?*I will be~waiting in the~GLITTER LIGHTHOUSE.)
:endif

@Register.register(phone_reg_021)

:else

:if:<player.gender>=1
:then
@Text.Show(Why, hello~MR. <player.name>.*How are you doing?*It is quite nice~here in Olivine~right now.*How is it~where you are?*Talk to you again.)
:else
@Text.Show(Why, hello~MS. <player.name>.*How are you doing?*I was wondering~if you would be~so kind as to~grace me with~a battle?*I will be~waiting in the~GLITTER LIGHTHOUSE.)
:endif

:endif

:endif

:end
 

Fanta

Content Developer
P3D Developer
Global Moderator
i have it as female yea, i figured it was the problem before checking the dat file,as for the reason it's because at my level, my sprite should be a male cheerleader, but it's not, it's the same from the previous rank but with red color.
 
Top