Jump to content

[L2Phx] Scripts (Only Gracia Final Server)


Nefer

Recommended Posts

Hello MaxCheaters,

 

I use L2 phx in all Server and works  very fine.

 

Now i'm playing in a Gracia Final Server, and i'm searching new Scripts that work.

 

I use L2PacketHack v3.5.33.164 and works perfect.

 

 

In this post i search to upload all scripts that work on Gracia final Server:

 

(I test first the script, and after i post it)

 

===============================

 

- Auto Target (If a player attacks you, your char take the target of attaker)

 

// Script of Auto-Target
// If a player attacks you, your char take the target of attaker
// It works on Gracia Final Server
// Tested in 6 different Server
// Tested by Nefer


var
Attacker, CharID, ObjectID, SocialID, Status: Integer;

procedure TargetAttacker(Attacker: Integer);
 begin
  buf:=#$04;
  WriteD(Attacker);
  SendToServer;
 end;

begin
 if FromServer and (pck[1]=#$04) then
   CharID:=ReadD(18);
 if FromClient and (pck[1]=#$1B) then
   begin
     SocialID:=ReadD(2);
     case SocialID of
     6:Status:=1;
     5:Status:=0;
     end;
   end;
 if Status=1 then
   begin 
     if FromServer and ((pck[1]=#$48) or (pck[1]=#$05)) then
       begin
         Attacker:=ReadD(2);
         ObjectID:=ReadD(6);
       end;
       if (Attacker<>ObjectID) and (CharID=ObjectID) then TargetAttacker(Attacker);
   end;
end.

 

===============================

 

===============================

 

I try the Scripts ONLY in Gracia final Server, don't ask if they work also in other chronicle. Thank

 

If anyone know where i can find other scripts, he tells me that i try them in gracia final Server ^^

 

Bye,

 

Nefer

Link to comment
Share on other sites

WoW Nice Work =)) work and on l2jinterlude?

 

I try the scripts only in Gracia Final Server, hence i don't know if work also in Interlude Server

Link to comment
Share on other sites

In gracia final client, you automatically target the attacker (when you have no target selected). There's no need for phx.

 

And when you are pursuing a fleeing opponent, phx shouldn't >.< interfere by targeting some other guy.

Link to comment
Share on other sites

  • 11 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...