~Sens Posted February 24, 2013 Posted February 24, 2013 [ENG]Hi guys, I would like someone to help me with the Event's of L2jFrozen. I want when one player gets 1 kill in the event's gives him and pvp. If anyone can help me to do edit, replay here or better yet let's make me add in skype (funkerman16) Thanks !
0 Tryskell Posted February 24, 2013 Posted February 24, 2013 Create a new script, put addKillId with the good npcId template, and in onKill section, put whatever you want (in your case, 2 lines : player.giveItems() and player.setPvpKills(player.getPvPkills +1)). And if L2JFrozen uses a particular system for events, it's probably as easiest as I said.
0 ~Sens Posted February 25, 2013 Author Posted February 25, 2013 Create a new script, put addKillId with the good npcId template, and in onKill section, put whatever you want (in your case, 2 lines : player.giveItems() and player.setPvpKills(player.getPvPkills +1)). And if L2JFrozen uses a particular system for events, it's probably as easiest as I said. I have create that in L2PcInstance.java but does not work :/ any idea someone ? if ((_inEventCTF && CTF.is_started()) || (_inEventTvT && TvT.is_started()) || (_inEventVIP && VIP._started) || (_inEventDM && DM.is_started())) { increasePvpKills(); return; }
0 ^Wyatt Posted February 25, 2013 Posted February 25, 2013 And with... if ((_inEventCTF && CTF.is_started()) || (_inEventTvT && TvT.is_started()) || (_inEventVIP && VIP._started) || (_inEventDM && DM.is_started())) { setPvpKills(getPvpKills()+1); return; } ?
0 ~Sens Posted February 25, 2013 Author Posted February 25, 2013 And with... if ((_inEventCTF && CTF.is_started()) || (_inEventTvT && TvT.is_started()) || (_inEventVIP && VIP._started) || (_inEventDM && DM.is_started())) { setPvpKills(getPvpKills()+1); return; } ? Thanks dude that work perfect :) Some mod lock that topic!!!
Question
~Sens
[ENG]Hi guys, I would like someone to help me with the Event's of L2jFrozen.
I want when one player gets 1 kill in the event's gives him and pvp.
If anyone can help me to do edit, replay here or better yet let's make me add in skype (funkerman16)
Thanks !
4 answers to this question
Recommended Posts