April 23, 20179 yr 4 hours ago, anarchia said: I have no Idea how to use this, even if I made alot of profiles for Pirox. Can u help me with some kind of "ToDo" List to make a succesfull profile? Can I create the Profile only in the "EasyProfileCreator" or do I need some other programms? There is my Testprofile. Tried to accept 2 Dailys at Icecrown and Turn them in. But he does nothing. It's 3.3.5 client btw TestDaily1111.xml EasyProfilecreator is the way to go IMO Profile looks good- you may need to tick " is quest repeatable = true" as its a daily. otherwise the only other thing it could really be is an incorrect quest ID. In EasyProfilecreator go to tools > helper tools and look for the " Current Quests Memory Info" button- hit that and it will give the quest ID's for the quests in your log. Make sure thats the ID you are using.
April 23, 20179 yr 1 hour ago, eeny said: EasyProfilecreator is the way to go IMO Profile looks good- you may need to tick " is quest repeatable = true" as its a daily. otherwise the only other thing it could really be is an incorrect quest ID. In EasyProfilecreator go to tools > helper tools and look for the " Current Quests Memory Info" button- hit that and it will give the quest ID's for the quests in your log. Make sure thats the ID you are using. Yes I did that quest thing. I first tried die "Allinone" Option with pickup,pulse and turnin combined, now with everything seperated it works. Is there a way to add the setting "start attack Elite Units" into the Profile?
April 24, 20179 yr 1 hour ago, anarchia said: Yes I did that quest thing. I first tried die "Allinone" Option with pickup,pulse and turnin combined, now with everything seperated it works. Is there a way to add the setting "start attack Elite Units" into the Profile? that doesnt make sense- pulseallinone works a charm for me, however you dont question something that works. To make the profile attack elites- beginning of the profile make a runcode step wManager.wManagerSetting.CurrentSetting.AttackElite = ; Below post has the write-up
August 22, 20187 yr Hello guys, I just started to make my own quest profiles with Easy Profile Creater. How do I include travel via 1k needle lift, or boat during questing? Also, character just not using flight masters at all... is walking across continents for hours, or walking off cliff at 1k needles lol, how do I fix that? Greetings
October 4, 20187 yr There are C# code snippets in other sub forums for that, but it's advanced and you need to understand what you're doing
October 7, 20187 yr for the lift it might work automaticly, so far had no problems with using the lift in tb. for boat check the vanilla quester profil section there are examples using boat as well using the sw if tram. this should work as well for the lift if it does not work with wrobots pathfinder.
October 7, 20187 yr 12 hours ago, naviomg said: for the lift it might work automaticly, so far had no problems with using the lift in tb. for boat check the vanilla quester profil section there are examples using boat as well using the sw if tram. this should work as well for the lift if it does not work with wrobots pathfinder. tbh i think the movement manager only handles the tb lift and not the 1k needle lift.
October 7, 20187 yr 1 hour ago, Bambo said: tbh i think the movement manager only handles the tb lift and not the 1k needle lift. TB lift is done with OffMeshConnections because the bot can't find a path. 1k needles lift doesn't work that way, because the pathfinder can make a way through the elite area
October 10, 20187 yr Bonjour, Merci pour ce tuto, je viens de me lancer et un skill me pose problème... je parle de Runeforge du DK bien-sure car il faut lancer le skill puis choisir un effet dans la liste puis ensuite choisir l'item tout en se tenant prés d'une forgerune... bref si quelqu'un a la solution pour l'utiliser dans un profil quester je suis preneur !!
October 13, 20187 yr Just now, Nosferatuepic said: How to make paid version of quester? you have to be premium seller, first of all you have to ask droidz
October 13, 20187 yr 1 minute ago, Bambo said: you have to be premium seller, first of all you have to ask droidz hmm that is all? ty
May 20, 20205 yr Hi, why .cs file is ok. but C# cimpilator to .dll file will throw error? It cannot be .dll?
May 20, 20205 yr 32 minutes ago, RedheatWei said: Hi, why .cs file is ok. but C# cimpilator to .dll file will throw error? It cannot be .dll? More Information needed!
October 6, 20214 yr I've been unsuccessfully trying to get full C# quest classing working with one of my profiles. The quest itself is easy, and exactly like the Jasperlode mine example in the beginning of this post. When I try to execute the profile I get all the compile errors, like the rosyln processor is just flipping out about bad namespaces, bad tokens, etc. It's simple, and my code is almost an exact replica of the example. Any help would be appreciated: <QuestClass xsi:type="FullCSharpCodeEasyQuestClass"> <Code> public sealed class TheForgottenPools : QuestClass { public TheForgottenPools () { Name = "The Forgotten Pools"; QuestId.AddRange(new [] {870}); Step.AddRange(new[] { 0, 0, 0, 0 }); } private bool _movedToStart; public override bool Pulse() { if (!_movedToStart && GoToTask.ToPosition(new Vector3(90.37257, -1941.391, 82.64091))) { Thread.Sleep(3000); _movedToStart = true; } return true; } public override bool IsComplete() { if (IsComplete()) return true; if (!HasQuest()) return false; return _movedToStart; } } </Code> When I change the quest back to a normal Path quest everything works. So I know the XML structure is solid. Here's the compiler warnings, not like it means much since it's so obsfucated as temp data: Edited October 6, 20214 yr by BrewingCoder Added Error capture
October 6, 20214 yr Did you paste the code into the Quest editor? If not, I suggest properly escaping your XML
Create an account or sign in to comment