Jump to content

Psyancy

Legendary Member
  • Posts

    1,560
  • Credits

  • Joined

  • Last visited

  • Days Won

    20
  • Feedback

    100%

Posts posted by Psyancy

  1. We've tried so many times to make maxcheaters something else more than just a Lineage 2 forum but tbh it never worked because it's known for Lineage 2 for ages now and there are tons of other established forums on the boards we tried to add and didn't worked. I believe keeping it for Lineage 2 only will be the best option here since it's an established Lineage 2 forum for so long.

  2. My Discord Server: https://discord.gg/rXFDuxvK7b

     

    Hello MaxCheaters users.

    I'm back doing actively designs!

     

    Services I can provide:

     

    817480957879648327.png?size=44 Discord Server Setup - Starting Price: 10€
    920127112927653958.png?size=44 Set up channels.
    920127112927653958.png?size=44 Set up roles.
    920127112927653958.png?size=44 Set up permissions.
    920127112927653958.png?size=44 Set up bots.
    920127112927653958.png?size=44 Set up emojis.
     

    920127253323595807.png?size=44 Discord Bot - Starting Price: 15€ (Lifetime)
    920127112927653958.png?size=44 Unique bot with your name.
    920127112927653958.png?size=44 Exp System with role level rewards to increase activity!
    920127112927653958.png?size=44 Giveaway system.
    920127112927653958.png?size=44 Moderation commands for ban/unban and clear messages.
    920127112927653958.png?size=44 AFK System.
    920127112927653958.png?size=44 Music System.
    920127112927653958.png?size=44 Suggestions system.
    920127112927653958.png?size=44 Tickets System.
    920127112927653958.png?size=44 Announcements System.
    920127112927653958.png?size=44 Custom Embeds.
    920127112927653958.png?size=44 Custom messages for boosts.
    920127112927653958.png?size=44 Moderation logs for message deletes and edits.
    920127112927653958.png?size=44 Custom Welcome and Leave messages.

     

    920127186202165258.png?size=96 You can check out my bot and its features on my Discord Server.

     

    How to contact me:

    • DM me here.
    • Discord: Psyancy#5850

     

    Payment Methods:

    • PayPal
    • Crypto
  3. Hello MaxCheaters.

    Since I've seen a lot of people looking for tools in topics that their links are dead I decided to make a topic with all the tools I've got so far.

     

    🔹Unreal Engine: Unreal Engine is a tool for texture creation.

    Download Link: https://mega.nz/file/2EN3zYrL#4TMN-t7B1LEdhJu8eT43eMA4PtfcLddi1sPRq_BeZP4

     

    🔹Encrypt/Decrypt Files: With these files you can encrypt or decrypt texture files.

    Usage: If you want to decrypt a file simple put the file in the folder where the tool is located and then open with a text editor the decript.bat

    D4KJBuZ.png

     

    And replace LineagePack_Emerland01.utx with your UTX name and then run the encript.bat file.

    For encryption do the same with the encript.bat change the DrenepiaWorld.utx to your UTX name and then run the encript.bat file.

     

    Download Link: https://mega.nz/file/2dF1XaQT#mqsAIjxTOozd2ihlYXEb5sWBeXs1FO_iSxitvo6ojwk

     

    🔹umodel: umodel is a tool that extracts all texture files from a UTX to .tga files. You can use this tool to either extract all textures and use some of them for your project or for example if you simply want to extract specific textures for example from L2Font-e and change the loading screen and login screen logos.

    Usage: Put the file into the folder where the tools is located, open with a text editor extract.bat file and replace the texture name with yours. For example if you want to extract Icons simply replace Interlude_wareffectstextures.utx with Icons.utx and then run extract.bat file.

    Then you can check all the textures for a quick view using Adobe Bridge if you have photoshop.

    hGC0NHY.png

     

    Download Link: https://mega.nz/file/qQsl2SrZ#yqHb8VuX_HKJHQDAsW7QoW4grQPi4sBMIJblJ62b3-g

     

     

    • Like 2
    • Thanks 2
    • Upvote 1
  4. 8 hours ago, kafkef12 said:

    Hello, can you share again all tools?

    I need old Splinter cell games for fonts. All font files is utx and i can't open and edit.

    UnrealEngine https://mega.nz/file/2EN3zYrL#4TMN-t7B1LEdhJu8eT43eMA4PtfcLddi1sPRq_BeZP4

    umodel for extract UTX in TGA: https://mega.nz/file/qQsl2SrZ#yqHb8VuX_HKJHQDAsW7QoW4grQPi4sBMIJblJ62b3-g

    And encrypt: https://mega.nz/file/2dF1XaQT#mqsAIjxTOozd2ihlYXEb5sWBeXs1FO_iSxitvo6ojwk (just edit encript.dat file with your utx name to encrypt it).

    • Like 1
  5. Just use the function from the npc shift and add it in your community board java.

    html.replace("%objid%", String.valueOf(target.getObjectId()));
    			html.replace("%class%", target.getClass().getSimpleName());
    			html.replace("%race%", ((L2Npc) target).getTemplate().getRace().toString());
    			html.replace("%id%", String.valueOf(((L2Npc) target).getTemplate().getId()));
    			html.replace("%lvl%", String.valueOf(((L2Npc) target).getTemplate().getLevel()));
    			html.replace("%name%", String.valueOf(((L2Npc) target).getTemplate().getName()));
    			html.replace("%tmplid%", String.valueOf(((L2Npc) target).getTemplate().getId()));
    			html.replace("%aggro%", String.valueOf((target instanceof L2Attackable) ? ((L2Attackable) target).getAggroRange() : 0));
    			html.replace("%hp%", String.valueOf((int) ((L2Character) target).getCurrentHp()));
    			html.replace("%hpmax%", String.valueOf(((L2Character) target).getMaxHp()));
    			html.replace("%mp%", String.valueOf((int) ((L2Character) target).getCurrentMp()));
    			html.replace("%mpmax%", String.valueOf(((L2Character) target).getMaxMp()));
    			
    			html.replace("%patk%", String.valueOf(((L2Character) target).getPAtk(null)));
    			html.replace("%matk%", String.valueOf(((L2Character) target).getMAtk(null, null)));
    			html.replace("%pdef%", String.valueOf(((L2Character) target).getPDef(null)));
    			html.replace("%mdef%", String.valueOf(((L2Character) target).getMDef(null, null)));
    			html.replace("%accu%", String.valueOf(((L2Character) target).getAccuracy()));
    			html.replace("%evas%", String.valueOf(((L2Character) target).getEvasionRate(null)));
    			html.replace("%crit%", String.valueOf(((L2Character) target).getCriticalHit(null, null)));
    			html.replace("%rspd%", String.valueOf((int) ((L2Character) target).getRunSpeed()));
    			html.replace("%aspd%", String.valueOf(((L2Character) target).getPAtkSpd()));
    			html.replace("%cspd%", String.valueOf(((L2Character) target).getMAtkSpd()));
    			html.replace("%atkType%", String.valueOf(((L2Character) target).getTemplate().getBaseAttackType()));
    			html.replace("%atkRng%", String.valueOf(((L2Character) target).getTemplate().getBaseAttackRange()));
    			html.replace("%str%", String.valueOf(((L2Character) target).getSTR()));
    			html.replace("%dex%", String.valueOf(((L2Character) target).getDEX()));
    			html.replace("%con%", String.valueOf(((L2Character) target).getCON()));
    			html.replace("%int%", String.valueOf(((L2Character) target).getINT()));
    			html.replace("%wit%", String.valueOf(((L2Character) target).getWIT()));
    			html.replace("%men%", String.valueOf(((L2Character) target).getMEN()));
    			html.replace("%loc%", String.valueOf(target.getX() + " " + target.getY() + " " + target.getZ()));
    			html.replace("%heading%", String.valueOf(((L2Character) target).getHeading()));
    			html.replace("%collision_radius%", String.valueOf(((L2Character) target).getTemplate().getfCollisionRadius()));
    			html.replace("%collision_height%", String.valueOf(((L2Character) target).getTemplate().getfCollisionHeight()));
    			html.replace("%dist%", String.valueOf((int) activeChar.calculateDistance(target, true, false)));
    			

     

    You can find the file in L2JSunrise\server\game\data\scripts\handlers\actionshifthandlers with the name L2NpcActionShift.java

  6. Hello MaxCheaters users.

    I'm back doing actively designs!

     

    9iiM191.png

     

    Services I can provide:

    • Server or Brand Logos. - Starting Price: 10€
    • Advertisement Banner. (Animated or Static) - Starting Price: 5€
    • Social Banners & Covers. - Starting Price: 15€
    • L2 NPC Images. (Logo, Buttons, Backgrounds) - Starting Price: 15€
    • L2 Loading & Splash Screens. - Starting Price: 15€
    • HTML Designs. (Community Boards & Npcs) - Starting Price For NPC: 5€ - For Community Board: 50€
    • Forum & Web Designs. - Web Starting Price: 30€ - Forum: 20€

     

    How to contact me:

    • DM me here.
    • Discord: Psyancy#9002

     

    Payment Methods:

    • PayPal
    • Crypto

    Price will depend on the amount of the order. VIP, Legendary and Staff Members will have a 15% Discount.

     

    Previews:

     

    Banners:

    pMHPRsx.gif DREEW1l.gif rHGDhT0.gif

     

    Logos:

    Lgrky1M.pnggKxhgHL.pngbgRFlgz.png

     

    Forums:

    Rf6hUV9.png

     

    Splash:

    sp_32b_01.png

     

    Community Boards:

    11A0YC5.jpgpXfzph0.jpgmnR2huZ.jpg

     

    Topsites Banners:

    MfhKErY.pngoSK2tCo.png 99KbPzc.pngpufWXpo.png

    • Like 2
    • Upvote 1
  7. 23 hours ago, kagkouras said:

    Πίστεψέ με τους έστειλα ένα κατεβατο όμορφα και ωραία με αποδείξεις και εξηγήσεις και το μόνο που απάντησαν εφόσον το αυτόματο σύστημα Μπαν έκρινε πως ήταν cheat έριξε Μπαν .το λιγότερο τραγικοί στο support τους

    Ναι η αληθεια ειναι οτι διακρινονται για την αδιαφορια τους 😛 εγω την ειχα πατησει σε μια φαση που δεν ειχαν ενημερωσει τι timezone πιανει το key system και πληρωσα 62€ για το κλειδι και μετα απο 10 ωρες με χρεωσαν ξανα και τους εστελνα email για να δω τι φαση και δεν απαντησαν ποτε αναγκαστηκα να κανω charge back απο την paypal μετα απο μια βδομαδα γιατι δεν απαντουσαν ποτε τιποτα αλλο απο αυτοματοποιημενα μυνηματα που δεν ειχε καμια σχεση με αυτο που ηθελα.

  8. Στειλε στην FiveM να σου το βγαλει, ωστοσο σιγουρα θα παρει μερες, συνηθως παιρνει αρκετα να απαντησουν ή δεν απαντανε και καθολου. Ειναι αυτοματα αυτα τα ban εχει φαει πολυ κοσμος αν οντως δεν εχεις κανει κατι λογικα θα στο βγαλουν.

×
×
  • Create New...