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.
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.
GL & HF
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)
Last edited by grave18; 12-23-2015 at 12:53 PM.