D dseo80 New Member Joined Jun 18, 2012 Messages 8 Reaction score 0 Jul 26, 2012 #1 Can someone let me know the syntax to check if my class is DH? (for profiles)
TreeK New Member Joined Jul 10, 2012 Messages 170 Reaction score 1 Jul 26, 2012 #2 Something like this I imagine. Take a look through the Belphegor combat routine, I'm sure you can find examples there. Code: if (ZetaDia.Me.ActorClass == ActorClass.DemonHunter) DoSomething;
Something like this I imagine. Take a look through the Belphegor combat routine, I'm sure you can find examples there. Code: if (ZetaDia.Me.ActorClass == ActorClass.DemonHunter) DoSomething;
superreeen Member Joined Jan 28, 2011 Messages 307 Reaction score 2 Jul 26, 2012 #3 TreeK said: Something like this I imagine. Take a look through the Belphegor combat routine, I'm sure you can find examples there. Code: if (ZetaDia.Me.ActorClass == ActorClass.DemonHunter) DoSomething; Click to expand... For a profile it would be: Code: <If condition="Me.ActorClass == ActorClass.DemonHunter"> ... </If>
TreeK said: Something like this I imagine. Take a look through the Belphegor combat routine, I'm sure you can find examples there. Code: if (ZetaDia.Me.ActorClass == ActorClass.DemonHunter) DoSomething; Click to expand... For a profile it would be: Code: <If condition="Me.ActorClass == ActorClass.DemonHunter"> ... </If>
TreeK New Member Joined Jul 10, 2012 Messages 170 Reaction score 1 Jul 26, 2012 #4 D'oh! Missed that important 'for profiles' bit...
D dseo80 New Member Joined Jun 18, 2012 Messages 8 Reaction score 0 Jul 26, 2012 #5 TreeK said: D'oh! Missed that important 'for profiles' bit... Click to expand... Thank you both!