Jump to content

eMommy

Members
  • Posts

    108
  • Credits

  • Joined

  • Last visited

  • Days Won

    8
  • Feedback

    0%

eMommy last won the day on June 19

eMommy had the most liked content!

1 Follower

About eMommy

Contact Methods

  • Website URL
    https://onlyfans.com/bellyl2

Profile Information

  • Gender
    Female
  • Country
    Israel

Recent Profile Visitors

1,970 profile views

eMommy's Achievements

Community Regular

Community Regular (8/16)

  • One Year In Rare
  • Reacting Well Rare
  • One Month Later Rare
  • Conversation Starter Rare
  • Week One Done Rare

Recent Badges

44

Reputation

  1. this is offlike, you have to edit ui9 in your systextures and the interface to fix it
  2. 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.
  3. 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
  4. 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.
  5. Looking for full patch for this server (ALL accessories, cloaks, weapons needed) - Price MINIMUM $50
  6. Selling interface source for newest client update (rose p520) includes: - NWindow - L2 Editor - DAT Editor - Client+System clean - Interface sources - XDat Editor Price: $900
  7. definitely not mentally handicapped maniac!
  8. search for top items
  9. 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
  10. 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.
  11. hello ys i am very interested in l2 pride also. particularly Community Oriented servers. lets start working to create something nice. L2 InterPride.
  12. A good day to everybody here on Max-Cheaters..! Or as they say in Thessaloniki, Greece. Kalispera. Ela re bros. I am here to bring you another masterpiece archived in the very darkest corners of l2rr.ucoz where even this archaeologist Dwarf dares not venture. However. Such a find must be revealed. After brushing off its dust from 2014 and polishing it up a bit to fit **MODERN USERS** (DXT3 compression, skin masking, 64x64 icons). Behold, the absolutely shockingZeuS ThuNDeRarmor set. Once again. Another masterpiece immortalized in the museum known as the MaxCheaters Client-Development-Discussion section. Credits: The17heroes Gracia Final Download: https://l2jbaylee.dev/shares/ZeuSThuNDeRArmor.rar
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock