Jump to content

^Wyatt

Members
  • Posts

    1,418
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by ^Wyatt

  1. Moved.
  2. That's not even possible. If you are trying to connect with the same PC of the server is 127.0.0.1, for your friends is the borisfun.no-ip.org, ipconfig too borisfun.no-ip.org. No more secrets.
  3. Bro... your l2.ini -> 127.0.0.1, your friends l2.ini -> borisfun.no-ip.org Got it?
  4. If you're trying to log-in from the same PC where the server is being executed, your l2.ini ServerAddr must be 127.0.0.1
  5. Locked. Edit: Unlocked, aurora will create another one, :happyforever: -onfire- :happyforever:
  6. I guess that testing it, you could get the answer faster, than waiting for a reply here.
  7. Bro... don't mess with it if u have no clue about how php works... And this section is about java, not php, so...
  8. As I said to you, being in 1 or 2 databases is not a problem, as long as your system can connect to 1 database, can connecto to the other too :forever alone like a boss:
  9. Ofc is better to have 2 separated databases. And what's the problem on having 2? You can access both via php or whatever that system uses. I would find another vote reward, without php connections to database :)
  10. I don't think so, m8. Btw u are in a java help section and u ask for a non-java way? :rage: Maybe u could try to go to data/zones/zone.xml (if that's your IL source...) and try to change all spawn x='' y='' z='' with Giran coords... but I don't recommend you to do that... :rage:
  11. Caring of karma when IPB is incoming and karma will be erased, why? Not fun drama about karma, change the thematic at least :sadface:
  12. You could use the SEARCH button before posting things already answered, http://maxcheaters.com/forum/index.php?topic=283284.0 gameserver/network/clientpackets/RequestRestartPoint.java After Castle check, probably u haven't it equal. Castle castle = CastleManager.getInstance().getCastle(activeChar.getX(), activeChar.getY(), activeChar.getZ()); if ((castle != null) && castle.getSiege().getIsInProgress()) { if ((activeChar.getClan() != null) && castle.getSiege().checkIsAttacker(activeChar.getClan())) { // Schedule respawn delay for attacker ThreadPoolManager.getInstance().scheduleGeneral(new DeathTask(activeChar), castle.getSiege().getAttackerRespawnDelay()); if (castle.getSiege().getAttackerRespawnDelay() > 0) { activeChar.sendMessage("You will be re-spawned in " + (castle.getSiege().getAttackerRespawnDelay() / 1000) + " seconds"); } return; } } just add: activeChar.teleToLocation(x,y,z; If he wants to teleport when the user press "To Village" button is from requestrestartpoint :troll:
  13. I already asked him that questions :rage: The first wasn't answered and the second was that he didn't change anything :poker face:
  14. No, I can't. Sorry, I don't know l2jserver current pack status and even less freya l2jserver current pack status.
  15. Any of them. That's about the transfer dmg skill from summons.
  16. haha ye weird think :rage:, np, I guess it can be locked then.
  17. And do you have this one? /** * Performs an attack to the owner's target. */ public void doAttack() { if (getOwner() != null) { final L2Object target = getOwner().getTarget(); if (target != null) { setTarget(target); getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, target); } } } If yes, you could try with (not the best option but could work): /** * Performs an attack to the owner's target. */ public void doAttack() { if (getOwner() != null) { final L2Object target = getOwner().getTarget(); if (target != null) { if(target instanceof L2Npc /* or u can try with target instanceof L2PcInstance too, if u want NPC attackables */ && isInsidePeaceZone(target) { return; } setTarget(target); getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, target); } } }
  18. -beep-, I'm just sleepy as hell. More than probably the 2 methods I told you to post, don't matter at all. We need to check the canAttack() from L2Summon, if you have that file in that pack. :rage: :rage: :rage:
  19. Soz, post me the onForcedAttack() method too, if u can :P
  20. Locked.
  21. Which pack are u using? Could u post your doAttack() method from L2Character?
  22. Core support means that is not coded, that function of the skill. So, you need to code it, and no, is not just adding a "simple line on formulas", if you add a "simple line on formulas" you probably fuck it.
  23. Removing AI's, zones, GrandBosses and GrandBossTeleporter Quest. I guess there are so many posts with this same problem, try to find one, maybe it helps you.
  24. U should ask them, then.
  25. L2jReality...? First time I hear this name... so you didn't touch anything? Is a paid pack? If yes, go to get support from them. If not... I guess what GsL said is too obvious... that you're in lvl range... and the mobs have exp... Did u check all configs to make sure there isn't a crappy one that blocks the exp? Or something like .expon .expoff...? And did u try to put exp for example x5 or x20 to make sure isn't related with that? It shouldn't but... all tries are good.
×
×
  • 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