Jump to content

Watcher

Members
  • Posts

    29
  • Joined

  • Last visited

Bug Report Comments posted by Watcher

  1. Just now, Droidz said:

    It is that, if you use "Use lua to move" option Wow crash when you Jump (and if you use also option "random jump" you get crash after few seconds).

    Thank for your help, and sorry for the delay, I'll add 15 days of subscription at all users of this post.

    I released update

    So... No extra login session ?

    Do we need to disable the Random Jump or it will be fixed?

  2. 1 hour ago, Matenia said:

    I didn't break compatibility and I didn't know Droidz was going to (he likely didn't know himself). We're developing third party binaries that are loaded through the C# API itself. This isn't a simple API change as you'd get it when distributing open source libs to a bunch of users.

    Discord has all the necessary info, including telling you not to update wRobot until I (or other creators) give the approval. It took me a total of 1:30h after the update to fix all binaries AND announce the update. Not a big deal.

    Also forum threads are NOT updated. It's considered bad manners between creators to push their own files into the forum's spotlight.

    I'm sorry for the miss understood.

    What I want to mean is that IF the Wrobot is going to recieve a big update that could break compatibility between the plug-ins, it should warn the users that this could happen, then they could decide if they should update or wait the plugin developers update their codes.

    But, thank you for your quickly update.

    Regards,

    Fabio

  3. 8 minutes ago, Matenia said:

    Every single one that uses custom authentication and gets the wRobot key that way. All of my products have been updated already.

    I think that this is going to be a problem since one of the plugins that I use are not updated since January.
    I'm a software developer and it's not good pratice you create a new application version that brokes compatibility, at least the user should be warned that this could happen.
    Is it possible to downgrate the wrobot version?

     

  4. 8 minutes ago, Matenia said:

    Code to extract key before:

    
    var authKey = robotManager.Helpful.Others.StringBetween(authManager.LoginServer.GetSubcriptionInfoThread(), robotManager.Translate.Get(""License Key"") + "": "", ""...  - "" + robotManager.Translate.Get(""Subscription time expire""));

    Code to extract key after I fixed it for the update:

    
    CompilerResults result = RunCode.Compile(RunCode.CodeType.CSharp,
                @"
                    public class AuthMainClass
                    {
                        public static void Main()
                        {   
                            System.Text.RegularExpressions.Match matcher = System.Text.RegularExpressions.Regex.Match(authManager.LoginServer.GetSubcriptionInfoThread(), ""(Key: )(.*)(\\.\\.\\.)(.*)"");
                            if (matcher.Success) 
                            {
                                robotManager.Helpful.Var.SetVar(""wRobotAuthKey"", matcher.Groups[2].Value);
                            } 
                            else
                            {
                                robotManager.Helpful.Var.SetVar(""wRobotAuthKey"", ""TRIAL"");
                            }
                            
                        }
                    }
                ");
            RunCode.InvokeStaticMethod(result, "AuthMainClass", "Main");
            Logging.WriteError(RunCode.ErrorsToString(result));
            this.wRobotAuthKey = Var.GetVar<string>("wRobotAuthKey");

     

    So, do I need to wait every profile/plugin get na update to the new wrobot version?

×
×
  • Create New...