Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Stormhelm Grapple Poins

Featured Replies

How can I have quester use grapple points?

 

I have been able to setup a step to interact with NPC and get it to grapple up to the hook, but just after casting (but before being taken up to the hook) it will try to run away to find a way to walk up. Usually this ends up making it run off the side of a mountain back to where it came from. I've tried making "is complete condition" to the hooks position but it doesn't care and will keep walking around trying to interact with other points. 

  • 1 month later...

Hello, you need to use c# for this quest, and use code like:

        var grappleId = 1234;
        var grapple1 = new Vector3(1, 2, 3);
        var grapple2 = new Vector3(1, 2, 3);
        var grapple3 = new Vector3(1, 2, 3);

        if (ObjectManager.Me.Position.DistanceTo(grapple1) < 8)
        {
            var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple2);
            if (g.IsValid)
            {
                Interact.InteractGameObject(g.GetBaseAddress, true);
                Thread.Sleep(1000);
            }
        }
        else if (ObjectManager.Me.Position.DistanceTo(grapple2) < 8)
        {
            var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple3);
            if (g.IsValid)
            {
                Interact.InteractGameObject(g.GetBaseAddress, true);
                Thread.Sleep(1000);
            }
        }
        // ...
        else
        {
            var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple1);
            if (g.IsValid)
            {
                Interact.InteractGameObject(g.GetBaseAddress, true);
                Thread.Sleep(1000);
            }
        }

 

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.