View Single Post
11-08-05, 07:35 PM   #4
noraj
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 102
why dont you throw in a getnumpartymembers() thing just in case?

that would catch it I think

I assumed you were but sometimes we overlook the most obvious

[edit] change
for partynum=1,4 do

to
partytotal = GetNumPartyMembers()
if (partytotal > 0 ) then
for partynum = 1 , partytotal do

...


and that *might fix it*

Last edited by noraj : 11-08-05 at 07:39 PM.
  Reply With Quote