_things = _this select 0
_n = 0
_num = count _things
_string = ""
#loop
_string = _string+(format ["%1",(_things select _n)])+"\n"
_n = _n + 1
? _n > _num : goto "end"
goto "loop"
#end
hint _string
exit
What are you doing here? You just want to see what is passed on an event?! That's a lot of work! Why not just do:
player globalchat format ["%1", _this]
..?
Doolittle