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.

Help with quester profile

Featured Replies

  • Author
5 hours ago, Droidz said:

Hello, I don't understand what do you want, can you give more detail please.

 

4 hours ago, camelot10 said:

He want to jump to certain step of quester profile from pulse

Yes)

Hello, no tested but like this:

        string stepName = "MyStepName";
        var p = Quest.QuesterCurrentContext.Profile as QuesterProfile;
        if (p != null)
        {
            for (int i = 0; i < p.QuestsSorted.Count; i++)
            {
                if (p.QuestsSorted[i].Action == QuestAction.StepName && p.QuestsSorted[i].NameClass == stepName)
                {
                    Quest.QuesterCurrentContext.CurrentStep = i;
                    break;
                }
            }
        }

(replace line 1 MyStepName by your step name (step type 'StepName'))

  • 5 months later...
  • Author
On ‎01‎.‎10‎.‎2017 at 12:11 PM, Droidz said:

Hello, no tested but like this:


        string stepName = "MyStepName";
        var p = Quest.QuesterCurrentContext.Profile as QuesterProfile;
        if (p != null)
        {
            for (int i = 0; i < p.QuestsSorted.Count; i++)
            {
                if (p.QuestsSorted[i].Action == QuestAction.StepName && p.QuestsSorted[i].NameClass == stepName)
                {
                    Quest.QuesterCurrentContext.CurrentStep = i;
                    break;
                }
            }
        }

(replace line 1 MyStepName by your step name (step type 'StepName'))

Error (I use the code in the quester profile)

Безымянный.png

I'm not sure how your complete code looks like or if you just using c# but if you have your own project you need to add a reference to Quester.dll and use the following using

using Quester.Profile;

You also need

using wManager.Wow.Class;
using wManager.Wow.Helpers;

if you dont already using them.

Edited by iMod

  • Author
1 minute ago, iMod said:

I'm not sure how your complete code looks like or if you just using c# but you have your own project you need to add a reference to Quester.dll and use the following using


using Quester.Profile;

You also need


using wManager.Wow.Class;
using wManager.Wow.Helpers;

if you dont already using them.

I mean I want use the code from quester profile ( I don't use custom profile..)

Безымянный.png

5 minutes ago, 79135 said:

I mean I want use the code from quester profile ( I don't use custom profile..)

Безымянный.png

try

        string stepName = "MyStepName";
        var p = wManager.Wow.Helpers.Quest.QuesterCurrentContext.Profile as Quester.Profile.QuesterProfile;
        if (p != null)
        {
            for (int i = 0; i < p.QuestsSorted.Count; i++)
            {
                if (p.QuestsSorted[i].Action == wManager.Wow.Class.QuestAction.StepName && p.QuestsSorted[i].NameClass == stepName)
                {
                    wManager.Wow.Helpers.Quest.QuesterCurrentContext.CurrentStep = i;
                    break;
                }
            }
        }

 

  • Author
4 minutes ago, Droidz said:

try


        string stepName = "MyStepName";
        var p = wManager.Wow.Helpers.Quest.QuesterCurrentContext.Profile as Quester.Profile.QuesterProfile;
        if (p != null)
        {
            for (int i = 0; i < p.QuestsSorted.Count; i++)
            {
                if (p.QuestsSorted[i].Action == wManager.Wow.Class.QuestAction.StepName && p.QuestsSorted[i].NameClass == stepName)
                {
                    wManager.Wow.Helpers.Quest.QuesterCurrentContext.CurrentStep = i;
                    break;
                }
            }
        }

 

Eee, thanks a lot again)

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.