Jump to content
  • 0

[Help] PvP reward


Question

Posted

i want to add pvp drops on my server (i know how) but the problem is farming them,i thought to make a pvp zone and only there if player kills another player (pvp) to get pvp reward i want to make my pvp zone in gludin... guide me how to do it it :)

7 answers to this question

Recommended Posts

  • 0
Posted

For example.. you can create new boolean in L2PcInstance.

 

private boolean _ready = false;

 

And this method:

 

    public boolean isReady()

    {

    return _ready;

    }

 

and:

 

public void setReady()

{

_ready = true;

}

 

And now, create new zone, and you have to put something like this at onEnter void:

 

player.setReady();

 

And now.. create your code to reward players for pvp kills with check:

 

if(player.isReady)

//give reward

 

- Sample Idea.

 

 

  • 0
Posted

wow and this gonna reward player only if he takes pvp in gludin?

 

Yes, but you have to create this special Zone..for this town.

 

But its really simple, just fallow my 1st post.

  • 0
Posted

package java.eu.l2jcustom.model.zone;

import com.l2jserver.gameserver.datatables.MapRegionTable;
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.zone.L2ZoneType;
import com.l2jserver.gameserver.network.serverpackets.ExShowScreenMessage;

/**
* Custom PvP Zone
*/
public class CustomPvPZone extends L2ZoneType  {

public CustomPvPZone(int id) {
	super(id);
}

@Override
protected void onEnter(L2Character character) {
	L2PcInstance player = character.getActingPlayer();
	if(player == null)
		return;
	player.setReady();

}

@Override
protected void onExit(L2Character character) {
	L2PcInstance player = character.getActingPlayer();

	player.setNotReady();
}

@Override 
public void onDieInside(L2Character character) {}

@Override 
public void onReviveInside(L2Character character) {}
}

 

And you have to also add one more void to L2PcInstance:

 

  public void setNotReady()

  {

      _ready = false;

  }

  • 0
Posted

Testing it thanks :D

 

p.s you could make a topic about pvp kill reward on specific zone i searched about it and i dont think there is one....you would help many members i guarantee it :)

  • 0
Posted

Testing it thanks :D

 

p.s you could make a topic about pvp kill reward on specific zone i searched about it and i dont think there is one....you would help many members i guarantee it :)

 

actually i made a share for reward regarding to zone type

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • We've added 5% discounts for bulk purchases of Google accounts for orders of 300 or more, and 10% for orders of 500 or more. The discount is applied automatically when you place your order! The discount is indicated in the product title and description for each category.  
    • 🎄 CHRISTMAS EVENT 🎄   ‼️ Information and details: https://forum.l2harbor.com/threads/rozhdestvenskie-xlopoty-christmas-chores.9430/post-171464
    • METATG.ORG Direct Telegram Service Provider A bonus of +7% on every order! *We add 7% more followers than your ordered amount to proactively cover potential drops and guarantee you an honest result." Telegram Followers - Price per 1000 SUBSCRIBERS Subscribers 3 days - $0.10 ~ 8 RUB Subscribers. Daily Completion: 200,000,000 Subscribers 7 days - $0.17 ~ 13.6 RUB Subscribers. Daily Completion: 200,000,000 Subscribers 14 days - $0.20 ~ 16 RUB Subscribers. Daily Completion: 200,000,000 Subscribers 30 days - $0.30 ~ 24 RUB Subscribers. Daily Completion: 200,000,000 Subscribers 60 days - $0.40 ~ 32 RUB Subscribers, 14-day guarantee. Daily Completion: 200,000,000 Subscribers 90 days (Super Fast) - $0.50 ~ 40 RUB Subscribers, 14-day guarantee. Daily Completion: 200,000,000 Subscribers 120 days (Super Fast) - $0.60 ~ 48 RUB Subscribers, 14-day guarantee. Daily Completion: 200,000,000 Subscribers Lifetime (Super Fast) - $0.70 ~ 56 RUB Lifetime Subscribers. 14-day guarantee. Daily Completion: 200,000,000 Telegram Services - Price per 1000 Post Views - $0.06 ~ 5 RUB Reactions - $0.08 ~ 6.5 RUB Bot Starts - $0.10 ~ 8 RUB Bot Starts with referrals - $0.15 ~ 12 RUB DISCOUNTS and CASHBACK for large volumes Direct Supplier. We work from our own accounts with our own software! High execution speed. Multiple payment methods. We work 24/7! Additional discounts are discussed for volumes starting from $1000 per day. SUPPORT 24/7 - TELEGRAM WEBSITE 24/7 - METATG.ORG
    • Added: a brand-new default dashboard template. You can now add multiple game/login server builds. Full support for running both PTS & L2J servers simultaneously, with switching between them. Payment systems: added OmegaPay and Pally (new PayPal-style API). Account history now stores everything: donations, items delivered to characters, referrals, transfers between game accounts, and coin transfers to another master account. Personal Promo Code System: you can create a promo code and assign it to a user or promoter. When donating, a player can enter this promo code to receive bonus coins, and the promo code owner also receives a bonus — all fully configurable in the admin panel.     Look demo site: demo
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock