My Source (v16)

you don't have to make the new agro system in order to make them attack. you can just open propMover.txt (preferably in microsoft excel) and change the dwAI on all the desert mobs to AII_MONSTER. Their names all start with MI_RY (except for one, which is right above them).

thanks ive change it all to AII_MONSTER and it works...

have any idea in change job quest? when i reached lvl 15, there are no npc that i can change to any job
 
Can anyone post a list of bugs they found? Thanks in advance.

There is two small bugs on the OnJoin function, another with crossbows (that I haven't added since the baruna one is a IK3_BOW), another on one of the AI's, another in the DST_IGNORE_PVP_DMG, another on worldfile.

I guess that it's all.

AH, there is a commented exploit on the OnChat function.
 
Last edited:
It'd be helpful if you explained actually what the bugs did so we could have some notion of how to fix them.
Saying "There's a bug in OnJoin and worldfile." doesn't help much.
Thanks.

OnJoin Bug

if ( pUser->GetJob() >= 24 && pUser->GetJob() <= 32)
(ALL MASTER JOBS WILL CHANGE TO LEGEND JOBS WHEN LOGGING IN)

change it to

if ( pUser->GetJob() >= 24 && pUser->GetJob() <= 31)
Reason: 32 is defined in JOB_LORD_TEMPLER and JOB_MASTER

so everytime you logging in, KNIGHT will change automatic to TEMPLAR
and the error is... TEMPLAR will change automatic to TEMPLAR (redundant) that will cause to error/bug
 
Last edited:
Back