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!

Dungeon Buddy - disable AFK Warnings?

RabbitFace

Member
Joined
Dec 3, 2015
Messages
95
Hi, how can I turn the annoying 20second box that appears at the start of LFR? No options I can see and the noise it makes fucking rages me. Also standing AFK for 20secs with all the other botters is obvious.
 
well if you do not afk its only 1 or 2 sec..

no way to turn it off . it is part of the BOT so you cant edit it out of the profiles.

only way to avoid it is find LFR profiles that is not part of the BOT like HFC ones
 
Last edited:
well if you do not afk its only 1 or 2 sec..

no way to turn it off . it is part of the BOT so you cant edit it out of the profiles.

only way to avoid it is find LFR profiles that is not part of the BOT like HFC ones
Yes, this pop-up is part of the LFR scripts, preinstalled with the bot.

Just edit it out, if its too annoyed.

Generally speaking, its quite normal to not move in the first 20sec of LFR. Noone would blame you for botting for this.
 
Yes, this pop-up is part of the LFR scripts, preinstalled with the bot.

Just edit it out, if its too annoyed.

Generally speaking, its quite normal to not move in the first 20sec of LFR. Noone would blame you for botting for this.

Ive missed bosses and on one of them after missing the lift it doesn talk to the orge to port in
 
Yes, this pop-up is part of the LFR scripts, preinstalled with the bot.

Just edit it out, if its too annoyed.


i am not a programmer but i did not see anything in the 2 or 3 profiles i looked in. Please show me the Line i need to delete , replace , or edit
 
i am not a programmer but i did not see anything in the 2 or 3 profiles i looked in. Please show me the Line i need to delete , replace , or edit

It took literally 3 seconds to find...

Open profile, hit CTRL+F, search for afk...

Not all the raid profiles contain the afk pop-up.
 
Last edited:
so i can delete this ???

// Class that contains common behavior for all WOD LFRs
public abstract class WoDLfr : Dungeon
{
protected static LocalPlayer Me
{
get { return StyxWoW.Me; }
}

public override void OnEnter()
{
if (Me.IsTank())
{
Alert.Show(
"Tanking Not Supported",
string.Format(
"Tanking is not supported in the {0} script. If you wish to stay in raid and play manually then press 'Continue'. Otherwise you will automatically leave raid.",
Name),
30,
true,
true,
null,
() => Lua.DoString("LeaveParty()"),
"Continue",
"Leave");
}
else
{
Alert.Show(
"Do Not AFK",
"It is highly recommended you do not afk while in a raid and be prepared to intervene if needed in the event something goes wrong or you're asked to perform a certain task.",
20,
true,
false,
null,
null,
"Ok");
}
base.OnEnter();
}

or just
Alert.Show(
"Do Not AFK",
"It is highly recommended you do not afk while in a raid and be prepared to intervene if needed in the event something goes wrong or you're asked to perform a certain task.",
20,
true,
false,
null,
null,
"Ok");
}
base.OnEnter();
}
 
if (Me.IsTank())
{
Alert.Show(
"Tanking Not Supported",
string.Format(
"Tanking is not supported in the {0} script. If you wish to stay in raid and play manually then press 'Continue'. Otherwise you will automatically leave raid.",
Name),
1,
true,
true,
null,
() => Lua.DoString("LeaveParty()"),
"Continue",
"Leave");
}
else
{
Alert.Show(
"Do Not AFK",
"It is highly recommended you do not afk while in a raid and be prepared to intervene if needed in the event something goes wrong or you're asked to perform a certain task.",
1,
true,
false,
null,
null,
"Ok");
 
{
Alert.Show(
"Do Not AFK",
"It is highly recommended you do not afk while in a raid and be prepared to intervene if needed in the event something goes wrong or you're asked to perform a certain task.",
00,
true,
false,
null,
null,
"Ok");
}
base.OnEnter();
}

tried to change it to" 1 "got errors so changed it to 01 and it worked fine. then changed it to 00 worked just fine too.

Now how do you stop it from popping up in the First place
 
Now how do you stop it from popping up in the First place
This expansion, the pop-up snippet is placed into the Walled City.cs script.

You can either:
- disable the sound ding of it, with changing the true tag to false on line 57,
- short the pop-up duration from 20 sec to less on line 56,
- completely disable it, with removing lines 51 up to 62.

(Disclaimer - if you are not confident how to edit a script file, it is recommended to not give it a try)
Shamelessly quoted myself :D
 
i did delete this and i got errors.. said it couldnt find the dungeon

maybe deleting

}
base.OnEnter();
}

was deleting to much ill try Aion fix next
haha. no, actually you were deleting too little it looks like you left a closing } that was closing the Alert out which caused the entire .CS to error out and not load. All good though.

this is what it should be if your trying to delete the alerts (TANK & NON-TANK) at the start of walled city :
public override void OnEnter()
{
base.OnEnter();
}
 
Last edited:
Back
Top