MuOnline antihacks 2015.

Page 7 of 10 FirstFirst 12345678910 LastLast
Results 91 to 105 of 141
  1. #91
    Account Upgraded | Title Enabled! douglasruiz is offline
    MemberRank
    Jun 2006 Join Date
    BrazilLocation
    186Posts

    Re: MuOnline antihacks 2015.

    Soon new version of PS 2.1 Free :)

  2. #92
    Member MondialMu is offline
    MemberRank
    Apr 2015 Join Date
    86Posts

    Re: MuOnline antihacks 2015.

    Quote Originally Posted by StolenStar View Post
    I'm developer of NSEngine Anti-Cheat Systems. My Anti-Cheat doesn't use any cheat database/dumpers/window scanners.
    General function it is Heuristic Analysis like functions on AntiViruses.

    Who want to know more about it - link is in profile signature.

    I paid 169 usd for antihack , I used some time but when I went to SS 9 .2 i said give me updates.It's been one month since it's happened and :

    -I have not received any update
    -Skype stops responding although it online.Any service which I made I paid them
    -We lost players
    -He compromised server



    I do not recommend this ignorant and non-professional "boy".I paid 169 usd for nothing.

  3. #93
    LiveGuard Software Ltd Mecanik is offline
    MemberRank
    Jan 2012 Join Date
    404 Not FoundLocation
    343Posts

    Re: MuOnline antihacks 2015.

    Quote Originally Posted by Szaka View Post
    What are you talkin about. The MU is structurized in a way that u cant prevent cheating. You can do scans of memory which can be circumvented and this is where ur "anticheat" becomes blind allowing anything to be modified. Are you seriously thinking that HUUUUGE splash screen will protect the server? xD

    Twitch

    My hack works on every server. And on liveshit too ^_^

    By the way



    DO YOU REALISE WHAT U JUST SAID? xD
    For your information, kernel32 provides functions which are used by every application on windows... using files = kernel32, opening notepad = kernel32. Fuckin EVERYTHING is kernel32. Your knowledge is as shitty as your gameguard

    And to make myself sound relaible - Post here link to server with liveguard. I will reply in no time
    Ok "hotshot", let me see what you can do on my server using a old version ! MuOnline
    Please make at least speedhack.


    PS: "For your information...":

    Is this your "hack" ?

    Code:
    using Microsoft.VisualBasic;
    using Microsoft.VisualBasic.CompilerServices;
    using System;
    using System.Diagnostics;
    using System.Runtime.InteropServices;
    using System.Windows.Forms;
    
    namespace WindowsApplication1
    {
      [StandardModule]
      internal sealed class ReadWritingMemory
      {
        private const int PROCESS_ALL_ACCESS = 127231;
    
        [DebuggerNonUserCode]
        static ReadWritingMemory()
        {
        }
    
        [DllImport("kernel32", CharSet = CharSet.Ansi, SetLastError = true)]
        private static extern int OpenProcess(int dwDesiredAccess, int bInheritHandle, int dwProcessId);
    
        [DllImport("kernel32", CharSet = CharSet.Ansi, SetLastError = true)]
        private static extern int WriteProcessMemory(int hProcess, int lpBaseAddress, ref int lpBuffer, int nSize, ref int lpNumberOfBytesWritten);
    
        [DllImport("kernel32", EntryPoint = "WriteProcessMemory", CharSet = CharSet.Ansi, SetLastError = true)]
        private static extern float WriteProcessMemory_1(int hProcess, int lpBaseAddress, ref float lpBuffer, int nSize, ref int lpNumberOfBytesWritten);
    
        [DllImport("kernel32", EntryPoint = "WriteProcessMemory", CharSet = CharSet.Ansi, SetLastError = true)]
        private static extern long WriteProcessMemory_2(int hProcess, int lpBaseAddress, ref long lpBuffer, int nSize, ref int lpNumberOfBytesWritten);
    
        [DllImport("kernel32", CharSet = CharSet.Ansi, SetLastError = true)]
        private static extern int ReadProcessMemory(int hProcess, int lpBaseAddress, ref int lpBuffer, int nSize, ref int lpNumberOfBytesWritten);
    
        [DllImport("kernel32", EntryPoint = "ReadProcessMemory", CharSet = CharSet.Ansi, SetLastError = true)]
        private static extern float ReadProcessMemory_1(int hProcess, int lpBaseAddress, ref float lpBuffer, int nSize, ref int lpNumberOfBytesWritten);
    
        [DllImport("kernel32", EntryPoint = "ReadProcessMemory", CharSet = CharSet.Ansi, SetLastError = true)]
        private static extern long ReadProcessMemory_2(int hProcess, int lpBaseAddress, ref long lpBuffer, int nSize, ref int lpNumberOfBytesWritten);
    
        public static bool WriteDMAInteger(string Process, int Address, int[] Offsets, int Value, int Level, int nsize = 4)
        {
          bool flag;
          try
          {
            int Address1 = Address;
            int num1 = 1;
            int num2 = Level;
            int num3 = num1;
            while (num3 <= num2)
            {
              Address1 = checked (ReadWritingMemory.ReadInteger(Process, Address1, nsize) + Offsets[num3 - 1]);
              checked { ++num3; }
            }
            ReadWritingMemory.WriteInteger(Process, Address1, Value, nsize);
            flag = true;
          }
          catch (Exception ex)
          {
            ProjectData.SetProjectError(ex);
            flag = false;
            ProjectData.ClearProjectError();
          }
          return flag;
        }
    
        public static int ReadDMAInteger(string Process, int Address, int[] Offsets, int Level, int nsize = 4)
        {
          int num1;
          try
          {
            int Address1 = Address;
            int num2 = 1;
            int num3 = Level;
            int num4 = num2;
            while (num4 <= num3)
            {
              Address1 = checked (ReadWritingMemory.ReadInteger(Process, Address1, nsize) + Offsets[num4 - 1]);
              checked { ++num4; }
            }
            num1 = ReadWritingMemory.ReadInteger(Process, Address1, nsize);
          }
          catch (Exception ex)
          {
            ProjectData.SetProjectError(ex);
            ProjectData.ClearProjectError();
          }
          return num1;
        }
    
        public static bool WriteDMAFloat(string Process, int Address, int[] Offsets, float Value, int Level, int nsize = 4)
        {
          bool flag;
          try
          {
            int Address1 = Address;
            int num1 = 1;
            int num2 = Level;
            int num3 = num1;
            while (num3 <= num2)
            {
              Address1 = checked ((int) Math.Round((double) unchecked (ReadWritingMemory.ReadFloat(Process, Address1, nsize) + (float) Offsets[checked (num3 - 1)])));
              checked { ++num3; }
            }
            ReadWritingMemory.WriteFloat(Process, Address1, Value, nsize);
            flag = true;
          }
          catch (Exception ex)
          {
            ProjectData.SetProjectError(ex);
            flag = false;
            ProjectData.ClearProjectError();
          }
          return flag;
        }
    
        public static float ReadDMAFloat(string Process, int Address, int[] Offsets, int Level, int nsize = 4)
        {
          float num1;
          try
          {
            int Address1 = Address;
            int num2 = 1;
            int num3 = Level;
            int num4 = num2;
            while (num4 <= num3)
            {
              Address1 = checked ((int) Math.Round((double) unchecked (ReadWritingMemory.ReadFloat(Process, Address1, nsize) + (float) Offsets[checked (num4 - 1)])));
              checked { ++num4; }
            }
            num1 = ReadWritingMemory.ReadFloat(Process, Address1, nsize);
          }
          catch (Exception ex)
          {
            ProjectData.SetProjectError(ex);
            ProjectData.ClearProjectError();
          }
          return num1;
        }
    
        public static bool WriteDMALong(string Process, int Address, int[] Offsets, long Value, int Level, int nsize = 4)
        {
          bool flag;
          try
          {
            int Address1 = Address;
            int num1 = 1;
            int num2 = Level;
            int num3 = num1;
            while (num3 <= num2)
            {
              Address1 = checked ((int) (ReadWritingMemory.ReadLong(Process, Address1, nsize) + (long) Offsets[num3 - 1]));
              checked { ++num3; }
            }
            ReadWritingMemory.WriteLong(Process, Address1, Value, nsize);
            flag = true;
          }
          catch (Exception ex)
          {
            ProjectData.SetProjectError(ex);
            flag = false;
            ProjectData.ClearProjectError();
          }
          return flag;
        }
    
        public static long ReadDMALong(string Process, int Address, int[] Offsets, int Level, int nsize = 4)
        {
          long num1;
          try
          {
            int Address1 = Address;
            int num2 = 1;
            int num3 = Level;
            int num4 = num2;
            while (num4 <= num3)
            {
              Address1 = checked ((int) (ReadWritingMemory.ReadLong(Process, Address1, nsize) + (long) Offsets[num4 - 1]));
              checked { ++num4; }
            }
            num1 = ReadWritingMemory.ReadLong(Process, Address1, nsize);
          }
          catch (Exception ex)
          {
            ProjectData.SetProjectError(ex);
            ProjectData.ClearProjectError();
          }
          return num1;
        }
    
        public static void WriteNOPs(string ProcessName, long Address, int NOPNum)
        {
          if (ProcessName.EndsWith(".exe"))
            ProcessName = ProcessName.Replace(".exe", "");
          Process[] processesByName = Process.GetProcessesByName(ProcessName);
          if (processesByName.Length == 0)
          {
            int num1 = (int) MessageBox.Show(ProcessName + " isn't open!");
          }
          else
          {
            IntPtr num2 = (IntPtr) ReadWritingMemory.OpenProcess(127231, 0, processesByName[0].Id);
            if (num2 == IntPtr.Zero)
            {
              int num3 = (int) MessageBox.Show("Failed to open " + ProcessName + "!");
            }
            else
            {
              int num4 = 0;
              int num5 = 1;
              int num6 = NOPNum;
              int num7 = num5;
              while (num7 <= num6)
              {
                int hProcess = (int) num2;
                int lpBaseAddress = checked ((int) (Address + (long) num4));
                int num8 = 144;
                // ISSUE: explicit reference operation
                // ISSUE: variable of a reference type
                int& lpBuffer = @num8;
                int nSize = 1;
                int num9 = 0;
                // ISSUE: explicit reference operation
                // ISSUE: variable of a reference type
                int& lpNumberOfBytesWritten = @num9;
                ReadWritingMemory.WriteProcessMemory(hProcess, lpBaseAddress, lpBuffer, nSize, lpNumberOfBytesWritten);
                checked { ++num4; }
                checked { ++num7; }
              }
            }
          }
        }
    
        public static void WriteXBytes(string ProcessName, long Address, string Value)
        {
          if (ProcessName.EndsWith(".exe"))
            ProcessName = ProcessName.Replace(".exe", "");
          Process[] processesByName = Process.GetProcessesByName(ProcessName);
          if (processesByName.Length == 0)
          {
            int num1 = (int) MessageBox.Show(ProcessName + " isn't open!");
          }
          else
          {
            IntPtr num2 = (IntPtr) ReadWritingMemory.OpenProcess(127231, 0, processesByName[0].Id);
            if (num2 == IntPtr.Zero)
            {
              int num3 = (int) MessageBox.Show("Failed to open " + ProcessName + "!");
            }
            else
            {
              int num4 = 0;
              int Start = 1;
              int num5 = 1;
              int num6 = checked ((int) Math.Round(Math.Round(unchecked ((double) Strings.Len(Value) / 2.0))));
              int num7 = num5;
              while (num7 <= num6)
              {
                byte num8 = checked ((byte) Math.Round(Conversion.Val("&H" + Strings.Mid(Value, Start, 2))));
                int hProcess = (int) num2;
                int lpBaseAddress = checked ((int) (Address + (long) num4));
                int num9 = (int) num8;
                // ISSUE: explicit reference operation
                // ISSUE: variable of a reference type
                int& lpBuffer = @num9;
                int nSize = 1;
                int num10 = 0;
                // ISSUE: explicit reference operation
                // ISSUE: variable of a reference type
                int& lpNumberOfBytesWritten = @num10;
                ReadWritingMemory.WriteProcessMemory(hProcess, lpBaseAddress, lpBuffer, nSize, lpNumberOfBytesWritten);
                checked { ++num4; }
                checked { Start += 2; }
                checked { ++num7; }
              }
            }
          }
        }
    
        public static void WriteInteger(string ProcessName, int Address, int Value, int nsize = 4)
        {
          if (ProcessName.EndsWith(".exe"))
            ProcessName = ProcessName.Replace(".exe", "");
          Process[] processesByName = Process.GetProcessesByName(ProcessName);
          if (processesByName.Length == 0)
          {
            int num1 = (int) MessageBox.Show(ProcessName + " isn't open!");
          }
          else
          {
            IntPtr num2 = (IntPtr) ReadWritingMemory.OpenProcess(127231, 0, processesByName[0].Id);
            if (num2 == IntPtr.Zero)
            {
              int num3 = (int) MessageBox.Show("Failed to open " + ProcessName + "!");
            }
            else
            {
              int num4 = Address;
              int num5 = Value;
              int hProcess = (int) num2;
              int lpBaseAddress = num4;
              int num6 = num5;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              int& lpBuffer = @num6;
              int nSize = nsize;
              int num7 = 0;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              int& lpNumberOfBytesWritten = @num7;
              ReadWritingMemory.WriteProcessMemory(hProcess, lpBaseAddress, lpBuffer, nSize, lpNumberOfBytesWritten);
            }
          }
        }
    
        public static void WriteFloat(string ProcessName, int Address, float Value, int nsize = 4)
        {
          if (ProcessName.EndsWith(".exe"))
            ProcessName = ProcessName.Replace(".exe", "");
          Process[] processesByName = Process.GetProcessesByName(ProcessName);
          if (processesByName.Length == 0)
          {
            int num1 = (int) MessageBox.Show(ProcessName + " isn't open!");
          }
          else
          {
            IntPtr num2 = (IntPtr) ReadWritingMemory.OpenProcess(127231, 0, processesByName[0].Id);
            if (num2 == IntPtr.Zero)
            {
              int num3 = (int) MessageBox.Show("Failed to open " + ProcessName + "!");
            }
            else
            {
              int num4 = Address;
              float num5 = Value;
              int hProcess = (int) num2;
              int lpBaseAddress = num4;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              float& lpBuffer = @num5;
              int nSize = nsize;
              int num6 = 0;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              int& lpNumberOfBytesWritten = @num6;
              double num7 = (double) ReadWritingMemory.WriteProcessMemory_1(hProcess, lpBaseAddress, lpBuffer, nSize, lpNumberOfBytesWritten);
            }
          }
        }
    
        public static void WriteLong(string ProcessName, int Address, long Value, int nsize = 4)
        {
          if (ProcessName.EndsWith(".exe"))
            ProcessName = ProcessName.Replace(".exe", "");
          Process[] processesByName = Process.GetProcessesByName(ProcessName);
          if (processesByName.Length == 0)
          {
            int num1 = (int) MessageBox.Show(ProcessName + " isn't open!");
          }
          else
          {
            IntPtr num2 = (IntPtr) ReadWritingMemory.OpenProcess(127231, 0, processesByName[0].Id);
            if (num2 == IntPtr.Zero)
            {
              int num3 = (int) MessageBox.Show("Failed to open " + ProcessName + "!");
            }
            else
            {
              int num4 = Address;
              long num5 = Value;
              int hProcess = (int) num2;
              int lpBaseAddress = num4;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              long& lpBuffer = @num5;
              int nSize = nsize;
              int num6 = 0;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              int& lpNumberOfBytesWritten = @num6;
              ReadWritingMemory.WriteProcessMemory_2(hProcess, lpBaseAddress, lpBuffer, nSize, lpNumberOfBytesWritten);
            }
          }
        }
    
        public static int ReadInteger(string ProcessName, int Address, int nsize = 4)
        {
          if (ProcessName.EndsWith(".exe"))
            ProcessName = ProcessName.Replace(".exe", "");
          Process[] processesByName = Process.GetProcessesByName(ProcessName);
          int num1;
          if (processesByName.Length == 0)
          {
            int num2 = (int) MessageBox.Show(ProcessName + " isn't open!");
          }
          else
          {
            IntPtr num3 = (IntPtr) ReadWritingMemory.OpenProcess(127231, 0, processesByName[0].Id);
            if (num3 == IntPtr.Zero)
            {
              int num4 = (int) MessageBox.Show("Failed to open " + ProcessName + "!");
            }
            else
            {
              int num5 = Address;
              int hProcess = (int) num3;
              int lpBaseAddress = num5;
              int num6;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              int& lpBuffer = @num6;
              int nSize = nsize;
              int num7 = 0;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              int& lpNumberOfBytesWritten = @num7;
              ReadWritingMemory.ReadProcessMemory(hProcess, lpBaseAddress, lpBuffer, nSize, lpNumberOfBytesWritten);
              num1 = num6;
            }
          }
          return num1;
        }
    
        public static float ReadFloat(string ProcessName, int Address, int nsize = 4)
        {
          if (ProcessName.EndsWith(".exe"))
            ProcessName = ProcessName.Replace(".exe", "");
          Process[] processesByName = Process.GetProcessesByName(ProcessName);
          float num1;
          if (processesByName.Length == 0)
          {
            int num2 = (int) MessageBox.Show(ProcessName + " isn't open!");
          }
          else
          {
            IntPtr num3 = (IntPtr) ReadWritingMemory.OpenProcess(127231, 0, processesByName[0].Id);
            if (num3 == IntPtr.Zero)
            {
              int num4 = (int) MessageBox.Show("Failed to open " + ProcessName + "!");
            }
            else
            {
              int num5 = Address;
              int hProcess = (int) num3;
              int lpBaseAddress = num5;
              float num6;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              float& lpBuffer = @num6;
              int nSize = nsize;
              int num7 = 0;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              int& lpNumberOfBytesWritten = @num7;
              double num8 = (double) ReadWritingMemory.ReadProcessMemory_1(hProcess, lpBaseAddress, lpBuffer, nSize, lpNumberOfBytesWritten);
              num1 = num6;
            }
          }
          return num1;
        }
    
        public static long ReadLong(string ProcessName, int Address, int nsize = 4)
        {
          if (ProcessName.EndsWith(".exe"))
            ProcessName = ProcessName.Replace(".exe", "");
          Process[] processesByName = Process.GetProcessesByName(ProcessName);
          long num1;
          if (processesByName.Length == 0)
          {
            int num2 = (int) MessageBox.Show(ProcessName + " isn't open!");
          }
          else
          {
            IntPtr num3 = (IntPtr) ReadWritingMemory.OpenProcess(127231, 0, processesByName[0].Id);
            if (num3 == IntPtr.Zero)
            {
              int num4 = (int) MessageBox.Show("Failed to open " + ProcessName + "!");
            }
            else
            {
              int num5 = Address;
              int hProcess = (int) num3;
              int lpBaseAddress = num5;
              long num6;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              long& lpBuffer = @num6;
              int nSize = nsize;
              int num7 = 0;
              // ISSUE: explicit reference operation
              // ISSUE: variable of a reference type
              int& lpNumberOfBytesWritten = @num7;
              ReadWritingMemory.ReadProcessMemory_2(hProcess, lpBaseAddress, lpBuffer, nSize, lpNumberOfBytesWritten);
              num1 = num6;
            }
          }
          return num1;
        }
      }
    }
    To be honest, I am so tired of kids like you, and I really don`t waste time here answering back to retarted people.
    I am trying to finish my latest version and update customers.

    DISCLAIMER: If you own a LiveGuard license and it is not working as expected, you should really check for updates, or create a ticket requesting one.

  4. #94
    Enthusiast Szaka is offline
    MemberRank
    Jul 2015 Join Date
    39Posts

    Re: MuOnline antihacks 2015.

    Didnt visit the forum for long time. No it is not my hack, it is awful as you can see :)
    I code in c, c++ and asm.

    If i find a while i will have a look into your server. The link seems to be broken, can you give a server which works?

    Aha and calling someone
    "To be honest, I am so tired of kids like you, and I really don`t waste time here answering back to retarted people."
    without even knowing him just shows your level as a person.

  5. #95
    Member MondialMu is offline
    MemberRank
    Apr 2015 Join Date
    86Posts

    Re: MuOnline antihacks 2015.

    Quote Originally Posted by MondialMu View Post
    I paid 169 usd for antihack , I used some time but when I went to SS 9 .2 i said give me updates.It's been one month since it's happened and :

    -I have not received any update
    -Skype stops responding although it online.Any service which I made I paid them
    -We lost players
    -He compromised server



    I do not recommend this ignorant and non-professional "boy".I paid 169 usd for nothing.
    3 weeks have passed and still made me not update the antihack.Skype is online and does not respond this SCAMMER.

    "If I pay premium package I receive updates" >>> So he said

  6. #96

    Re: MuOnline antihacks 2015.

    Quote Originally Posted by MondialMu View Post
    3 weeks have passed and still made me not update the antihack.Skype is online and does not respond this SCAMMER.

    "If I pay premium package I receive updates" >>> So he said
    I have feedback from a guy saying he is legit, but i also got offer lifetime license for 169$ and can pay split and will receive updates etc, at the end i lost my interest and couldn't trust it anymore, not sure what to say here.

  7. #97
    Member MondialMu is offline
    MemberRank
    Apr 2015 Join Date
    86Posts

    Re: MuOnline antihacks 2015.

    Miscellaneous

    • Newbie
    • NSEngine Customer
    • 0
    • 9 posts
    • Project : Anti Hack Cheat
    • Project URL : Visit Now


    Posted Wednesday at 10:29 AM Ā· Report post

    HOW MY GAME GUARD??

    AFTER IM PAID 260$++

    STILL NOT FIXED YET?

    U ALWAYS HIDDEN FROM ME

    IF YOU CAN"T UPDATE MY GAME GUARD OR WORK WELL

    PLEASE I WANT REFUND MY MONEY


    Like this



    - - - Updated - - -



  8. #98
    Member MondialMu is offline
    MemberRank
    Apr 2015 Join Date
    86Posts

    Re: MuOnline antihacks 2015.

    Skype responds slowly or not at all...when the answer always put the sick >>of 5-6 time/month.

    I do not recommend this specimen.You lose money ,players ,time and more....

    For 180 days often reply but after 180 day ( while you do refund from PayPal ),he became sudden,very "sick "

    Be careful !
    Last edited by MondialMu; 17-01-16 at 08:11 AM.

  9. #99
    Valued Member TantraRex is offline
    MemberRank
    Oct 2012 Join Date
    110Posts

    Re: MuOnline antihacks 2015.

    this people its scammer

    im already paid 263,75$ but never still get any update until 1 month

    im Miscellaneous

  10. #100
    Banned LegalSin(scam) is offline
    BannedRank
    Dec 2011 Join Date
    RaGEZONELocation
    489Posts

    Re: MuOnline antihacks 2015.

    Hi all, since 2014 I have been using my antihack for a perfect world game flawlessly.
    Ever since I improved my code and at the half of 2015 i have introduced my alpha released to a mu online server (DreamMU).
    The experiment failed and I returned the owner money knowing that i have to work more to get the server side handle mu online and other game packets.
    Recently at the end of 2015 my anithack got better may thanks to a client of mine for motivating me to certify my code and resume the developing.

    My anti-hack uses predefined heuristic scan algorithms that got certified by Bitdefender and is even white-listed by major antivirus:
    https://www.virustotal.com/en/file/9...is/1453028606/

    It does not uses any dump database but you can import any of the above mentioned competitors so yes it has a option for dump scan but that's not the main function.

    This program is completely configurable to suit your needs.


    if you want to take a look on full features and give me a try :http://forum.ragezone.com/f608/shark...ction-1090180/

    Thank you very much for reading this post.
    Last edited by LegalSin(scam); 17-01-16 at 08:12 PM.

  11. #101
    Apprentice splound is offline
    MemberRank
    Feb 2008 Join Date
    17Posts

    Re: MuOnline antihacks 2015.

    That Antihack is outdated, if you haven't the cheat can not be locked.

    PD: Beware of wolf derek/conejo/Emerald host liked profit from the work of others. They stole the antihack code of pslorde and renamed like wolf mu guard.

    Check Number 2
    http://forum.ragezone.com/f192/fake-...vices-1083311/

  12. #102
    Banned LegalSin(scam) is offline
    BannedRank
    Dec 2011 Join Date
    RaGEZONELocation
    489Posts

    Re: MuOnline antihacks 2015.

    Quote Originally Posted by splound View Post
    That Antihack is outdated, if you haven't the cheat can not be locked.

    PD: Beware of wolf derek/conejo/Emerald host liked profit from the work of others. They stole the antihack code of pslorde and renamed like wolf mu guard.

    Check Number 2
    http://forum.ragezone.com/f192/fake-...vices-1083311/
    I do not know if your talking about my program that was recently finished for mass production but it dose not have a predefined cheat db you have to implement it yourself with our easy to use tools or use other anti-chat database with their permission.

    The Shark Shield anti hack is collecting as we speak all hacks that he finds and uploads them to a secure server. Like i said it behaves like bitdefender so this will take months but it will get there with your help.


    Think of shark shield as a easy edit tool that you have all control over it.
    Last edited by LegalSin(scam); 17-01-16 at 08:22 PM.

  13. #103
    Enthusiast StolenStar is offline
    MemberRank
    Nov 2013 Join Date
    31Posts

    Re: MuOnline antihacks 2015.

    Quote Originally Posted by MondialMu View Post
    3 weeks have passed and still made me not update the antihack.Skype is online and does not respond this SCAMMER.

    "If I pay premium package I receive updates" >>> So he said
    Why i should to make update for you if you already have it? On Forum is exist Guide how to setup Anti-Cheat System.
    I'm not said that if you'll pay premium package then you'll get update. I said you that users who have premium package have a priority in update.

    Quote Originally Posted by KarLi View Post
    I have feedback from a guy saying he is legit, but i also got offer lifetime license for 169$ and can pay split and will receive updates etc, at the end i lost my interest and couldn't trust it anymore, not sure what to say here.



    You should not have lost interest. Due to the negligence of some people, you lose a good product. If I am a "scammer" Why are not other people write about me?




    Quote Originally Posted by MondialMu View Post
    Skype responds slowly or not at all...when the answer always put the sick >>of 5-6 time/month.

    I do not recommend this specimen.You lose money ,players ,time and more....

    For 180 days often reply but after 180 day ( while you do refund from PayPal ),he became sudden,very "sick "

    Be careful !
    I have a large list of people with whom I work more than 180 days, and they are happy with everything.

    Quote Originally Posted by TantraRex View Post
    this people its scammer

    im already paid 263,75$ but never still get any update until 1 month

    im Miscellaneous
    I do not see where I was a scammer, then what you have not received the update, it does not mean that I scam. The product you have received, and it works.

  14. #104
    HITMAN CAPITOL is offline
    MemberRank
    Apr 2013 Join Date
    PhilippinesLocation
    717Posts

    Re: MuOnline antihacks 2015.

    I've been a customer of StolenStar since last year and I don't have problems with his Anti-Hack. I'm using his v4.0 now and will be getting another one for my Season 6 Server and RFOnline Server soon.

    +1 vouch to NSEngine Product

  15. #105
    Valued Member darkdemo is offline
    MemberRank
    Nov 2007 Join Date
    FloridaLocation
    112Posts

    Re: MuOnline antihacks 2015.

    Hi, i have muonline server with 8 years. On last years i am use NS Engine from @StolenStar. The anticheat work very fine. When i had problems he work and send me updates on few minutes. ITS NOT A SCAMMER.



Advertisement