Jump to content

@IcathiaLord

Premium Member
  • Posts

    197
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

@IcathiaLord last won the day on December 11 2021

@IcathiaLord had the most liked content!

7 Followers

About @IcathiaLord

Contact Methods

  • Telegram
    Disc: IcathiaLord#7404
  • Website URL
    http://.
  • Skype
    @IcathiaLord

Profile Information

  • Gender
    Male
  • Country
    Greece

Recent Profile Visitors

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

@IcathiaLord's Achievements

  1. Just to everyone knows, I started creating that files from 0 at 2020 in a project that I had back in time. Then after a year I decided to make a sale project which was based on the project I had, so I changed anything plus the problems after live servers, and obviously in time many problems got fixed by the reports of my clients. The files are not shared on l2jbrasil. Now, a guy that bought my project in 2022, decided to share my files and "ruin" my business since he is unskilled and incapable to run a server. So Firstly, a year plus passed since he bought them, that means missing 1+ year fixes on the files, in number it is more than 100 changes in source code and 60 changes in Datapack (https://ibb.co/album/xS5xpw). Secondly, that guy may have changed or even destroyed many things in the files he shared, so I would not reccomend using the files that this guy shared with you. I am active and support all my clients, the project as you can see in the photos got many fixes and updates since 2022 while I take care of them.
  2. Inventory.java find: // Can't equip item if you are in shop mod or hero item and you're not hero. if (((Player) getOwner()).isInStoreMode() || (item.isHeroItem() && !HeroManager.getInstance().isActiveHero(getOwnerId()))) return; replace with: // Can't equip item if you are in shop mod or hero item and you're not hero. if (((Player) getOwner()).isInStoreMode() || (!((Player) getOwner()).isHero() && item.isHeroItem())) return; Also find: // If the item is an hero item and inventory's owner is a player who isn't an hero, then set it to inventory. if (getOwner() instanceof Player && item.isHeroItem() && !HeroManager.getInstance().isActiveHero(getOwnerId())) item.setLocation(ItemLocation.INVENTORY); replace with: // If the item is an hero item and inventory's owner is a player who isn't an hero, then set it to inventory. if (getOwner() instanceof Player && !((Player) getOwner()).isHero() && item.isHeroItem()) item.setLocation(ItemLocation.INVENTORY);
  3. chathandlers/chatAll.java Replace: final CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text); With: final CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.isGM() ? "[ADMIN]:" + activeChar.getName() : activeChar.getName(), text);
  4. VillageMaster.java /* * Returns true if this PlayerClass is allowed for master */ public final boolean checkVillageMaster(PlayerClass pclass) { if (Config.ALT_GAME_SUBCLASS_EVERYWHERE) return true; return checkVillageMasterRace(pclass) && checkVillageMasterTeachType(pclass); } Config.java public static boolean ALT_GAME_SUBCLASS_EVERYWHERE; ALT_GAME_SUBCLASS_EVERYWHERE = players.getProperty("AltSubclassEverywhere", false); and add the config in players.properties AltSubclassEverywhere = True
  5. You using % = mod (modulo), that means number 10.000 divined with 10, will have a result of 1.000 and 0 remaining. Another example: 11 mod 4 = 3, because 11 divides by 4 (twice), with 3 remaining. You can take the 30% percentage by the following: int finalPrice = (int) (getVip() ? (price - price * 0.30) : price);
  6. Since its obviously for you too, dont try to play the smart boy. Actually i dont really care what you've seen, and has nothing to do with me. Because you don't know me(not even personally), you can't say any of that words. If i was a scammer or the pack can be found for free, then my customers should have reported me and i had to be banned. But guess, that's not happening, so you should just try to think why. Even if its a project that can be found for free, then i won't have customers to work with, right ? So, what's your job here, if you don't like something or you are not interesting, do not open that topic and do not spam shits. Let's laugh, "You are lucky". This forum has its own rules, you wouldn't have the permission to delete that topic even if you were in staff team. And obviously you don't deserve any staff position with this attitude. To sum up from my side too, It is a ready to go project, including everything a PvP server need to be runned, without problems(and if any problem appears, i am there to fix them), tested in live servers and also i am improving it from my clients reports(As you can see my main topic the pack is always updating). Also the Balance system(from live servers), saves many many time from people who will buy it. Of course they can, who you think you are to stop the people by doing something. If they created something and they think that will have success in sale, why not? Obviously i am talking about legit people and not for scammers.
  7. Obviously it's not your business what i am doing on my real life. You are wrong, you just posted like shit and without any actual point, while you don't even know who i am and what i am offering. I don't know where the opinion about unique stuff came from, but i didn't mentioned anywhere something like that. Also as i said since you don't know what i am offering, you can't have an opinion about how is the pack created and what codes include.
ร—
ร—
  • Create New...