Jump to content

Recommended Posts

Hello, try this plugin: CTMWhenSwimming.cs

using wManager.Wow.ObjectManager;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        wManager.Events.MovementEvents.OnMoveToLoop += () =>
        {
            if (ObjectManager.Me.IsSwimming)
                wManager.wManagerSetting.CurrentSetting.UseCTM = true;
            else
                wManager.wManagerSetting.CurrentSetting.UseCTM = false;
        };
    }

    public void Dispose()
    {
        wManager.wManagerSetting.CurrentSetting.UseCTM = false;
    }

    public void Settings()
    {
    }
}

 

You can also run this code in your quest profile (only one time by session):

        wManager.Events.MovementEvents.OnMoveToLoop += () =>
        {
            if (wManager.Wow.ObjectManager.ObjectManager.Me.IsSwimming)
                wManager.wManagerSetting.CurrentSetting.UseCTM = true;
            else
                wManager.wManagerSetting.CurrentSetting.UseCTM = false;
        };

 

Link to comment
https://wrobot.eu/forums/topic/5077-swimming-under-water/#findComment-23591
Share on other sites

  • 1 month later...
  • 1 month later...
  • 3 weeks later...

Water isnt working for me too. Stuttering all the swimming way. Even with plugin Droidz

  On 3/15/2017 at 11:57 AM, Droidz said:

In the last update, CTM is disabled by default, but when you are in water CTM is used automaticly (you don't need to use this plugin now).

Expand  

 

Link to comment
https://wrobot.eu/forums/topic/5077-swimming-under-water/#findComment-26751
Share on other sites

  On 5/16/2017 at 1:16 PM, maukor said:

https://gyazo.com/de2e595ddb926397e5f48f0f7452598b

With plugin. and other different settings

Expand  

 

That looks like it might be the fight class. I had an issue with mine doing that because it was trying to stop moving to cast a spell, but it would be moving to try and get in range. 

 

Does it only happen when running to a mob to attack?

Edited by KnightRyder
added question!
Link to comment
https://wrobot.eu/forums/topic/5077-swimming-under-water/#findComment-26822
Share on other sites

  On 5/16/2017 at 9:05 PM, KnightRyder said:

 

That looks like it might be the fight class. I had an issue with mine doing that because it was trying to stop moving to cast a spell, but it would be moving to try and get in range. 

 

Does it only happen when running to a mob to attack?

Expand  

I get this also and no it doesn't only do it when running to a mob, i think its actually CTM bugging out rather than the swimming itself, if you manually rightclick somewhere CTM should move you there but it moves for like 1 second and stops. Now just gotta figure out why CTM is somehow breaking

Link to comment
https://wrobot.eu/forums/topic/5077-swimming-under-water/#findComment-26846
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...