What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

算是个bug吧

complefejw

New Member
Joined
Sep 2, 2016
Messages
13
猎人在Taxi时候无限复活宠物.. 游戏提示“你不能这么做” 在封号方面应该会有所影响.
 
你可以用记事本打开Honorbuddy\Routines\Singular\ClassSpecific\Hunter\Common.cs文件
Code:
ret => (Pet == null || !Pet.IsAlive) && (!Me.Combat || reviveInCombat),
改成
Code:
ret => (Pet == null || !Pet.IsAlive) && (!Me.Combat || reviveInCombat) && !Me.OnTaxi,
 
Back
Top