Jump to content

swilso

Members
  • Posts

    257
  • Credits

  • Joined

  • Last visited

    Never
  • Feedback

    0%

Posts posted by swilso

  1. Is there any version of l2walker working right now on mafia?? Cause i need it to make buffs and restore mp...

    With the one i have (1.78 upgraded to 1.79) i cant move or talk after 2 minutes im logged in with Walker... Is there maybe some other programm tha i can use to make this job??

  2. Ipirxe kapote ena script gia to phx vsk akoma iparxei alla dn douleuei ;)

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

×
×
  • Create New...