Jump to content

Brado

Members
  • Posts

    65
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by Brado

  1. "Without my permission" / "leeched codes" Once again you are using my name in order to get some attention (The same reason you wanted me to join your discord for a huge "Zen" comeback as "BradO" gtfo plz. (the same thing you do when you insulting people in here). Biggest attention whore ever registered in here. You're not a developer (you can't even hold back your self to not share something in order to get some attention), you're not an administrator ( You never were, deep down you know that and that's why you are looking for partnerships here and there ). Why don't you tell people the real reason of this share? I can also mention how you got access to that source and let everyone know what a fucked up piece of shit you are with your actions but I won't further expand. I hope I fed your attention hunger, sleep well tonight! When you get hungry again share the aepvp source cause I won't.
  2. Good luck mates!
  3. You have to take the meshes + textures for leggings Make a copy of Imperial's leggings line, then start replacing the meshes + textures with draconic's and so on. You will find this on Draconic's main part: Fighter.MFighter_m011_u Fighter.MFighter_m011_l *You will have to do it for all races/sex. _u stands for upper and _l for leggings. search for the _l meshes and textures and then make the replacements needed. For example: Imperial: Mesh: Fighter.MFighter_m009_l Texture: mfighter.mfighter_m009_t88_l Draconic: Mesh: Fighter.MFighter_m011_l Texture: MFighter.MFighter_m011_t89_l
  4. Smooth guide well done. Thanks!
  5. https://www86.zippyshare.com/v/k0JlRBvO/file.html
  6. https://github.com/L2Miko/L2FileEdit http://rootware.ru/l2-file-edit-v-2/
  7. Best auto farm out there ez.
  8. Helpful & reliable a really friend guy I would vouch for using him for making your server more beautiful and enjoyable with his custom mods.
  9. You got to unbind class-race. Just Hold the race like you hold the character's sex and then you can freely play with classes, in addition you will have to modify the CharacterSelection package,UserInfo,CharInfo. Pay attention to these: writeD(_player.getRace().ordinal()); writeD((_player.getClassIndex() == 0) ? _player.getClassId().getId() : _player.getBaseClass()); GL!
  10. Then you should go for l2scripts where you can pay a shitload of money. After some days of usage you can decide to pay 1/10 of the money you paid for scripts to mobius. Since when price defies quality?
  11. @Mobius https://l2jmobius.org/
  12. Depends on the way you handle cases
  13. Check the group I posted about above! People with huge locked balances make moves with lawyers, ofc that depends on the balance you got locked. The fact is that their support must be wack lately. All you can do, is keep trying to reach them. Wish you luck !
  14. Obviously paypal "flagged" your account due to several unique "friendly" transactions, back in 2014 when had such issues a direct call to their offices located in UK had me explaining what method I used to receive money even gave them my website too (a Lineage 2 website) and till now they haven't disturb me again. Although moving to Viva seems the most safe option. Ofc because they don't get a fee when there's no currency conversion.
  15. Business-Individual really doesn't matter. Check out this group on fb : eCom Mastermind (Gabriel St-Germain) You will find tons of paypal cases.
  16. Sit back, earn, relax!
  17. I guess that it's not something new, eCommerce abusers forced PayPal to ban suspected accounts. This only applies to "new" accounts. If your account is old and trusted you got nothing to be worried about.
  18. I was reading their policy updates, not a single mention to Lineage at all, you got a link or smth?
  19. /* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * You should have received a copy of the GNU General Public License along with * this program. If not, see <http://www.gnu.org/licenses/>. */ package net.sf.l2j.gameserver.model.zone.type; import net.sf.l2j.gameserver.model.actor.L2Character; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.model.zone.L2ZoneType; public class L2PrimevalZone extends L2ZoneType { public L2PrimevalZone(final int id) { super(id); } @Override protected void onEnter(final L2Character character) { if (character instanceof L2PcInstance) { if (character.getInstanceId() == 0) { character.setInsideZone(L2Character.ZONE_PRIMEVAL, true); L2PcInstance player = character.getActingPlayer(); if (!player.isInPI()) { player.sendMessage("You have entered Primeval Isle"); player.setIsInPI(true); player.updatePvPFlag(1); player.sendMessage("PvP Flag status updated"); } } } } @Override protected void onExit(final L2Character character) { if (character instanceof L2PcInstance && character.getActingPlayer().isInPI()) { character.getActingPlayer().broadcastUserInfo(); character.getActingPlayer().setIsInPI(false); character.getActingPlayer().stopPvPFlag(); character.getActingPlayer().sendMessage("You have left Primeval Isle"); } character.setInsideZone(L2Character.ZONE_PRIMEVAL, false); } @Override public void onDieInside(final L2Character character) {} @Override public void onReviveInside(final L2Character character) {} }
  20. Probably an interface issue (protection).
  21. up
  22. For further updates: http://travaux.ovh.net/?do=details&id=49484
×
×
  • 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