If X player say Y my character will take follow on Z
Please help me create something like this.
03-04-2019, 02:14 PM
HjugO
Quote:
Originally Posted by Elizabeth
If X player say Y my character will take follow on Z
Please help me create something like this.
Code:
LocalSpeechProxy.OnReceive("myproxy", function(proxy, mtype, speaker, level, text)
if speaker == "Uranus" and text == "follow message" then
Creature.Follow("Bazioza")
end
end)
03-04-2019, 06:31 PM
Elizabeth
Quote:
Originally Posted by HjugO
Code:
LocalSpeechProxy.OnReceive("myproxy", function(proxy, mtype, speaker, level, text)
if speaker == "Uranus" and text == "follow message" then
Creature.Follow("Bazioza")
end
end)