Posted 09 December 2012 - 09:31 PM
Events are limited to 5 parameters, and any extra ones are discarded.
Example:
Example:
os.queueEvent("a", "b", "c", "d", "e", "f", "g", "h")
evt = {os.pullEvent()}
print(table.concat(evt, ", "))
prints:
a, b, c, d, e, f
instead of:
a, b, c, d, e, f, g, h