44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
console.log('SCRIPT LAUNCHED');
|
|
WA.sendChatMessage('Hi, my name is Poly and I repeat what you say!', 'Poly Parrot');
|
|
|
|
|
|
WA.onChatMessage((message => {
|
|
console.log('CHAT MESSAGE RECEIVED BY SCRIPT');
|
|
WA.sendChatMessage('Poly Parrot says: "'+message+'"', 'Poly Parrot');
|
|
}));
|
|
|
|
WA.onEnterZone('myTrigger', () => {
|
|
WA.sendChatMessage("Don't step on my carpet!", 'Poly Parrot');
|
|
})
|
|
|
|
WA.onLeaveZone('myTrigger', () => {
|
|
WA.sendChatMessage("Thanks!", 'Poly Parrot');
|
|
})
|
|
|
|
WA.onEnterZone('notExist', () => {
|
|
WA.sendChatMessage("YOU SHOULD NEVER SEE THIS", 'Poly Parrot');
|
|
})
|
|
|
|
WA.onEnterZone('popupZone', () => {
|
|
WA.openPopup('foobar', 'This is a test message. Hi!', [
|
|
{
|
|
label: "Close",
|
|
className: "normal",
|
|
callback: (popup) => {
|
|
popup.close();
|
|
}
|
|
},
|
|
{
|
|
label: "Next",
|
|
className: "success",
|
|
callback: (popup) => {
|
|
popup.close();
|
|
}
|
|
}
|
|
])
|
|
})
|
|
|
|
/*WA.onLeaveZone('popupZone', () => {
|
|
WA.sendChatMessage("Thanks!", 'Poly Parrot');
|
|
})*/
|