Page 1 of 1
VG.GroupMember issues
Posted: June 8th, 2008, 5:34 pm
by user01
I built a small heal bot, and I noticed that it reports HP/MaxHP as -1 for the third to fifth group member.
Example:
Code: Select all
For i = 0 to (VG.GroupMemberCount - 1)
Log.DebugLog(i & "/" & VG.GroupMemberCount & ": " & VG.GroupMember(i).HP & "/" & VG.GroupMember(i).MaxHP)
Next
Re: VG.GroupMember issues
Posted: June 8th, 2008, 6:50 pm
by beergeek
user01 wrote:I built a small heal bot, and I noticed that it reports HP/MaxHP as -1 for the third to fifth group member.
Example:
Code: Select all
For i = 0 to (VG.GroupMemberCount - 1)
Log.DebugLog(i & "/" & VG.GroupMemberCount & ": " & VG.GroupMember(i).HP & "/" & VG.GroupMember(i).MaxHP)
Next
I know it gives -1 as a default if the group member slot is empty; I assume you're testing this with a full group...?
If they are indeed broken, send a PM to wyvernx. I'll also mention this to him since he's actively trying to fix all the broken vg functions.
Posted: June 9th, 2008, 3:09 pm
by user01
I have a 5 person group, it recognizes the first 2 group members only. I've tried it on multiple computers to be sure the problem wasn't me before posting. =)
Posted: June 10th, 2008, 6:09 am
by beergeek
user01 wrote:I have a 5 person group, it recognizes the first 2 group members only. I've tried it on multiple computers to be sure the problem wasn't me before posting. =)
I believe you; I simply haven't tried running a bot with more than my 2box duo. I modified a message I had sent to wyvernx with a couple other broken functions to include these after you posted.