From 9f146939186170a85f94e92a8c2e182770177110 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Mon, 30 Mar 2020 18:51:32 +1300 Subject: [PATCH] Added NWScript Fixes: #543 Co-Authored-By: RobsonMoon --- README.md | 1 + n/nwscript.nss | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 n/nwscript.nss diff --git a/README.md b/README.md index cb083b71..94d268f5 100755 --- a/README.md +++ b/README.md @@ -381,6 +381,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Nodejs](n%5Cnodejs.js) * [Novice](n%5Cnovice.novice) * [Nu](n%5Cnu.nu) +* [Nwscript](n%5Cnwscript.nss) * [Nxc](n%5Cnxc.nxc) * [Oberon 2](o%5Coberon-2.obn) * [Oberon](o%5Coberon.o) diff --git a/n/nwscript.nss b/n/nwscript.nss new file mode 100644 index 00000000..ca97905a --- /dev/null +++ b/n/nwscript.nss @@ -0,0 +1,4 @@ +// Place in the OnClientEnter event of the module's properties +{ + SendMessageToPC(GetEnteringObject(), "Hello World"); +}