Hello guys,
Its possible to do something like that? My one player send prv msg to second and when he recive msg go to xx label.
Anyone know how to do it? Im trying with proxy speach but fail.
Printable View
Hello guys,
Its possible to do something like that? My one player send prv msg to second and when he recive msg go to xx label.
Anyone know how to do it? Im trying with proxy speach but fail.
Dont think it's possible. I may be wrong :)
Yes. I believe that you need not use a solution like the one you're thinking. I think one module would be enough.
http://forums.xenobot.net/showthread...d=1#post460853 take as a basis the chat posted here.
lua code:
Module.New("PrivateMessage", function()
PrivateMessageProxy.OnReceive("PrivateMessage", function(proxy, speaker, level, text)
if (text:find("LoveXB") and speaker == "Fleven") then
Walker.Goto("X")
end
end)
end)