I'm trying to pull the event chat_message but am having a strange issue. The event is pulled normally, but it outputs a bunch of information to the screen even without printing it within the program. The code I have is as follows:
local event = require("event")
while true do
local a,b,x,y = event.pull("chat_message")
end
this shouldnt print anything to the screen, however I get the following info with every chat event:
how do I prevent this message from showing up every time?
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
I'm trying to pull the event chat_message but am having a strange issue. The event is pulled normally, but it outputs a bunch of information to the screen even without printing it within the program. The code I have is as follows:
local event = require("event") while true do local a,b,x,y = event.pull("chat_message") end
this shouldnt print anything to the screen, however I get the following info with every chat event:
how do I prevent this message from showing up every time?
Link to post
Share on other sites