Jump to content

Recommended Posts

Posted (edited)

this guide will show you how to edit l2 textures and get you started with l2 client modding

 

things you will need -

unreal runtime

l2encdec

l2 file edit

photoshop

photoshop dds plugin (just incase)

umodel

----------------------------------------------------------------------------------

to start out, pick a texture you want to edit. i will be doing this on interlude.

navigate to your systextures folder, and select a texture. in this guide i will be using mfighter (textures of armor/hair face of human fighter male, ffighter for female, etc)

 

create a new folder, and extract umodel in that new folder (sdl dll, umodel exe)

create a bat script with the following code -

umodel -export -all MFighter.utx

after you did that paste (copy your file you want to edit and paste it in the folder with umodel)

57ecfabcdb.png

 

run the bat script and you will see all the extracted content is in your umodel export folder

navigate to umodel export -> mfighter -> texture

here you will see all the textures for human male fighter

 

now, to find the armor you want to edit, you need to know the id of it. this can be found through your l2j server or from finding it in your item name file. in this case, we will be using draconic leather armor (6379)

after you found the id through either method, open armorgrp and find the id of the item (6379)

7472846eef.png

8852d3b061.png

given this info, we know that draconic uses mfighter_m011_u/l for its mesh (animation, shape) and that the texture code for it is t89 (so all other pieces of this armor set is t89, making it easier to search)

 

search for 't89' in your extracted textures

ori = main textures

sp = lighting/specular mask

you usually want to edit only the _ori texture unless it doesnt exist in that case you can edit its _sp texture

 

let's start with the body piece, so open the _u_ori in photoshop (u is or upper, l is for lower, g is for gloves, b is for boots)

454bb721ed.jpg

 

we will start by making a selection around the skin (neck area) so the skin in game doesnt turn into some weird color

use the pen tool (press p or find that icon) to make a selection around it. i personally like using pen because it allows more accurate selections

908d58a9c0.png

d71fbb9c0f.png

the red dot is your starting point and ending point

the blue arrow shows where your next point should be (click+drag to curve)

the green point and arrow shows about where you should end and how you close it

e810beeab2.png

now do the same for the other part

 

when finished, right click and choose 'make selection' and press ok with the default settings

33f6a862a0.jpg

 

press ctrl+J to duplicate the selected parts and deselect your selection (ctrl+d)

6b6b41f785.png

 

 duplicate your background layer by selecting it and pressing ctrl+J

you should be working on the copy layer (select it in your layer panel) in case you mess up

9678606efe.png

 

you can edit your texture in many ways, but i will be showing a very simple way of recoloring your texture. we will be making it blue.

press ctrl+u to bring up the hue/saturation menu

789cdda13c.png

 

slide the hue around to see what different colors you get until you are satisfied. saturation and brightness is not necessary for most cases. editing the hue is more effective without precise selections because it effects the colors more than black/whites

d6d2d97147.jpg

d82f19a646.jpg

 

after you finished changing the hue, noticed that the little 'eyes' on the armor are kinda fucked. we will fix that the same way we did with taking out the skin using pen. after you make your selection, press DELETE and it should look like this

8105063105.jpg

 

finished? save it somewhere (desktop or whatever) as tga or dds (use settings below for dds and default for tga)

51ce4b67fe.png

 

after you saved it, find the _sp file for your armor and copy/paste it in the same area with your edited texture

 

 

