What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Search results

  1. WoodenJester

    Translations [DE/FR/ES/RU]

    Mans a legend, i'll add it to BlueBird now. :)
  2. WoodenJester

    Is a dood on a farm?

    Is there a method/property to check whether a DoodadObject is on player-land? I've checked the API but found nothing obvious
  3. WoodenJester

    EN - TR Translation

    Hey, I'm working on a plugin at the moment and wish to add an option to change languages to suit the users comfort a little more - Although... I only know English. If anyone (native speaking, not google translate) has the time to translate the following section into Turkish i'd greatly...
  4. WoodenJester

    EN - RU Translations

    Hey, I'm working on a plugin at the moment and wish to add an option to change languages to suit the users comfort a little more - Although... I only know English. If anyone (native speaking, not google translate) has the time to translate the following section into Russian i'd greatly...
  5. WoodenJester

    Translations [DE/FR/ES/RU]

    This is for the form labeling :)
  6. WoodenJester

    Translations [DE/FR/ES/RU]

    Translations [DE/RU/TR] Hey, I'm working on a plugin at the moment and wish to add an option to change languages to suit the users comfort a little more - Although... I only know English. If anyone (native speaking, not google translate) has the time to translate the following section into...
  7. WoodenJester

    check if player is in my RAID

    No problem, good luck on your project :) Also it might be beneficial for you to put a Thread.Sleep(10); in there to stop ArcheBuddy from "freezing up" whilst it does the foreach statement. foreach (var obj in getCreatures()) { if (obj.type == BotTypes.Player && isPartyMember(obj))...
  8. WoodenJester

    check if player is in my RAID

    isInMyPartyGroup will only return for those that are in your group (5 Players) isPartyMember will return true for both party and raid (50 Players) foreach (var obj in getCreatures()) { if (obj.type == BotTypes.Player && isPartyMember(obj)) { // Do things } }
  9. WoodenJester

    check if player is in my RAID

    bool inparty = isPartyMember(String name); bool inparty = isPartyMember(Creature obj);
  10. WoodenJester

    check if player is in my RAID

    List<PartyMember> RaidMembers = getPartyMembers(); if (RaidMembrs != null && RaidMembers.Count > 5) { // We've confirmed we're in a party, and it's a raid. if (me.isPartyMember) // Doing a second check just in case { // Do things here because i'm in a raid } } #edit A nicer...
  11. WoodenJester

    Casting Revive

    Yup, exactly the same situation on my side. Still going to look into it, but i think it's out of our hands to be honest
  12. WoodenJester

    Casting Revive

    Alright cheers, let me know if you get the same issue or get around it please x)
  13. WoodenJester

    Casting Revive

    Getting some trouble when casting revive on a dead player. At the moment it successfully targets the player & casts revive, though the dead player doesn't receive the option/dialog to accept it. The player is always targeted before the cast with: SetTarget(obj); So far I've tried...
  14. WoodenJester

    GPS / Movement Hook

    When using ComeTo(), MoveTo(), Gps.GpsMove() sometimes the character becomes stuck and will move back a few steps & continue running on route after 2 consecutive jumps. Is it possible to hook into this stuck function? Or any similar method with the same outcome will be nice. For example...
  15. WoodenJester

    I need to get buff ID & Names

    Ohhhh yes, and i totally found out the hard way. Cheers for the help :)
  16. WoodenJester

    I need to get buff ID & Names

    Managed to get it working in the end thanks to a friend! foreach (var buff in sqlCore.sqlBuffs) { Log(string.Format("id:{0} name:{1}", buff.Value.id, buff.Value.name)); } End Result Snippet: id:448 name:Toughened (Rank 4)
  17. WoodenJester

    I need to get buff ID & Names

    Tried it, receive the same error as before. error CS1061: 'System.Collections.Generic.KeyValuePair<uint,ArcheBuddy.SQL.SqlBuff>' does not contain a definition for 'name' and no extension method 'name' accepting a first argument of type...
  18. WoodenJester

    I need to get buff ID & Names

    Hey Just looking to get some information on the Buff properties, and I've already done some rooting around. What i need at the moment for my current project is a list of all the buffs available, and their ID's. I've tried the below to retrieve a list: foreach(var buff in...
  19. WoodenJester

    Создание плагина в Visual Studio

    Been quite some time since I've used Visual Studio, thanks for this quick guide :)
Back
Top