15 lines
402 B
HTML
15 lines
402 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<script src="http://play.workadventure.localhost/iframe_api.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script>
|
||
|
let chatbotEnabled = false;
|
||
|
WA.registerMenuCommand('help', () => {
|
||
|
chatbotEnabled = true;
|
||
|
WA.sendChatMessage("HELP", 'Mr Robot');
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|