Jump to content

Tachi

Members
  • Posts

    174
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About Tachi

Contact Methods

  • Skype
    saulea_stefan

Profile Information

  • Current Mood
    Angry
  • Gender
    Male
  • Country
    Romania
  • Location
    Galati
  • Interests
    Just It

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Tachi's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. # Vote reward for Hopzone. AllowHopzoneVoteReward = True # Vote reward server link. HopzoneServerLink = http://l2.hopzone.net/lineage2/details/58781/Lineage2Dex'>http://l2.hopzone.net/lineage2/details/58781/Lineage2Dex # First page of servers list link. HopzoneFirstPageLink = http://l2.hopzone.net/lineage2/ # Votes for next reward needed. HopzoneVotesDifference = 3 # Rank needed for server to be on first page. HopzoneFirstPageRankNeeded = 15 # Minutes between rewards. # Eg. You put 5 it checks every 5 minutes for reward. HopzoneRewardCheckTime = 5 # Small reward(s). HopzoneSmallReward = 57,100000000; # Big reward(s). HopzoneBigReward = 3470,1; # Hopzone reward max dual boxes reward. # For example if you put 2 and someone has 3 boxes open 2 will be rewarded. HopzoneDuaboxesAllowed = 1 # Game server console report. # If set to true, game server console will get a report of # current vote count, votes needed for next reward and votes needed for first page. AllowHopzoneGameServerReport = True # Vote reward for Topzone. AllowTopzoneVoteReward = True # Vote reward server link. TopzoneServerLink = http://l2topzone.com/lineage/server-info/6296/l2toxiccom.html/ # First page of servers list link. TopzoneFirstPageLink = http://l2topzone.com/lineage2/server-list/top.html/ # Votes for next reward needed. TopzoneVotesDifference = 2 # Rank needed for server to be on first page. TopzoneFirstPageRankNeeded = 15 # Minutes between rewards. # Eg. You put 5 it checks every 5 minutes for reward. TopzoneRewardCheckTime = 5 # Small reward(s). TopzoneSmallReward = 57,100000000; # Big reward(s). TopzoneBigReward = 3470,1; # Hopzone reward max dual boxes reward. # For example if you put 2 and someone has 3 boxes open 2 will be rewarded. TopzoneDuaboxesAllowed = 1 # Game server console report. # If set to true, game server console will get a report of # current vote count, votes needed for next reward and votes needed for first page. AllowTopzoneGameServerReport = True fixed error was the link corect link is this http://l2topzone.com/tv.php?id=12402
  2. hello guys i got this error for topzone vote , who can help me :( http://postimg.org/image/xuw36dapj/
  3. check gs console to see where is the problem ! and i think you have some missing file on your pack
  4. for me working..but when i use command .pvpinfo or /pvpinfo don't show nothing but system is ok
  5. hello folks,i have a problem on acis ,when i make pvp,and 1 of target kill the other target ,the killer get karma,but they was toghether flaged ..so where is the problem :(?
  6. so i add another line here :D l2pcinstance // Otherwise, killer is considered as a PKer. else if (targetPlayer.getKarma() == 0 && targetPlayer.getPvpFlag() == 0) { if (getPvpFlag() == 0) updatePvPFlag(2); setTeam(2); } { // PK Points are increased only if you kill a player. if (target instanceof L2PcInstance) setPkKills(getPkKills() + 1); and this work http://postimg.org/image/l6yjars3x/ but after 5-10 second's cirlce going off without leave karma and do nothing http://postimg.org/image/9p6232orn/ can you suggest :D?
  7. i set 2 not 1 i know the code for red :) // Otherwise, killer is considered as a PKer. else if (targetPlayer.getKarma() == 0 && targetPlayer.getPvpFlag() == 0) { // PK Points are increased only if you kill a player. if (target instanceof L2PcInstance) setPkKills(getPkKills() + 1); if (getPvpFlag() == 0) { updatePvPFlag(2); setTeam(2); } like this ? public void setKarma(int karma) { setTeam(0); if (karma < 0) karma = 0; if (_karma > 0 && karma == 0) { sendPacket(new UserInfo(this)); broadcastRelationsChanges(); }
  8. don't work ..cuz i try this line :) http://postimg.org/image/6zdh6awql/
  9. hello guys i have a problem ..i have a simple mod like when you flag get pvp circle blue, but this is not a problem cuz this feature work fine . i want to add and pk circle ,like when you make karma get pk circle red, but this is a problem cuz i don't find the line where i can add the code : my pvp blue cricle code is this.. package net.sf.l2j.gameserver.model.actor.instance.L2Pcinstance; public void updatePvPStatus() { if (EventManager.getInstance().isRegistered(this) && EventManager.getInstance().isRunning()) return; if (isInsideZone(ZoneId.PVP)) return; PvpFlagTaskManager.getInstance().add(this, System.currentTimeMillis() + Config.PVP_NORMAL_TIME); + if (getPvpFlag() == 0) + { + updatePvPFlag(1); + setTeam(1); + } + } } public void updatePvPStatus(L2Character target) { final L2PcInstance player = target.getActingPlayer(); if (player == null) return; if (EventManager.getInstance().isRegistered(this) && EventManager.getInstance().isRunning()) return; if (isInDuel() && player.getDuelId() == getDuelId()) return; if ((!isInsideZone(ZoneId.PVP) || !target.isInsideZone(ZoneId.PVP)) && player.getKarma() == 0) { PvpFlagTaskManager.getInstance().add(this, System.currentTimeMillis() + ((checkIfPvP(player)) ? Config.PVP_PVP_TIME : Config.PVP_NORMAL_TIME)); + if (getPvpFlag() == 0) + { + updatePvPFlag(1); + setTeam(1); + } +} } package net.sf.l2j.gameserver.taskmanager.pvpflagtaskmanager.java public void run() { if (!_pvpFlagTask.isEmpty()) { Long current = System.currentTimeMillis(); synchronized (this) { for (L2PcInstance actor : _pvpFlagTask.keySet()) { + if (current > _pvpFlagTask.get(actor)) + { + actor.updatePvPFlag(0); + actor.setTeam(0); + _pvpFlagTask.remove(actor); + } i need to know where i can add the code for the pk cirlce
×
×
  • Create New...