-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
-
Changed Status to Added
-
Catch Zeppelin/Ship Quest profile: Catch Zeppelin and Ship Sample.xml // Sample of how to use Zeppelin/Ship // In this sample, WRobot catch Zeppelin from Kalimdor (Ogrimmard) to Northrend (Borean Tundra (Warsong Hold)) /* Quest settings: * Can condition: "return Usefuls.ContinentId == (int) ContinentId.Kalimdor;" * Is complete condition: "return Usefuls.ContinentId == (int) ContinentId.Northrend && !ObjectManager.Me.InTransport;" * Not required in quest log: "True" * Quest type: "OverridePulseCSharpCode" */ // You can get zeppelin/ship/player positions and entry ID in tab "Tools" > "Development Tools" > "Dump all informations" (or "Memory information"). // Settings: var zeppelinEntryId = 186238; // Zeppelin/Ship EntryId // From var fromZeppelinWaitPosition = new Vector3(1775.066, -4299.745, 151.0326); // Position where Zeppelin/Ship waits players (from) var fromPlayerWaitPosition = new Vector3(1762.322, -4282.175, 133.1072); // Position where the player waits Zeppelin/Ship (from) var fromPlayerInZeppelinPosition = new Vector3(1768.199, -4289.856, 133.1912); // Position where the player waits in the Zeppelin/Ship (from) // To var toZeppelinWaitPosition = new Vector3(2837.908, 6187.443, 140.1648); // Position where Zeppelin/Ship waits players (to) var toPlayerLeavePosition = new Vector3(2836.5, 6184.367, 121.9332); // Position to go out the Zeppelin/Ship (to) // Change WRobot settings: wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; // Code: if (!Conditions.InGameAndConnectedAndProductStartedNotInPause) return true; if (Usefuls.ContinentId == (int)ContinentId.Kalimdor) { if (!ObjectManager.Me.InTransport) { if (GoToTask.ToPosition(fromPlayerWaitPosition)) { var zeppelin = ObjectManager.GetWoWGameObjectByEntry(zeppelinEntryId).OrderBy(o => o.GetDistance).FirstOrDefault(); if (zeppelin != null && zeppelin.Position.DistanceTo(fromZeppelinWaitPosition) < 1) { GoToTask.ToPosition(fromPlayerInZeppelinPosition); } } } } else if (Usefuls.ContinentId == (int)ContinentId.Northrend) { if (ObjectManager.Me.InTransport) { var zeppelin = ObjectManager.GetWoWGameObjectByEntry(zeppelinEntryId).OrderBy(o => o.GetDistance).FirstOrDefault(); if (zeppelin != null && zeppelin.Position.DistanceTo(toZeppelinWaitPosition) < 1) { GoToTask.ToPosition(toPlayerLeavePosition); } } } return true;
-
Edit your profile, in replace last step (LoadProfile: HoL.xml) by step type GoToStep: 0. Try to repair/reinstall framework: https://www.microsoft.com/en-us/download/details.aspx?id=30135
-
Quest steps not compiling if not <scripts> and no quests
Droidz commented on camelot10's bug report in Bug Tracker
Changed Status to Fixed Changed Version to All -
[VANILLA] Custom settings not saved properly
Droidz commented on DonaldMacRonald's bug report in Bug Tracker
Hello, do you call method "Save()" ? Do you get error in your log? -
Hello, Wow is close because you are stuck more than 25 times (you can change this settings in advanced general settings tab "Security"). (look in tab "Product settings" it is recommanded to disable Gilneas bg)
-
How i can check that i can change talents?
Droidz replied to camelot10's topic in Quester assistance
Hello, lua api like http://wowprogramming.com/docs/api/IsResting but for the talents, check if character is not in combat. -
Hello, Can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Hello, do you have activated option "Detect stuck nodes" in advanced general setting?
-
whats wrobot equivalent WoWUnit.InteractSpellId from HB?
Droidz replied to camelot10's topic in Developers assistance
Sorry, I have fixed code http://wrobot.eu/forums/topic/5264-whats-wrobot-equivalent-wowunitinteractspellid-from-hb/?do=findComment&comment=24326 (replace "DisplayID" by "InteractSpellID") -
whats wrobot equivalent WoWUnit.InteractSpellId from HB?
Droidz replied to camelot10's topic in Developers assistance
Hello, try var barrel = ObjectManager.GetObjectWoWUnit().FirstOrDefault(u => u.IsValid && u.Entry == 115947 && u.GetDescriptorStartAddress > 0 && wManager.Wow.Memory.WowMemory.Memory.ReadUInt32(u.GetDescriptorStartAddress + (uint)wManager.Wow.Patchables.Descriptors.UnitFields.InteractSpellID) == 230877); -
This tool is not available on WRobot for the private servers for now, you need to wait next update of your WRobot version.
-
Hello, check in advanced general settings if option "Can attack units already in combat" is disabled.
-
Hello, Sometime, WRobot cannot create path (navigation files are created from default maps, some quests/events open the doors, remove/add the stones,..., this can happen also if it's narrow, or sometime without reason). By sample, it is a narrow staircase, you get error like (navigation file tell at WRobot than he cannot walk in the staircase) (to get full pathfinding logs, in advanced general settings tab 'Path...' activate option "Server Logs") (to get detailed log, you need to activate option "Show server logs" in advanced general settings tab "Path-finding"). Now, we will add offmesh connection (we will add staircase path): And we will try again to generate path: ref: http://www.pathengine.com/Contents/Overview/AdditionalFeaturesOverview/Off-MeshConnections/page.php https://docs.unity3d.com/Manual/class-OffMeshLink.html
-
Need tutorial for "Offmesh Connections" for quester
Droidz replied to camelot10's topic in Developers assistance
http://wrobot.eu/forums/topic/5283-offmesh-connections/ -
Hello, Path is relative to "\WRobot\Profiles\Quester\" If you want to use external file(s) (because you can put c# code directly in the profile), you can load multiple c# files (since today update), put one file by line. I have added this feature for mainly for two reason: 1: You can use classes, methods, variables of your codes in the "quests order" (steps), and in your quests (also from your quests settings like "Is Complete Condition"). 2: You can run code before than WRobot start (before default WRobot states like Farming, IsAttacked, Looting, Resurrect,...) (useful to change wrobot settings). Sample of use: test.zip
-
[Regeneration] Only use 1 Time than wait? (with spell)
Droidz replied to gmussj's topic in General assistance
Hello, Can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). -
Stop/Start Auto Attack C#, And Wanding?
Droidz replied to RonSwanson's topic in Fight Classes assistance
Hello, for AutoShot try to use code like: if (!SpellManager.IsRepeating(AutoShot.Ids) && AutoShot.IsDistanceGood && ObjectManager.Target.GetDistance > 10) -
You can ignore it if WRobot is not closed when you get this message.
-
Hello, try to reinstall WRobot and keep default relogger settings. If you want help give more details.
-
Hello, Check how "Regrowth" is implemented in another fightclasses, if you want help we need your full fightclass.
-
Hello, At the end of your subscription, we will send you an invoice with renewal link to remind you to renew your subscription (you can also found invoice here). We will not automatically renew your subscription.