-
Posts
121 -
Joined
-
Last visited
-
Days Won
12 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by eMommy
-
0 information just that "no compile" lol
-
Share Unprotected Interface.u+xdat Soviet Comrade Voices P338
eMommy replied to eMommy's topic in Client Development Discussion
https://maxcheaters.com/topic/253970-interface-p311/ -
Interface sources for P311 (Frost Lord update) for Classic/Essence NWindow + Interface UC + L2Editor Compiler + XDat Editor Download
-
Interface sources for P362 (Vanguard update) for Classic/Essence NWindow + InterfaceClassic + L2Editor Compiler + XDat Editor Download
-
- 1
-
-
WTS ⭐Client Optimization Sources H5/166EU⭐
eMommy replied to GX-Ext's topic in Marketplace [L2Packs & Files]
Can't send message, PM interested -
I think you can tell that it's not ai because they put their punctuation outside of the quotes o_o "Lineage 2 is not a hardcore competitive MMORPG anymore. It’s a casino disguised as nostalgia, kept alive by whales, box armies and people too addicted or too hopeful to finally let go." This is so true the newer version of l2 should not even be called 'l2' because it strayed so far away from the original game that it might as well be called like AdenCasino
-
No i only have this unfortunately
-
Interface sources for P447 (7s update) for Classic/Essence NWindow + InterfaceClassic + L2Editor + L2ClientDat Mobius + XDat Editor Download
-
ok sounds good sign me up
-
no
-
personally for me, i found it easier to learn when i had a clear idea of what i wanted to make. after i had an idea i would break down the logic of the function and use existing examples to achieve it. if i wanted to make a npc that sold nobles for adena, the first step would be to find.. 1 - how to create a new instance of npc (copy paste existing npc instance) 2 - find a similar npc that has a bypass which takes adena and checks if you have enuf - for example a teleporter 3 - find where noblesse is set 4 - piece together working examples and test its never too late to learn especially if its a hobby :3
-
hello, pm @911reg, he is very interested and expert of the client
-
A simple script which randomizes your target from shortest -> furthest so you can farm with Rush Impact on your doombringer Edit your skill id (Default 45179): SkillList.ByID(45159, sweep) Edit your search range (Default 900): Script.NewThread(@SweepThread, Pointer(900)); var bSweepFurthest: boolean; // Global state variable to track which mob to get next // This procedure now alternates between finding the furthest and nearest mob. procedure SweepThread(dist: integer); var sweep: TL2Skill; mob: TL2Npc; begin while Delay(100) do begin if (Engine.Status = lsOnline) and SkillList.ByID(45159, sweep) then begin // Decide which mob to find based on the bSweepFurthest state if (bSweepFurthest) then begin mob:= GetFurthestSweepableMob(dist); // Looking for the furthest mob end else begin mob:= GetNearestSweepableMob(dist); // Looking for the nearest mob end; if (mob <> nil) then begin if Engine.SetTarget(mob) then Delay(1); Engine.UseSkill(sweep) ; // Flip the state for the next loop iteration bSweepFurthest := not bSweepFurthest; end; end; end; end; // Corrected to check for dead mobs function GetNearestSweepableMob(dist: integer): TL2Npc; var i: integer; begin Result:= nil; for i:= 0 to NpcList.Count-1 do begin if (NpcList(i).Valid) and (User.DistTo(NpcList(i)) < dist) and not (NpcList(i).Dead) then begin // <<< Corrected: Sweepable mobs are dead Result:= NpcList(i); dist:= User.DistTo(NpcList(i)); end; end; end; // Modified to accept a distance parameter and corrected to check for dead mobs function GetFurthestSweepableMob(dist: integer): TL2Npc; var i: integer; max_dist: integer; begin Result:= nil; max_dist:= 0; for i:= 0 to NpcList.Count-1 do begin if (NpcList(i).Valid) and (User.DistTo(NpcList(i)) < dist) // <<< Changed from 400 to the 'dist' parameter and not (NpcList(i).Dead) // <<< Corrected: Sweepable mobs are dead and (User.DistTo(NpcList(i)) > max_dist) then begin Result:= NpcList(i); max_dist:= User.DistTo(NpcList(i)); end; end; end; // Main execution block begin // Initialize the state to start by finding the furthest mob first bSweepFurthest := true; // Start the thread, passing 300 as the max distance for both nearest and furthest searches Script.NewThread(@SweepThread, Pointer(900)); Delay(-1); end.
-
in process upgrade Wolf and to Rose. price updated p464 Elf - $10,000 p507 Wolf - $25,000 p520 Rose - $40,000 (complete in 2 weeks) Rental agreement - p464 Elf - $5,000 + 50% of all server revenue p507 Wolf - $10,000 + 50% of all server revenue p520 Rose - $15,000 + 65% of all server revenue
-
Buy all kinds of custom items, Must be full set. If armor, meaning that it has to work for ALL Human, Elf, Dark Elf, Orc, Dwarf and Kamael. If weapon means has to have ALL types (sword, blunt, dagger, bow, fist, duals, pole, 2h sword, 2h blunt, m sword, m blunt, m staff, rapier, ancient sword). Taking unique sets and custom commissions if anybody has them. Does not matter what client I will adapt them myself. Can NOT be protected. I will do it myself on production version.
-
find - lock.
-
Looking for full patch for this server (ALL accessories, cloaks, weapons needed) - Price MINIMUM $50
-
Selling interface source for newest client update (rose p520) includes: - NWindow - L2 Editor - DAT Editor - Client+System clean - Interface sources - XDat Editor Price: $900
-
-
search for top items
-
this by far takes the prize for one of the dumbest max cheaters posts in history but thanks for the good laugh once agen proving "people" who use crypto have moar coins than brain LOL
-
This is the exact build used on L2 Reborn when it was elf. You are also free to look for something else if this does not fit within your budget.
