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

How to lookup Me.MapID ?

qcde

New Member
Joined
Jan 15, 2016
Messages
4
Reaction score
0
<If Condition=“M.MapId==604”>
how can I lookup zhe MapID?
Thanks for answering!
 
Easy way is go to the zone > Open up developer tools in HB > Click on Console tab > In top window type Log(Me.MapId); > Click run. The number in the bottom box is the MapId. The If Condition should be <If Condition="Me.MapId == 604">. I use this method for:

Log(Me.MapId);
Log(Me.ZoneId);
Log(Me.SubZoneId);
Log(Me.HearthstoneAreaId);
Log(Me.HearthstoneAreaId == Me.ZoneId);
Log(Me.HearthstoneAreaId == Me.SubZoneId);
 
Back
Top