Teleport to Juno
#12

It was actually not subzone 0 that it brought me to, it was subzone 6. And shane was right, it had something to do with the new tutorial. This code is active in Server.cpp even when JUNO_RENEWAL_MESSAGEBOX is disabled:

if( d->m_pChar->m_etcEvent & ETC_EVENT_JUNO_RENEWAL_QUESTCOMPLETE && !bCashZoneMove )
{
extra = 6; // ��������
if(d->m_pChar->m_questList.FindQuest(386, QUEST_STATE_DONE))
{
d->m_pChar->m_etcEvent &= ~ETC_EVENT_JUNO_RENEWAL_QUESTCOMPLETE;
extra = 0;
}
d->m_pChar->m_pos.m_x = GetRandom(d->m_pChar->m_pZone->m_zonePos[extra][1], d->m_pChar->m_pZone->m_zonePos[extra][3]) / 2.0f;
d->m_pChar->m_pos.m_z = GetRandom(d->m_pChar->m_pZone->m_zonePos[extra][2], d->m_pChar->m_pZone->m_zonePos[extra][4]) / 2.0f;
}
else
extra = 0;

Change it to 

#ifdef JUNO_RENEWAL_MESSAGEBOX
if( d->m_pChar->m_etcEvent & ETC_EVENT_JUNO_RENEWAL_QUESTCOMPLETE && !bCashZoneMove )
{
extra = 6; // ��������
if(d->m_pChar->m_questList.FindQuest(386, QUEST_STATE_DONE))
{
d->m_pChar->m_etcEvent &= ~ETC_EVENT_JUNO_RENEWAL_QUESTCOMPLETE;
extra = 0;
}
d->m_pChar->m_pos.m_x = GetRandom(d->m_pChar->m_pZone->m_zonePos[extra][1], d->m_pChar->m_pZone->m_zonePos[extra][3]) / 2.0f;
d->m_pChar->m_pos.m_z = GetRandom(d->m_pChar->m_pZone->m_zonePos[extra][2], d->m_pChar->m_pZone->m_zonePos[extra][4]) / 2.0f;
}
else
#endif
extra = 0;

and you should be good.

I should have found that earlier, thank's everyone for helping! ?



P. S. This is an issue on june files as well as nov files as far as I can see, for everyone that does not use the EP3/4 tutorial quests.



Messages In This Thread
[No subject] - by Desarija - 04-27-2022, 09:38 PM
[No subject] - by shane - 04-28-2022, 08:08 AM
[No subject] - by Scura - 04-28-2022, 08:25 AM
[No subject] - by Desarija - 04-28-2022, 08:37 AM
[No subject] - by Lythenica - 04-28-2022, 04:37 PM
[No subject] - by Desarija - 04-28-2022, 04:52 PM
[No subject] - by Lythenica - 04-28-2022, 05:35 PM
[No subject] - by Desarija - 04-28-2022, 05:42 PM
[No subject] - by Scura - 04-29-2022, 08:26 AM
[No subject] - by Veni - 04-29-2022, 09:00 AM
[No subject] - by Desarija - 04-29-2022, 09:38 AM
[No subject] - by Desarija - 04-29-2022, 10:34 AM
[No subject] - by Scura - 04-29-2022, 10:46 AM
[No subject] - by Desarija - 04-29-2022, 11:13 AM
[No subject] - by nicolasg - 04-29-2022, 01:00 PM
[No subject] - by Lythenica - 04-29-2022, 01:11 PM
[No subject] - by nicolasg - 04-29-2022, 01:48 PM
[No subject] - by Desarija - 04-29-2022, 01:53 PM
[No subject] - by Lythenica - 04-29-2022, 02:35 PM
[No subject] - by Scura - 04-29-2022, 06:23 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)