Page 1 of 1
[Question] Non Pvp Server??
Posted: Fri Jul 30, 2010 6:05 am
by idered
Hello, i'm using the L2jserver version 4405 and i just wanna know if it's there a way to make a Non-PVP Server with this Server Version??? thx for your help
Re: [Question] Non Pvp Server??
Posted: Fri Jul 30, 2010 6:09 am
by LasTravel
What you mean? :S
Re: [Question] Non Pvp Server??
Posted: Fri Jul 30, 2010 6:20 am
by idered
LasTravel wrote:What you mean? :S
i mean if is there a config to make a Non Pvp server, a server where the ppl cant figh vs other players, or something to make the Whole Lineage II World Peaciful zone
Re: [Question] Non Pvp Server??
Posted: Fri Jul 30, 2010 6:29 am
by LasTravel
Not exist any configf for do this.... But you can make.
Re: [Question] Non Pvp Server??
Posted: Fri Jul 30, 2010 6:43 am
by idered
LasTravel wrote:Not exist any configf for do this.... But you can make.
do u know how?? please help me

Re: [Question] Non Pvp Server??
Posted: Sat Jul 31, 2010 5:27 am
by LasTravel
You can do it on L2PcInstance, you want help or some one for do it for you?
Re: [Question] Non Pvp Server??
Posted: Sat Jul 31, 2010 3:57 pm
by vulstar
the easiest way, would be to make a gigantic peace zone over the whole world, although it doesnt sound right to do it that way somehow.
And raids/mobs could be acting wierd aswel.
Re: [Question] Non Pvp Server??
Posted: Sat Jul 31, 2010 5:45 pm
by jurchiks
No, the easiest way would be to change the default allowed actions in all zones that are not pvp zones... Smth like
Code: Select all
public static void onActionAttack(blabla)
{
if (player.getTarget() instanceof L2PcInstance)
{
player.sendPacket(ActionFailed.STATIC_PACKET);
return;
}
}
and that's it.
Of course, i would add a config for it, like:
if (Config.PEACE_EVERYWHERE && player.getTarget() instanceof L2PcInstance)