Jump to content

Psyancy

Legendary Member
  • Posts

    1,560
  • Credits

  • Joined

  • Last visited

  • Days Won

    20
  • Feedback

    100%

Everything 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. no alla mporeis na to peraseis me kapoies allages
  3. NoPixel inspired and it's builded on esx and no qbus?
  4. My Discord Server: https://discord.gg/rXFDuxvK7b Hello MaxCheaters users. I'm back doing actively designs! Services I can provide: Discord Server Setup - Starting Price: 10€ Set up channels. Set up roles. Set up permissions. Set up bots. Set up emojis. Discord Bot - Starting Price: 15€ (Lifetime) Unique bot with your name. Exp System with role level rewards to increase activity! Giveaway system. Moderation commands for ban/unban and clear messages. AFK System. Music System. Suggestions system. Tickets System. Announcements System. Custom Embeds. Custom messages for boosts. Moderation logs for message deletes and edits. Custom Welcome and Leave messages. 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
  5. 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 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. Download Link: https://mega.nz/file/qQsl2SrZ#yqHb8VuX_HKJHQDAsW7QoW4grQPi4sBMIJblJ62b3-g
  6. 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).
  7. red Icon.etc_soul_stone_i00 blue Icon.etc_soul_stone_i01 green Icon.etc_soul_stone_i02
  8. maybe it's a silly reply, but maybe it's due to by retail scrolls are not stuckable. if you add custom code to your source and client and have stuckable scrolls I guess you wont have that problem
  9. True. I'll use the first method. thanks bud Added some previews on Main Page.
  10. I got some but I can't put them all here, the spoil system for some reason isn't working and the hide feature makes it available only for premium users so.. I will upload some of my new works soon.
  11. Yeah, I know. It's just that I wanted to make the topic first. Thanks brother
  12. Really bro? XD I do have some of them, I have to upload them some time. Thanks buddy!
  13. I wrote about prices. It's not a generic price, I can't charge someone for a simple logo and a complex logo design for example the same price.
  14. 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
  15. Hello MaxCheaters users. I'm back doing actively designs! 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: Logos: Forums: Splash: Community Boards: Topsites Banners:
  16. Psyancy

    Fivem Ban

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

    Fivem Ban

    Στειλε στην FiveM να σου το βγαλει, ωστοσο σιγουρα θα παρει μερες, συνηθως παιρνει αρκετα να απαντησουν ή δεν απαντανε και καθολου. Ειναι αυτοματα αυτα τα ban εχει φαει πολυ κοσμος αν οντως δεν εχεις κανει κατι λογικα θα στο βγαλουν.
  18. Here's a Product Box Mockup PSD file. Preview: Credits: Graphicsfuel Download Link
  19. Here is a pack of exp rank icons i found on my hard drive to use for your forums. The exp ranks increased by 5 (ex. 0%, 5%, 10%, 15% and so on). Some Preview of the ranks: Download Link Credits: Uknown
  20. Here is a pack of gaming rank icons i've made some years ago for a lineage 2 forum to use for your forums. A Preview of the ranks: Download Link Credits: Psyancy
  21. Here is a pack of gaming rank icons for your forums. A Preview of the ranks: Download Link Credits: Bowskenarts - www.bowskenarts.deviantart.com
  22. For those asking me for the link please stop sending me PMs about it. It's a free share that would cost 100+ euro to buy and you can get it with 20€ by buying a VIP which gives you access to several other free things. Don't be a leech, support the forum to get freebies.
×
×
  • Create New...