Jump to content

Anatitarget script


Recommended Posts

i think the invisible mode is the same of antitarget..cuz none can target you if you are invisible XD

 

here that script :

 

//Invisible Mode

var

pck48:string;

hidden:boolean;

i,x,y:integer;

 

procedure Init;

begin

hidden:=false;

pck48:='';

randomize;

end;

 

procedure SendMsg(msg:string);

begin

buf:=#$4A;

WriteD(0);

WriteD(2);

WriteS('hLaPEx');

WriteS(msg);

SendToClient;

end;

 

begin

if FromServer then exit;

case ord(pck[1]) of

$1B:case ord(pck[2]) of

$05:

begin

SendMsg('invisible_mode: Off');

pck:=#$30;

hidden:=false;

end;

$06:

begin

if pck48='' then exit;

SendMsg('invisible_mode: On');

hidden:=true;

pck:=pck48;

i:=2;

x:=ReadD(i);

y:=ReadD(i);

x:=x+1000+round(random*200)-100;

y:=y+1000+round(random*200)-100;

buf:=pck;

WriteD(x,2);

WriteD(y,6);

pck:=buf;

end;

end;

$48:pck48:=pck;

$30:if hidden then pck:='';

end;

end.

Link to comment
Share on other sites

The Problem is when you run the invinsible script, everything (literally!) are missing except the map, and you coudln't do anything, just stuck on your place and when you're PVE with a lot of mob which agro on you, they won't go even when you're invisible, it seems that they know you're there then when you come back again, they will start hitting you back.  Died several times because of this.

 

So antitarget would be very much helpful since the enemy couldn't target us anymore, lol.

 

Thx

Link to comment
Share on other sites

On Digital Server(here Hlapex work fully) that Invisible skript work !!

Did you tell someone to watch you when it was on? If it says "Invisible_mode: On" that doesnt mean its on. So does it work ^^ ?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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...