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

Profession Buddy Problem, rotes Ausrufezeichen

dabehri

New Member
Joined
Jan 31, 2012
Messages
63
Reaction score
1
Guten morgen zusammen....

Ich habe folgendes Problem.
HB installiert die neuste Version, dann ziehe ich mir ?ber SVN den neusten ProfessionsBuddy und packe den Ordner in den Ordner Bots.
Wenn ich dann HB starten bekommt der Proffessionsbuddy Ordner ein rotes Ausrufezeichen.
Jemand ne Ahnung wie ich das Problem beheben kann ???



Danke
Daniel
 
Na denn, aber wie bekomme ich PB dann zum laufen ? Im Auswahlmen? taucht es nicht auf
 
Gibt mal ein log.

(jetzt sag nicht, dass es nutzlos ist weil pb nicht l?uft, so wie 90% der anderen Leute.)

;)
 
[05:59:13.329 N] Compiler Error: error CS0006: Metadata file 'System.Design.dll' could not be found

Hb l?schen und net framework 4.0 nochmal installieren.

Falls du im Dokumentation forum nach dem pb guide schaust, siehst du auch auf den letzten Seiten das Problem und wie man es l?st.
 
So nun wenn ich das Cooking+Fishing 1-525 machen m?chte kommt folgender Fehler

Object reference not set to an instance of an object.
Bot Stopped! Reason: User pressed the Stop button!
PB 1.509: Adding TradeSkill Bergbau
PB 1.509: Done Loading Tradeskills.
PB 1.509: Loading profile [PB - N] 1-525 Cooking-Fishing [Cicrocoft].xml
Bot Stopped! Reason: None Given
Err: Declaration:(void Fish()
{
if (!PulseSW.IsRunning)
PulseSW.Start();
using (new FrameLock())
{
if (PulseSW.ElapsedMilliseconds >= 1000)
{
MyErr("Warning: It took {0} milliseconds to pulse.\nThis can cause missed bites. To fix try disabling all plugins",
PulseSW.ElapsedMilliseconds);
}
PulseSW.Reset(); PulseSW.Start();
try
{
var bobber = ObjectManager.GetObjectsOfType<WoWGameObject>().
FirstOrDefault(u => u.SubType == WoWGameObjectType.FishingBobber && u.CreatedByGuid == Me.Guid);
if (bobber != null && bobber.IsValid && ((WoWFishingBobber)bobber.SubObj).IsBobbing)
{
bobber.Interact();
}
else if (bobber == null && !Me.IsCasting && DateTime.Now - CastTimeStamp >= TimeSpan.FromSeconds(1))
{
TreeRoot.StatusText= string.Format("Fishing level: {0}",Fishing.Level);
SpellManager.Cast("Fishing");
CastTimeStamp = DateTime.Now;
}
}
catch(Exception ex){MyErr(ex.ToString());}
}
})
Compile Error : The type or namespace name 'FrameLock' could not be found (are you missing a using directive or an assembly reference?)

?ndere aktuelles Profil zu level 0 - 2147483647
PB 1.509: Loading profile [PB - N] 1-525 Cooking-Fishing [Cicrocoft].xml
Bot wird gestartet!
Bot Stopped! Reason: None Given
 
Compile Error : The type or namespace name 'FrameLock' could not be found (are you missing a using directive or an assembly reference?)
HB Api hat sich ge?ndert, ich bin mir nur nicht sicher ob der Fehler in PB ist (unwahrscheinlich) oder ob das PB Profil (Kochkunst) diese Meldung verursacht.
 
Back
Top