This is what I have done so far, but pretty sure it is not going to work...wondering if I can get some help or advice on what I am missing or don't know...
Thanks in advance!
The following obviously isn't all the code but the pertaining code:
Code: Select all
#chat tell
Sub Main
/declare PeopleArray array
/declare PeopleCount global
/varset PeopleCount 0
/return
Sub Event_Chat(ChatType,Sender,ChatText)
/declare Counter local
/varset PeopleArray(PeopleCount)
/for Counter 0 to 49
/if "@Sender == PeopleArray(@Counter) /return
/next Counter
/varadd PeopleCount 1
}
/return
