Posted 03 January 2018 - 01:12 AM
Hi,
I am currently playing on a self-made modpack on Minecraft 1.6.4
I am using Computercraft 1.63, OpenModsLib 0.5.1, OpenPeripheralCore 0.4.1 and OpenPeripheralAddons 0.1.5.
I am unable to get the chat event from the glasses. It just does not fire…
I did a small loop like this to try
I tried to add it between parenthesis but still nothing…
I get only the event "registered_player_join" which is not useful in this case, and the glasses are working fine (Can draw on it).
At first I thought that it was not included yet in this version, but I decompiled OP-A and found evidences that it IS implemented correctly…
Any idea of what I am missing ?
I am currently playing on a self-made modpack on Minecraft 1.6.4
I am using Computercraft 1.63, OpenModsLib 0.5.1, OpenPeripheralCore 0.4.1 and OpenPeripheralAddons 0.1.5.
I am unable to get the chat event from the glasses. It just does not fire…
I did a small loop like this to try
a = peripheral.wrap("back"); -- It's where there is my terminal glasses bridge
while true do
b = os.pullEvent();
print(B)/>;
end
It registers everything but glasses_chat_commandI tried to add it between parenthesis but still nothing…
I get only the event "registered_player_join" which is not useful in this case, and the glasses are working fine (Can draw on it).
At first I thought that it was not included yet in this version, but I decompiled OP-A and found evidences that it IS implemented correctly…
Any idea of what I am missing ?