Jump to content

^Wyatt

Members
  • Posts

    1,418
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by ^Wyatt

  1. Ofc it's true, at least for me. 2 customers tried to refund the money and paypal opened an investigation, I gave them the screenshots of skype conversations, and money came back ;) So, if you have nothing to lose, just give them the screenshots ;)
  2. You should post in the correct section, is not that hard :rage: Moved.
  3. Whenever paypal opens an investigation just provide them some screenshots of your skype conv with the guy that sent u the money, and you'll get the money back. 2 guys tried the same with me some time ago, just post proofs to paypal and you always win.
  4. Moving it to Lineage II General help section, coz has nothing to do with java.
  5. Photoshop > Image > Image Size and you can set your new dimensions there :?
  6. O.o the topic says V1.3 and is a re-share, ffs didn't they fix that yet? :rage:
  7. So what do you want is to transform a big image to a small image...? With border...? xd If not, I don't get what are u asking for...
  8. What about this one http://www.maxcheaters.com/topic/22187-share-rin4as-buffer-v13/?hl=scheme
  9. http://www.mediafire.com/download/57b5405ge7p5iyp/system+hi5.rar
  10. You should explain it better and/or post an image. I moved your post to Eng section coz you typed in english, if u want GR help create topics typing in GR....
  11. That was because in your first post you didn't provide images or a good description of your problem, so people couldn't help you. I guess it can be locked, if not pm me to unlock.
  12. The problem is that your PS base before opening the After Effects is pretty bad. If you get a good PS base then your effect result will look way better ;) Ofc
  13. Then that's why you keep improving your PS skills, I see... P.S: Feel the irony
  14. Now I see his image... oh god :happyforever:
  15. Why do you ask the same question that YOU already asked here? O.o http://www.maxcheaters.com/topic/169620-l2j-frozen-laste-rev/
  16. It's not about items that give HP, is about items that takes your XP far away :P As I said, Conversion items :> And no... updating your HP every X time is not a "good way" x'D
  17. If I'm not wrong the only way to prefrenzy is with Conversion weapon so you could just go to .xml of Converstion type weapons and add isolyrestricted="true" and if you don't want angelic icon I think if u put npc no-attackables it blocks heal too, not sure u should test
  18. This thing is pissing me off xDDD i forgot null checks but... however.. if (absorbDamage > 0) { + if (this != null && (this instanceof L2PcInstance) && (target instanceof L2MonsterInstance) && (((L2PcInstance) this).getPvpFlag() > 0)) + { + absorbDamage = 0; + } setCurrentHp(getCurrentHp() + absorbDamage); } } It's just the wrong way, SkillDrain.java was the correct way :3
  19. I just checked the code where are you acting and I don't really get why u used "activeChar", wait a second I post you another try if (absorbDamage > 0) { + if ((this instanceof L2PcInstance) && (target instanceof L2MonsterInstance) && (((L2PcInstance) this).getPvpFlag() > 0)) + { + absorbDamage = 0; + } setCurrentHp(getCurrentHp() + absorbDamage); } } try it
  20. well it's not which I posted but should work too... messing up in L2Character is not the best option btw u could try to System.out.println(activeChar); System.out.println(activeChar.getTarget()); to see if some of them is null when that method is called
  21. No because like I posted, we are avoiding playerVsplayer and playerVsSummon well u could put if target instanceof L2MonsterInstance without the "!", yep do it if (absorbDamage > 0 && activeChar != null && activeChar.getPvpFlag() > 0 && activeChar.getTarget() != null && (activeChar.getTarget() instanceof L2MonsterInstance)) { absorbDamage = 0; }
  22. Even if your db is fully custom, it's way easier to reinstall and add your customs... With the list you showed it seems that any of that tables can generate that error...
×
×
  • Create New...