open unreal editor (found in where you installed your unreal runtime -> system folder

should look something like

80ebe500ad.jpg

 

go to file -> import

import your 2 files (the ori and the sp)

 

make your settings something like this

package = utx name

group = package within the utx (for organization)

name = name of the file (just leave it)

compression = usually dxt3

8f9ab04167.png

 

if the ori file has a alpha layer (which usually ori files tend to have) right click on it and select properties

4a0d106a4c.jpg

 

expand the surface options and make it alphaTexture=true

this will prevent in game bugs with being invis and teleporting

9fc717a21c.jpg

 

go to file -> new and make the settings similar to that

name = your shader name (i keep it like that to be organized, because that is very important)

notice in armorgrp it ends at _u instead of _u_ori or _u_sp because now you will combine the 2 files in a shader

77e08dc2ab.png

 

diffuse = main texture (usually ori)

opacity = alpha texture (usually ori)

specular = effect (usually a env map)

specular mask = (your _sp file)

self illumination = effect 2 (like a panner or something)

self illumination mask = mask for your 2nd effect (_si)

   * note that self illumination is a bit 'heavier' on the effect because it doesnt take out the blacks in it while specular does

 

fcc5a565ce.png

 

select your main texture in diffuse and press 'use'

repeat for opacity

for specular and specular mask, do the same but select your _sp file

output blend should always be ob_masked IF your shader uses a opacity layer! if you don't use opacity leaving it at normal is fine

twoSided should ALWAYS be true

ace519bab8.jpg

 

next, go to file -> new and here we will create your env map. make the name like env01 or effect or something and the group would be 'effect'. the materialClass should be TexEnvMap

b8087765da.png

 

right click on your empty envMap and select properties if you closed out the window or something. this is about the same as putting your textures into shaders. for the 'material' box, we will create a lighting texture for it to get that glossy effect in game

we will repeat the first few steps with extracting except for a file named cubemaps and goldcubes (found in systextures)

do the same and extract the contents of it

find s-07-1

35353ba93e.png

 

do the same with the hue editing and make it blue EXCEPT use colorize to do it

save file after and import it in your Effects group (use same settings, skip doing the alpha part)

use that as material for your envMap

12bc4aec73.png

 

8ac07e1f57.png

 

go back to your shader and use your envMap for your specular

1a917e0b94.jpg

 

save your file in the same folder you put l2encdec in

after, create a bat script like

l2encdec -e 121 MxcGuide.ukx 

run the bat

you will see enc-TextureName

move the enc- file somewhere else

delete the enc- part so its only TextureName

move it to systextures

 

lazy mans script (warning - badly coded but works) -

SET FILENAME=MxcGuide.utx

l2encdec -e 121 %FILENAME%
DEL /F /Q /A "C:\Program Files (x86)\Lineage II\Interlude\systextures\EXS Textures\%FILENAME%"
MOVE C:\Users\User\Desktop\Texturing\enc-%FILENAME% "C:\Program Files (x86)\Lineage II\Interlude\systextures\EXS Textures\"
cd C:\Program Files (x86)\Lineage II\Interlude\systextures\EXS Textures\
REN enc-%FILENAME% %FILENAME% 

use your own lineage path! this will quicken the process by a lot because it will automatically rename, move and delete the old file (i think path can be a variable but i dont know why it doesnt work maybe i fucked up and im not a bat or code expert but this works regardless)

 

 

OPTIONAL BUT USEFUL --

copy your system

open l2 ini with file edit

copy all the contents in a text file

edit this stuff (make it like this)

IsL2NetLogin=False
IsL2Console=False
..
IsUseCommand=False

save text as _l2.ini or whatever name

create a shortcut of l2.exe but add -INI=_l2.ini at the end of target

 

END OPTIONAL INSTRUCTIONS

 

open file edit and open armorgrp

find 6379

copy the lines for it and paste it at the end of your file and make the id something else (like 16379)

 

edit mfighter.mfighter_m011_t89_u and make it MxcGuide.mfighter_m011_t89_u

save after (encrypt as 413)

"C:\Program Files (x86)\Lineage II\Interlude\SystemDev\L2.exe" -INI=_l2.ini 

open your copy system shortcut (or your local server)

if you use pawnviewer, press tab and type pv to load items

navigate to the bottom to find your new armor

85a139596d.jpg7814c821ff.jpg

 

works! now repeat with legs and gloves and boots

 

resources -

l2decrypt

l2tool

 

-----------------

if needed i can make a video on this

Edited by Lucy Cat
  • 5 weeks later...
Posted (edited)

thank you for share!it would be great if you could make more guides about client editing!

Edited by aris96
  • 4 weeks later...
Posted

i got problem on this step: select your main texture in diffuse and press 'use'

i add this to diffuse  :Texture"MxcGuide.MFighter.MFighter_m011_t89_u_ori" and i press use and program stucks.I didnt change package or name i did like you

  • 1 month later...
  • 3 weeks later...
Posted

dude did u make video with this tutorial? cause everytime after i paint my armor i and i try to do ur tutorial on unreal i got error or better DC on the program and i rly wanna make all armor S grade on different color

  • 3 weeks later...
  • 2 months later...
Posted (edited)

Thank you for this handy guide Lucy, I'm new to these stuffs, is it possible to change an armor client side? or this Guide is for new .utx to use for new Custom Armors at a server?

 

Thank you again,

George

Edited by The Catalyst
Posted

Thank you for this handy guide Lucy, I'm new to these stuffs, is it possible to change an armor client side? or this Guide is for new .utx to use for new Custom Armors at a server?

 

Thank you again,

George

i dont get what you want to do

Posted

i dont get what you want to do

 

I was wondering If by this Guide you are able to create a new armor with new ID or you can replace the Draconic model (color etc) for the existing Draconic Leather Armor.

As I can see we created a .utx for a specific armor but Lineage2 got alltogether the armors in the FFighter.utx.

 

Can I add the specific utx we created for this specific armor Draconic Armor to replace the already existing Draconic Armor with this specific ID?

If yes I'll need some assistance with the editing of armorgrp so I'll be more than thankfull if you share with me any usefull topic within the forums!

 

I understand that this is a newbies question but I'm trying to learn and understand how the things are working.

 

Thank you for your patience with me,

George

Guest
This topic is now closed to further replies.


  • Posts

    • L2JOne — Interlude C6 Level 86, S84 grade, clan level 11 — on an Interlude C6 core. 67 systems. Desktop Control Center. Edit the server while it runs. FULL SYSTEM CATALOGUE  ·  WEBSITE  ·  TELEGRAM Most Interlude packs give you a clean core and leave the interesting part to you. This one ships with the content already written — the economy systems, the event engine, the retention loop and the admin tooling a live server actually needs after week one. Everything is configurable from open files, and most of it is editable with the server running, from a Community Board panel or from the desktop Control Center. You should not need a new build to fix a broken skill or retune a drop rate on a Saturday night. QUICK FACTS Level cap 86, S80 and S84 grades, clan level 11 — High Five progression on an Interlude core 909 High Five items — Dynasty, Vesper and Icarus gear, Forgotten Scrolls, Dolls, Agathions 67 systems delivered ready — new, rebuilt, expanded or fixed 689 XML files — items, NPCs, skills, spawns, zones and every custom system, all open 343 quests implemented 147 GM commands, each with its own access level 95 database tables with install and versioned migration scripts 22 Community Board panels with open HTML 8 event modes that schedule themselves Java, JDK 22+, MariaDB / MySQL Desktop Control Center in English, Portuguese and Spanish HIGH FIVE CONTENT ON AN INTERLUDE CORE This is the part most Interlude packs do not have. The core is Interlude C6 — the chronicle your players know, with the combat and the pace they came for — but the progression ceiling is not the Interlude one. The end game was extended with High Five content, server side and client side. Level cap 86. The full experience table up to 86, with the rate brackets to match: five independent XP, SP and currency ranges covering 1-52, 52-61, 61-76, 76-78 and 78-86, so you shape the curve at the top instead of letting it flatten. S80 and S84 grades. Two grades above S, each with its own crystal, enchant bonus and gemstone cost — so the enchant and crystallization economy keeps working at the new ceiling instead of stopping at S. Clan level 11. Clan progression continues past the Interlude cap, with Blood Oath, Blood Alliance and Blood and Sand as the upgrade materials, and the clan skills that come with those levels. 909 High Five items. Dynasty, Vesper and Icarus weapons and armour with their augments and special abilities, 112 Forgotten Scrolls, Dolls and Agathions. High Five skill set. The skill ranges that come with the higher levels and the new gear are implemented, not stubbed — including the Doll and Agathion skills. Client tables included. The item name and grp tables for all of it ship with the pack, and the Control Center reads and repacks them. You are not left to reverse-engineer the client side of a Vesper set on your own. The practical effect: an Interlude server that does not run out of content at 80. Your players keep the chronicle they wanted and still have somewhere to go after the S set. DESKTOP CONTROL CENTER Start, restart and reload configuration Memory, GC, threads and CPU in real time Live log console and content search Database browser, scheduled backup, install and migration HWID bans and IP lookup Item editor with icon preview, plus multisell, NPC, class and config editors Item cloning, ID migration, item-pack import Reads and repacks the client itemgrp / npcgrp / skillgrp Automatic backup before every save Builds incremental updates, hash-verified per file WHAT IS INSIDE NEW = not in stock Interlude  ·  REBUILT = existed, rewritten from scratch  ·  EXPANDED = original kept, features added  ·  IMPROVED = original fixed and revised ECONOMY AND ITEMS — 11 systems Offline Shop — REBUILT. Keeps selling after the client closes, restores itself on restart, expires in a number of days you set. Own name colour and visual effect, no damage in peace zones, can be restricted to VIP only. Marketplace — NEW. Persistent market inside the Community Board. Listings stay up with the player offline, delivery is automatic, the listing fee is configurable, every sale logged. Enchant System — REBUILT. Rate per level and per scroll type in an open file. You choose what happens on failure: break, keep or drop one level. In-game editing panel, log of every attempt, automatic high-enchant announce. Custom currency — NEW. Any item as the private store currency: buy, sell and package sale, including the balance the client shows. Reward capsules — NEW. Boxes that draw items by weight, built in an open file. Event, donation and boss boxes with no code. Timed items and passes — NEW. Expire in real time, not play time, and keep counting offline. Noble, VIP, Kamaloka and auto farm passes ship ready. Equipment skins — NEW. Change the look of weapon and armour without touching a single stat. Accessory sets — NEW. The armour-set concept applied to rings, earrings and necklaces, with their own bonus. Deferred delivery — NEW. Items delivered at the player's next login, so donations, vote rewards and event prizes never get lost. Redeem coupons — NEW. GM generates a code, the player redeems it once. Campaigns, downtime compensation, streamer partnerships. Price and drop control — NEW. Single price across every merchant, all-free mode for test servers, gold bar conversion, drop block by grade on death. EVENTS AND PVP — 9 systems Event engine — NEW. Open-file catalogue: which events exist, when they open, how many players they need, what the prize is. Persistent ranking, level-balanced teams, rejoin after a disconnect. 8 event modes — NEW. Team vs Team, Deathmatch, Capture the Flag, Battle Royale with its own map, Hunting Grounds, Party, Spoil and Fight Boss. Each can run at a different time. Tournament — NEW. 1v1, 3v3, 5v5 and 9v9, solo and party registration. Per-format duration, run window, class composition limit and prize. Function zones — NEW. A whole PvP area from a single file: entry fee, auto-flag, anonymous mode, forbidden items and skills, temporary noblesse, restart lock, monster waves, a boss and automatic shutdown. Rotating siege — NEW. One castle drawn per cycle instead of nine independent schedules. The winner moves to the next castle an hour before the following siege, and no castle repeats until every other one has been fought over. Classic mode still available. Castle governor — NEW. The clan holding the active castle taxes merchants, board shop, gatekeepers and marketplace server-wide, and earns a drop, XP and skill bonus. Own vault and statue, wyvern rights for the leader. Every cap set by you. Olympiad — EXPANDED. Custom period and duration, battle limit, enchant cap in the arena, separate mage and fighter buffs, minimum PvP to enter, participant limit per IP, monthly winners. Event shop — NEW. Event currency buys prizes that exist nowhere else. Editable in-game. Anti-feed and dualbox control — NEW. XP and drop blocked on repeated same-IP kills, character limit per IP, whitelist per zone and instance, participant limit per IP with optional HWID check for events. PROGRESSION AND RETENTION — 13 systems VIP System — NEW. Tiers with their own XP/SP/drop rates, rewards and real-time duration. Benefits keep working in the offline shop, activation item configurable, status panel on the board. Daily missions — NEW. Objectives by action type, automatic scheduled reset, reward per mission, progress saved per character. Includes a daily login reward. Auto Farm — NEW. The player picks the skill list, monster priority and target type (mob, raid or grand boss), and can assist the summon or the party leader. Daily quota unlocked by a pass. You decide: everyone, VIP only, or off. Auto Potion (ACP) — NEW. Separate HP / MP / CP percentage triggers, configured in-game. Removes the incentive to run third-party software. Player-to-player buff selling — NEW. The human buffer gets its job back: advertise your own buffs, set the price, sell to whoever passes. Scheme Buffer — IMPROVED. Schemes saved per account, applied from the NPC and from the board, with a cost and skill list you control. AIO character — NEW. All-in-one character with its own buffs and saved macros, duration and type set by you. Level reward — NEW. Automatic prize on reaching each level, right where most new players give up. Rates per level bracket — NEW. Five independent brackets between 1 and 86 for XP, SP and currency, plus an exclusive rate inside instances. Subclass and skill stacking — EXPANDED. Configurable cap, switching anywhere, selective stacking across subclasses with a block list. Agathion — NEW. Companion pet that follows, talks and optionally heals by percentage. Restored at login. Pet and summon persistence — IMPROVED. Pet and servitor return after a reconnect with buffs and cooldown intact. A dropped connection stops costing ten minutes of rebuffing. Chat commands — NEW. A whole layer absent from stock Interlude: .menu .farm .acp .mission .vote .sell .register .instance .leader .crystal .recipe .aiomacro CONTENT AND WORLD — 8 systems Instanced territories — NEW. Private farm area per player or party, built from the map regions. Each region has its own monster list, respawn, entry policy and a trigger-released boss. No instance sees another, and the drop rate inside is exclusive. Spot fighting is over. Kamaloka — NEW. Instanced dungeon with its own scoring, a board ranking and an entry pass as an item. Simulated players — NEW. Server-controlled characters with combat, healing and potion AI, town walking routes and template clans. Visible in /who. A freshly opened server stops looking empty. Champion mobs — EXPANDED. Own HP, attack and speed, configurable aura, multiplied XP/SP/drop, exclusive drop list, optional guaranteed enchant. Boss info and reward — NEW. Schedule and status on the board, participation reward per raid, raid points to the clan, loot protection, grand boss death announce. Original Interlude content — IMPROVED. 343 quests, 9 castles with working sieges, 44 clan halls with auction and functions, Seven Signs, Festival of Darkness, manor, fishing. Grand boss AI revised — Antharas, Baium, Frintezza, Sailren. Polymorph — NEW. Visual transformation of players and NPCs from an open file. Seasonal events — NEW. Mammon Spawn and Master of Enchanting as calendar scripts. COMMUNITY BOARD — 22 panels Player panel — NEW. Board home with server info, rules, active promotions and a shortcut to every other panel. Server shop — NEW. A merchant inside the board, prices subject to the ruling clan's tax. Rankings — NEW. PvP, PK, level, clan raid points, Kamaloka score and event ranking — six lists updated live, with automatic weekly prizes. Donation panel — NEW. Balance, product and delivery on the character, integrated with the website system. Every delivery logged. Party matching — NEW. A party noticeboard by level, class and goal. Live information panels — NEW. Boss schedules, active events, open instances and territories, governor panel, channel videos with a watch reward, vote reward. All read from the real server state. Forum, mail and friends — IMPROVED. Internal forum, character mail, friend list, favourites and a personal memo. All panel HTML is open — change the visual identity with no recompile. ADMINISTRATION — 7 systems Operations panel — NEW. The desktop Control Center described above. Visual content editors — NEW. Items with icon preview, plus multisell, NPC, class and configuration editors. Item cloning, ID migration, item pack import, automatic backup before every save. Client file editor — NEW. itemgrp / npcgrp / skillgrp read, edit and repack, with ID migration synchronized between server and client. Adding a custom item stops being a manual process across three tools. In-game editors — NEW. Balance, event engine, function zones, territories and system config edited from a board panel, applied without restart, automatic backup of every changed file. GM commands — EXPANDED. 147 commands with per-command access level: zone creation by vertices in-game, spawns saved to the database, NPC route editor with preview, event / balance / enchant panels, HWID management. Persistent configuration — NEW. What the GM changes from the panel is stored and reapplied at next boot. Update package — NEW. The build ships only what changed, hash-verified per file, ready to publish to your players. SECURITY AND PROMOTION — 6 systems Guard and HWID — NEW. Validation at startup, machine identification, window limit per machine, configurable grace mode, access log per account, ban and lookup by GM command. Discord logging — NEW. 28 channels: enchant, drop, pickup, trade, warehouse, multisell, donation, Olympiad results, grand boss deaths, player and GM logins, suspicious IP alerts, chat keyword filter. When a player complains about a missing item, the answer is in the channel. Vote reward — NEW. 8 top lists, individual reward, per-site cooldown, global vote goal with a collective prize. YouTube integration — NEW. Turns your player base into your channel audience. Full section below. Announcements and promotions — NEW. Rotating in-game announces, time-boxed promotions with a board panel. Build protection — NEW. Obfuscation plus optional class encryption with its own loader. YOUTUBE — TURN YOUR PLAYERS INTO YOUR CHANNEL AUDIENCE Most packs call "YouTube integration" a button that opens a link. This one is a closed loop between your channel and the game, and the player never leaves the client. 1. Your channel, inside the game. The server queries the YouTube Data API and rewrites its own video list — title, description and publish date. You never maintain a list by hand: publish on YouTube and the panel updates itself. Players search it and pick what to watch. 2. The video plays inside the client. No alt-tab, no browser, nobody logs out to watch. The server reads the real duration of that video from YouTube and sets the timer to that exact length — the message on screen says how long is left. The player is held away for the duration, so watching is watching, not a tab left open in the background. 3. Watch time, not clicks. This is the part that matters for a channel. A click that bounces after three seconds does nothing for you. What reaches your channel here is a completed view, because the reward only exists if the video runs to the end. 4. The reward lands automatically. Items go straight to the character with an on-screen confirmation and a chat line naming the video. The reward items are yours to configure. Every upload reaches everyone online. A new video triggers an in-game announcement with a message you write. No ad spend, no posting the link in five Discords and hoping. It becomes a habit, not a one-off spike. The daily cap resets every day, so the same players come back tomorrow. Your back catalogue keeps earning views months after publication. Abuse controls built in. One reward per video per day, a configurable daily cap across all videos, one video in progress at a time, everything stored per character in the database — relogging resets nothing. Configurable: API key, channel, how many videos to pull, whether to announce, the announcement text, the reward items and the daily reward cap. A server with 300 players online is 300 completed views on every upload. That is the difference between a channel nobody sees and a channel that grows with the server. COMBAT AND BALANCE — 6 systems Balance per class — NEW. Damage dealt and taken per class, split by attack type, edited from the board, applied without restart, automatic backup so you can roll back. Balance per skill — NEW. Power, duration and behaviour per class, without touching the original skill XML. The broken skill of the month is fixed on the spot, not in the next release. Combat caps — NEW. Hard cap on attack and cast speed, no-cooldown skill list, skill duration overridden by ID, fixed cancel time, configurable expertise penalty. Extra effects and conditions — NEW. 9 effects from later chronicles ported to Interlude, 7 new skill conditions, weapon-swap skill, skill that teaches a skill, extra targets. Servitor share — NEW. The summoner passes a percentage of their stats to the servitor. Geoengine and movement — IMPROVED. Revised pathfinding with instance support. WHAT YOU GET The distribution, compiled and licensed for your project The complete datapack — 689 XML files and the Community Board HTML, open to edit Database scripts: install plus versioned migrations Desktop Control Center (EN / PT / ES) Continuous updates through the update system Direct support during setup Optional: the L2JOne Website System — player accounts, donations with automatic in-game delivery, admin dashboard, 4 payment methods, 4 languages. Sold separately, ask if you want both. HONEST NOTES Ships compiled and licensed per project. If you need full Java sources, ask up front — do not assume it is included. Guard/HWID and the build protection are real operational controls, not a promise of absolute protection. Anyone selling you "unhackable" is selling you a story. Two systems ship disabled and are still marked in-development in the config: Fake Farming and Timed Amulets. Everything else in this list is working. The game client itself is not distributed here. The item name and grp tables for the High Five content are included, and the Control Center edits itemgrp / npcgrp / skillgrp, but assembling and hosting the client is yours. CONTACT Full system catalogue: l2jone.com/fonte Website: l2jone.com Telegram: @Williams0ff E-mail: support@l2jone.com Pricing depends on the plan and on what you want bundled — message me and I will send the options. I am open to using the forum's middleman / escrow service. I have no reputation here yet, and I think asking for it is fair. Questions in the topic are welcome — I answer them here so the next person reading finds the answer too.    Scrolls Augments New Augment Acessories    
    • ⚡ Weekend special! Upgrade your personal Google account with 5TB storage and Gemini Pro in under 60 seconds.
    • Don't cry, it's a game. If it makes you cum on your monitor, of course, enjoy it. My business has been running for years and will continue to do so. No matter what happens here, the dogs bark, the caravan moves on. Start developing game engines - post them too - after all, I create them too) Salvation:Arena (MOBA) Unreal Engine RED-TEAM REVERSECODE Аліса займається розробкою ще з часів створення денді та сеги-діти які створюють шум для мене просто діти) За ці роки роботи я бачила багато різних людей у цій сфері все що я думаю про це не плачте та насолоджуйтесь життям слава ураїне - котись на свій бразильський форум)   If you'd simply asked me in a private message on the forum to be reinstated, you'd have been unblocked without a problem. I have no enemies—it's just business. I can make any product on the market, models and effects, copyrights—complex tools—at my age, people run large companies. I'm pleased that our beloved MXC* forum will now have a lot of free products. I earn a maximum of $200-$300 a year from this industry. If that excites you, well, have fun with us.       I moderate many gaming communities, here's one of them  if I hated you, you'd be out of here in a minute, brother  so don't get carried away with your wet dreams. On the topic of free work, start doing it yourself—the forum needs good free stuff. Someone will definitely like you here and throw a flower on your grave. Besides, you're forgetting that half the forum is involved in this interface development business and for many developers, it's a good income. So, you want to make life sweeter for them all, not just for me it's actually nice that you're such a noble young man.   Besides, I usually work from behind the scenes and don't move anywhere in the market but nothing stops me from doing what others do - working from the shadows  you won't even see that I'm doing it, it's so funny.   Start doing free work. You promised to do it well and post it to communities on time. Good luck! We'll have fun, that's great!🥰   завжди приємно поспілкуватися з веселими людьми              
    • Complete development packages for Lineage 2 UI development, across all chronicles and an automated tool to update and patch Interface.u & Interface.xdat What I Offer Clean Sources: 100% clean, retail-based interface source code with zero unwanted custom modifications. Interface.u Update Tool: A standalone tool designed to patch, rebuild, and update Interface.u efficiently. Custom Modifications: Custom UI features and tailoring can be implemented upon request. Turnaround Time: Most major versions and protocols are ready for immediate delivery; other versions take up to 1 week. How It Works Let me know the specific chronicle or protocol version you are targeting. I will provide the tool, which is HWID-bound to your machine, for your setup. Once satisfied with the results, we finalize the deal. Pricing & Notes Both products are priced separately based on the target protocol and requirements. Package deals are negotiable if purchasing both. DM for inquiries, demos, and pricing quotes.    
    • Well u need to change when sm1 press exit it keeps it in game..  
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..