03-11-2021, 09:50 PM
Hi!
I'm pretty new in the dev community of LCKB, BUT this community have helped me a lot, and i wanna share my little knowledge!
Today i wanna release the method for allow the NS to spawn in Juno!
Just go: GameServer -> DBProcess_SelectChar.cpp
if (!bValidZone)
{
// nZone = Juno (zone start)
nZone = ZONE_START;
// IF THE CHARACTER SELECTED IS A NS...
if(pChar->m_job == JOB_NIGHTSHADOW) //ns start eghea (Hira)
//SPAWN ZONE = EGHEA!
nZone = ZONE_EGEHA;
pZone = gserver->FindZone(nZone);
bValidZone = true;
}
And as you seen from my comments just need to comments the line about "eghea" like that:
if (!bValidZone)
{
// nZone = Juno (zone start)
nZone = ZONE_START;
/*if(pChar->m_job == JOB_NIGHTSHADOW) //ns start eghea (by Hira)
nZone = ZONE_EGEHA;*/
pZone = gserver->FindZone(nZone);
bValidZone = true;
}
Hope it is useful for someone!!

