HN user

walterh

79 karma

Programmer and Author. http://walterhiggins.net/blog http://www.peachpit.com/store/beginners-guide-to-writing-minecraft-plugins-in-javascript-9780133930146

Posts0
Comments13
View on HN
No posts found.
[GET] "/api/user/walterh/stories?hitsPerPage=30&page=0": 500 Failed to fetch user stories

It looks like Bukkit might be a perfect fit for ScriptCraft. Bukkit seems to have wrappers around a lot proprietary minecraft code. The ability to use those wrappers in Javascript would mean that once ScriptCraft was installed, futher Bukkit plugins could be written entirely in Javascript (no need for java).

Hi Dan, Adding in-game scriptability means you can do some serious in-game world building with a little knowledge of Javascript. I haven't used out-of-game tools like mcedit. I personally like the ability to prototype at the in-game command prompt. E.g...

  /js box('35:15',4,9,1)
...creates a 2001 Monolith at the current location. The real power of ScriptCraft though is its ability to load and execute javascript files containing functions, and the ability to easily extend the Drone class. E.g.
  // file monolith.js 
  Drone.extend('monolith',function(){
      return this.box('35:15',4,9,1);
  });
After loading monolith.js, players can do the following to create 3 monoliths...
  /js monolith().right(6).monolith().right(6).monolith()
I've provided a couple of example scripts but it will be interesting to see what players do with this.
[dead] 14 years ago

Twitter for me is a utility I would happily pay for if Twitter let me. For better or worse they don't want my money.

[dead] 14 years ago

I've added some more information to the original post.

[dead] 14 years ago

Hi St3fan,

I sent an email to twitter contesting the suspension. It's odd I didn't get a notification email from twitter prior to the suspension. Right now, my guess is that the account got hacked and was used for spamming. I can't think of any other reason why the account would be suspended.

Walter