Re: [Mini-release]Pvp in whole channel
thx for the release ..
i got some idea..
can u use that as for the zakum to summon in certain channel too?
is that possible?
Re: [Mini-release]Pvp in whole channel
Ok...I'll work on it after my dinner.
Re: [Mini-release]Pvp in whole channel
just what i was lookin for ^^ ty btw pm me i want to tell u something
Re: [Mini-release]Pvp in whole channel
Re: [Release]Pvp in whole channel
REPLACETHISWITHTHECHANNELYOUWANT.
so do i put like Channel 4 or Scania-4 or just 4?O_O
nice find : )
and i cant find it on airflow's post : /
~dXm
Re: [Mini-release]Pvp in whole channel
Quote:
Originally Posted by
airflow0
I already released this.
Wow your releasing alot of stuff. thanks ;)
Re: [Release]Pvp in whole channel
Quote:
Go to net.sf.odinms.net.channel.handler.abstractdamageha ndler.java
uh i forget to mention something the file name is "Abstractdealdamagehandler.java"
Re: [Mini-release]Pvp in whole channel
Quote:
Originally Posted by
airflow0
I already released this.
Really? I counldn't find it in your original post. Then nevermind.
Re: [Mini-release]Pvp in whole channel
Quote:
Originally Posted by
oknoproblem
Really? I counldn't find it in your original post. Then nevermind.
Hey , is it possible for u to make zakum to 1 channel ? O.o
Re: [Release]Pvp in whole channel
Oh ya...Haiz...I live in singapore and it is late night now...
Re: [Release]Pvp in whole channel
holy crap so your working then you got some stars thrown at you lol
Re: [Release]Pvp in whole channel
Awesome another PVP RELEASE WOOTTTTTTTTTTTT I love u guyz ;D
Re: [Mini-release]Pvp in whole channel
Quote:
Originally Posted by
airflow0
I already released this.
airflow0 DID release this in his PVP odin base post. That's how i'm using it already. But thanks for putting it in a seperate post so others can find it easier.
Re: [Release]Pvp in whole channel
This was released last week.
Re: [Release]Pvp in whole channel
I see guys...But I still cannot find it...
Re: [Release]Pvp in whole channel
REPLACETHISWITHTHECHANNELYOUWANT. so do i put like Channel 1 or Scania-1 or just 1?
Re: [Release]Pvp in whole channel
Quote:
Originally Posted by
iRepack
REPLACETHISWITHTHECHANNELYOUWANT. so do i put like Channel 1 or Scania-1 or just 1?
you put just 1
Re: [Release]Pvp in whole channel
You should add something to not include a map, meaning i want the free market not to have PVP but i want every other map to.
Re: [Release]Pvp in whole channel
is there a way to make a map pvp for all the other channels but have one of those channels entirely pvp too?
Re: [Release]Pvp in whole channel
Quote:
Originally Posted by
davidxjaii
is there a way to make a map pvp for all the other channels but have one of those channels entirely pvp too?
Do
Code:
if (attack.skill != 2301002 && attack.skill != 4201004 && attack.skill != 1111008 && (player.getClient().getChannel() == CHANNEL || player.getMapId() == MAP)) {//Makes pvp
Replace channel with channel and map with mapid.
Quote:
Originally Posted by kadspwn
You should add something to not include a map, meaning i want the free market not to have PVP but i want every other map to.
Do
Code:
if (attack.skill != 2301002 && attack.skill != 4201004 && attack.skill != 1111008 && player.getClient().getChannel() == CHANNEL && player.getMapId() != MAP) {//Makes pvp
Replace channel with channel and map with mapid.
Re: [Release]Pvp in whole channel
This is the way I did it :D
replace
Code:
private int PVP_MAP = mapid;
with
Code:
private int PVP_CHANNEL = 1; // put the channel you want here
then find
Code:
if (attack.skill != 2301002 && attack.skill != 4201004 && attack.skill != 1111008 && player.getMapId() == PVP_MAP){
and replace it with this
Code:
if (attack.skill != 2301002 && attack.skill != 4201004 && attack.skill != 1111008 && player.getClient().getChannel() == PVP_CHANNEL){