Jump to content

camelot10

Elite user
  • Posts

    838
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    camelot10 got a reaction from nudl in asking for remote load XML support   
    Premium Seller only
  2. Sad
    camelot10 got a reaction from BetterSister in LFR Botting   
    you can almost everything with wrobot in wow. but in 90% of cases you need to good c# knowledge and wrobot guts functionality.
  3. Like
    camelot10 got a reaction from Herr_MayoR in как русифицировать бота? Подскажите плиз. Заранее спасибо   
    ты если перевести не можешь без поводыря, то бот не для тебя
  4. Like
    camelot10 got a reaction from Terrastorm in [Rogue] How to Stealth after looting in between every mob?   
    enable debug and check what blocks stealth
  5. Thanks
    camelot10 got a reaction from Ordush in Can we use savedVariables?   
    #if VISUAL_STUDIO using robotManager.Helpful; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using wManager.Wow.Bot.Tasks; using wManager.Wow.Class; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using wManager.Wow.Enums; using System.Configuration; using System.ComponentModel; using System.IO; #endif [Serializable] public class TestSettings : Settings { [Setting] [DefaultValue(true)] [Category("GHOST WOLF SETTINGS")] [DisplayName("Ghost Wolf")] [Description("Use Ghost Wolf")] public bool UGW { get; set; } [Setting] [DefaultValue(4)] [Category("GHOST WOLF SETTINGS")] [DisplayName("Use after X secondes")] [Description("Use Ghost Wolf after X secondes out of combat")] public int TGW { get; set; } public static TestSettings CurrentSetting { get; set; } public TestSettings() { } public bool Save() { try { return Save(AdviserFilePathAndName("CustomClass_Shaman", ObjectManager.Me.Name + "." + Usefuls.RealmName)); } catch (Exception e) { Logging.WriteError("CustomClass_ShamanSettings > Save(): " + e); return false; } } public static bool Load() { try { if (File.Exists(AdviserFilePathAndName("CustomClass_Shaman", ObjectManager.Me.Name + "." + Usefuls.RealmName))) { CurrentSetting = Load<TestSettings>(AdviserFilePathAndName("CustomClass_Shaman", ObjectManager.Me.Name + "." + Usefuls.RealmName)); } else { CurrentSetting = new TestSettings { UGW = true, TGW = 4, }; } CurrentSetting.PushToLua(); return true; } catch (Exception e) { Logging.WriteError("CustomClass_ShamanSettings > Load(): " + e); } return false; } void PushToLua() { UGW = Lua.LuaDoString<bool>("return luaVar"); } void FetchFromLua() { Lua.LuaDoString("UGW = " + UGW); } } quick and dirty example
  6. Like
    camelot10 got a reaction from Droidz in fightclass and movement problem   
    running whole night world quests with new dll on arms warrior and affliction warlocks, dont get anything unusal, works fine.
  7. Thanks
    camelot10 got a reaction from Photogenic in Add new step in middle of other steps   
    i split long profiles into chain of small profiles with 50-100 steps. saves alot of time
  8. Like
    camelot10 got a reaction from BetterSister in What Is The Status Of World Quests and Quest Chains (Unpaid or One-time Payment)   
    im developing and tuning world quests profiles since september (with some breaks). this take 1-6 hours each day. mostly to fix wrobot clumsiness and test and tune everything. at this moment i run two account permanenly on world quests and regular legion quests. 
    have like 30 demonhunters and tons of other characters on many eu realms. and millions of order hall resources
    also working on stormheim and suramar profiles whole summer. most problem come from wrobot navigation stupidity. hundreds of blackspots/navmesh links/manual paths/checks and routes.
    sometimes hb profile 1 line equal to complex few days of C# scripting and testing in wrobot. but im ok with that. coz small community - no attention from blizzard. everything else is managable
  9. Thanks
    camelot10 got a reaction from Photogenic in [Solved] Bot mark quest as complete when failed.   
    put complete condition check for objective
  10. Like
    camelot10 got a reaction from BetterSister in Wrobot is safe?   
    5 bans coz of greed. not bot related
  11. Like
    camelot10 got a reaction from Matenia in Death Gate of DK   
    var _deathKnightDeathGate = new Spell("Death Gate"); var _deathKnightDeathGateExitPosition = new Vector3(2359.64, -5662.41, 382.2605, "None"); if (me.WowClass == WoWClass.DeathKnight && _deathKnightDeathGate.KnownSpell)// && _deathKnightDeathGate.IsSpellUsable) { //akerus if (Usefuls.AreaId == 139) { var myPos = ObjectManager.Me.Position; if (myPos.DistanceTo(_deathKnightDeathGateExitPosition) < 5) { myPos = robotManager.Helpful.Math.GetRandomPointInCircle(myPos, 10); GoToTask.ToPosition(myPos); return true; } } SpellManager.CastSpellByNameLUA(_deathKnightDeathGate.NameInGame); Usefuls.WaitIsCasting(); Thread.Sleep(Others.Random(1000, 2000)); var gate = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(190942)); if (gate != null && gate.IsValid && gate.CreatedBy == ObjectManager.Me.Guid) { GoToTask.ToPositionAndIntecractWithGameObject(gate.Position, gate.Entry); //Death Gate } } if you dont understand this code, then leave it
  12. Thanks
    camelot10 got a reaction from BetterSister in Death Gate of DK   
    var _deathKnightDeathGate = new Spell("Death Gate"); var _deathKnightDeathGateExitPosition = new Vector3(2359.64, -5662.41, 382.2605, "None"); if (me.WowClass == WoWClass.DeathKnight && _deathKnightDeathGate.KnownSpell)// && _deathKnightDeathGate.IsSpellUsable) { //akerus if (Usefuls.AreaId == 139) { var myPos = ObjectManager.Me.Position; if (myPos.DistanceTo(_deathKnightDeathGateExitPosition) < 5) { myPos = robotManager.Helpful.Math.GetRandomPointInCircle(myPos, 10); GoToTask.ToPosition(myPos); return true; } } SpellManager.CastSpellByNameLUA(_deathKnightDeathGate.NameInGame); Usefuls.WaitIsCasting(); Thread.Sleep(Others.Random(1000, 2000)); var gate = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(190942)); if (gate != null && gate.IsValid && gate.CreatedBy == ObjectManager.Me.Guid) { GoToTask.ToPositionAndIntecractWithGameObject(gate.Position, gate.Entry); //Death Gate } } if you dont understand this code, then leave it
  13. Like
    camelot10 got a reaction from Droidz in Downloads become mess   
    omagad, you queted me to rules. im crying like baby :)
  14. Like
    camelot10 reacted to Droidz in Downloads become mess   
    Hello,
    Thank you.
    I added rules: https://wrobot.eu/files/submit/?do=submit&category=1
    And yes we need to clean download session, do not hesitate to report bad files (use link "Report this file"), I'll move them in  https://wrobot.eu/files/category/39-old-obsolete/
  15. Like
    camelot10 got a reaction from zante in Errors spammed in log   
    delete everything in WRobot\Data\Meshes\
  16. Like
    camelot10 reacted to Droidz in How to sell your profiles/fightclasses   
    Hello,
    Required:
    WRobot subscription active. Buy "Premium Seller" status (before buy this subscription, wait than your file is approved) (it is for 3 months, at the end, if you don't renew your subscription you will no longer be allowed to sell your files). You need be active on the forum or/and share for free files with community (I'll refuse your file if you want sell file without free file shared, or if you have 10 paid files and only 1 free file). You must offer elaborate files created by you (I don't accept files if we can found for free similar or that we can create the same in 2 minutes. If it is simple file (like gatherer profile) I accept if it is pack with several files for low price). Paypal account (you can also use site like https://sellfy.com, https://selly.gg/ or https://gumroad.com/). How to:
    Contact me by private message and send me the file (not obfuscated and not encrypted, for dll send me source code). that you want to sell, the description and the price, I will approve (or not) (if you post paid file without my approval or you try to scam WRobot team or users, I'll remove you files, ban you and suspend your WRobot subscription).
    If your file is approved:
    If you haven't active "Premium Seller" status buy this. optional - You can encrypt your file. Submit a demo version of your file in download section. In "File Name" option put "[PAID]" before the file name. In "About This File", add file description, delivery time,  your method of delivery, the link to buy your file and write than you are not associated with WRobot company: You get result like: 
    You can "Preview" your text with editor button 
    Result: 
    If you use Paypal, you can:s
     
    Remark:
    If you are inactive for a long time (more than 1 year)), the WRobot team reserves the right to share your files. Mainly files that members have paid for and which are no longer accessible due to your inactivity (offline authentication server, download link that no longer works...). You can found old paid files here : https://github.com/droidzfr/WRobot_Packages/tree/master/Old paid files
  17. Like
    camelot10 got a reaction from BetterSister in Downloads become mess   
    @Droidz
    downloads section is out of control: full of strange files
    - profiles with one hotspot and one mob id
    - peoples put it title some wierd text
    - peoples dont give a f#$%ck in what category they post files.
    - peoples dont want to make simple description, even few words what version\what for this plugin/profile, anyone else should be telepaths or reverse engeneering to understand what for this profile/plugin
    - peoples dont use english or some kind of mix with english like "Krugerfugher Legion 100% AFK"
     
    can you please adjust rules for posting in downloads section ?
    example:
    rule #1: if title is not clear enough/wrong - your post removed
    rule #2: if your description is wrong/lazy/stupid/not clear - your post removed
    rule #3: if your post in not in english - your post removed (use your native lang on respective subforums)
    rule #4: if your profile/plugin is simple, (one spot/quest profile) - your post removed
    rule #5: if you cant spent few minutes on screenshot/image - your post removed
    rule #6: if you cant spent few seconds to add tags and wow version for your profile/plugin - your post removed. add "fightclass" for fightclasses, "vanila/tbc/wotk", "quester/grinder/gatherer/etc" for profiles, "plugin" for plugins
    rule #7: if you cant spent few seconds to check in what category you post your file - your post removed
     
    or not removed, maybe moved to "crap/spam/trash subforum/subcategory"
    atm downloads become real mess. 90% of last posts look lazy and stupid. i dont know, maybe they usefull for someone, but not for me. maybe im wrong about that. just my thoughts
  18. Like
    camelot10 got a reaction from Matenia in wManager.DevelopmentTools CSharp   
  19. Like
    camelot10 got a reaction from Bronson in Downloads become mess   
    @Droidz
    downloads section is out of control: full of strange files
    - profiles with one hotspot and one mob id
    - peoples put it title some wierd text
    - peoples dont give a f#$%ck in what category they post files.
    - peoples dont want to make simple description, even few words what version\what for this plugin/profile, anyone else should be telepaths or reverse engeneering to understand what for this profile/plugin
    - peoples dont use english or some kind of mix with english like "Krugerfugher Legion 100% AFK"
     
    can you please adjust rules for posting in downloads section ?
    example:
    rule #1: if title is not clear enough/wrong - your post removed
    rule #2: if your description is wrong/lazy/stupid/not clear - your post removed
    rule #3: if your post in not in english - your post removed (use your native lang on respective subforums)
    rule #4: if your profile/plugin is simple, (one spot/quest profile) - your post removed
    rule #5: if you cant spent few minutes on screenshot/image - your post removed
    rule #6: if you cant spent few seconds to add tags and wow version for your profile/plugin - your post removed. add "fightclass" for fightclasses, "vanila/tbc/wotk", "quester/grinder/gatherer/etc" for profiles, "plugin" for plugins
    rule #7: if you cant spent few seconds to check in what category you post your file - your post removed
     
    or not removed, maybe moved to "crap/spam/trash subforum/subcategory"
    atm downloads become real mess. 90% of last posts look lazy and stupid. i dont know, maybe they usefull for someone, but not for me. maybe im wrong about that. just my thoughts
  20. Like
    camelot10 got a reaction from Arcangelo in Downloads become mess   
    @Droidz
    downloads section is out of control: full of strange files
    - profiles with one hotspot and one mob id
    - peoples put it title some wierd text
    - peoples dont give a f#$%ck in what category they post files.
    - peoples dont want to make simple description, even few words what version\what for this plugin/profile, anyone else should be telepaths or reverse engeneering to understand what for this profile/plugin
    - peoples dont use english or some kind of mix with english like "Krugerfugher Legion 100% AFK"
     
    can you please adjust rules for posting in downloads section ?
    example:
    rule #1: if title is not clear enough/wrong - your post removed
    rule #2: if your description is wrong/lazy/stupid/not clear - your post removed
    rule #3: if your post in not in english - your post removed (use your native lang on respective subforums)
    rule #4: if your profile/plugin is simple, (one spot/quest profile) - your post removed
    rule #5: if you cant spent few minutes on screenshot/image - your post removed
    rule #6: if you cant spent few seconds to add tags and wow version for your profile/plugin - your post removed. add "fightclass" for fightclasses, "vanila/tbc/wotk", "quester/grinder/gatherer/etc" for profiles, "plugin" for plugins
    rule #7: if you cant spent few seconds to check in what category you post your file - your post removed
     
    or not removed, maybe moved to "crap/spam/trash subforum/subcategory"
    atm downloads become real mess. 90% of last posts look lazy and stupid. i dont know, maybe they usefull for someone, but not for me. maybe im wrong about that. just my thoughts
  21. Like
    camelot10 got a reaction from Zan in Downloads become mess   
    @Droidz
    downloads section is out of control: full of strange files
    - profiles with one hotspot and one mob id
    - peoples put it title some wierd text
    - peoples dont give a f#$%ck in what category they post files.
    - peoples dont want to make simple description, even few words what version\what for this plugin/profile, anyone else should be telepaths or reverse engeneering to understand what for this profile/plugin
    - peoples dont use english or some kind of mix with english like "Krugerfugher Legion 100% AFK"
     
    can you please adjust rules for posting in downloads section ?
    example:
    rule #1: if title is not clear enough/wrong - your post removed
    rule #2: if your description is wrong/lazy/stupid/not clear - your post removed
    rule #3: if your post in not in english - your post removed (use your native lang on respective subforums)
    rule #4: if your profile/plugin is simple, (one spot/quest profile) - your post removed
    rule #5: if you cant spent few minutes on screenshot/image - your post removed
    rule #6: if you cant spent few seconds to add tags and wow version for your profile/plugin - your post removed. add "fightclass" for fightclasses, "vanila/tbc/wotk", "quester/grinder/gatherer/etc" for profiles, "plugin" for plugins
    rule #7: if you cant spent few seconds to check in what category you post your file - your post removed
     
    or not removed, maybe moved to "crap/spam/trash subforum/subcategory"
    atm downloads become real mess. 90% of last posts look lazy and stupid. i dont know, maybe they usefull for someone, but not for me. maybe im wrong about that. just my thoughts
  22. Like
    camelot10 got a reaction from seber99 in 100-110 questing profile   
  23. Like
    camelot10 got a reaction from reapler in New "Script" node in quester profiles   
    you can use namespaces in scripts
  24. Like
    camelot10 got a reaction from Marsbar in wManager.DevelopmentTools CSharp   
  25. Like
    camelot10 got a reaction from 14553 in Questions before buying.   
    you are such kind person. answering same questions every day, again and again. i wish i can do the same.
×
×
  • Create New...