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

Enter in Instance(Dimension)

alexsandr498

New Member
Joined
Apr 21, 2016
Messages
6
Reaction score
0
Кто-нибудь знает, какая команда отвечает за вход в данжи (библа и тд)?
Does anyone know which command or function help to enter in the instance like Ayanad Library and smth else?
 
Hi, check:
Core.UseDoodadSkill()
Core.getInstanceDimensions()
InstanceDimension.Enter()
 
I checked this functions, but i can't understand how to get instance id for InstanceDimension.Enter() and what getInstanceDimensions() do?
 
What dungeon are you trying to enter?

Code:
foreach (var obj in this.getDoodads())
          {
              if (obj.type == BotTypes.DoodadObject)  
              {  
               List<Skill> data = new  List<Skill> (obj.getUseSkills()  );
               
              foreach(Skill Dobj in data)
              {
                  
                  string help = obj.name + " " + obj.id + " " + Dobj.desc + " " +Dobj.id.ToString();
                  Log(help);
              }
            }

Code:
UseDoodadSkill(
	uint skillId,
	DoodadObject doodad,
	bool autoCome,
	double additionalDoodadRadius
)

So to enter burnt castle you'd end up getting "Burnt Castle Armory Entrance 3543 Enter the Burnt Castle Armory dungeon. (Max Capacity: 5 Players) Costs one Grinding Guardian Scroll if you have passed your daily entrance limit. 18075"

Code:
UseDoodadSkill(18075, 3543, true);
 
Last edited:
What dungeon are you trying to enter?

Code:
foreach (var obj in this.getDoodads())
          {
              if (obj.type == BotTypes.DoodadObject)  
              {  
               List<Skill> data = new  List<Skill> (obj.getUseSkills()  );
               
              foreach(Skill Dobj in data)
              {
                  
                  string help = obj.name + " " + obj.id + " " + Dobj.desc + " " +Dobj.id.ToString();
                  Log(help);
              }
            }

Code:
UseDoodadSkill(
	uint skillId,
	DoodadObject doodad,
	bool autoCome,
	double additionalDoodadRadius
)

So to enter burnt castle you'd end up getting "Burnt Castle Armory Entrance 3543 Enter the Burnt Castle Armory dungeon. (Max Capacity: 5 Players) Costs one Grinding Guardian Scroll if you have passed your daily entrance limit. 18075"

Code:
UseDoodadSkill(18075, 3543, true);
thx a lot, I love you :)
 
No problem, glad to help

Veviya, I'm very new to the API but I have some scripting experience. I was hoping to get what code I'd need to enter the Mitsong Summit dungeon and just have it start when the character logs in (it will be sitting at the Dungeon entrance). The Grinder plugin seems to do everything else but this.
 
Back
Top