Skip to main content

Events b4

The project is coming along nicely and most of the difficult things are now done.

The major improvement in this version is the addition of mob-data, which is a system of variables stored on mobs or players. What this means is you can assign your own variables to a mob when it spawns and use those in any further event. For example, you might want to give every 10th zombie a variable when it spawns and check for this variable when it dies. If you find it you can drop better loot.

You can also keep track of how many mobs a player has killed and reward/punish accordingly.

 

As always, the docs can be found here and the project page here.

Variables

In the last post I mentioned that I had expanded on the variables feature Mobs uses (slightly!).  In this post I’ll outline how it works in detail.  Please note that while the code for this is pretty much complete, I still might change the syntax a little before release.

First, there are three kinds of variables:

  • local – only used within the event
  • global – available from any event
  • constant – relevant to the event (and yes, I realize how odd ‘constant variable’ sounds!).

Read More

Updating a plugin

I would consider the main feature I build plugins around is potentially complex configs. In fact, the reason I wrote my first plugin was because I wanted to offer more mob drop possibilities than any current plugin did.

Finding the right balance between simple-but-limited and complex-but-overwhelming is something I struggle with daily, and spend most of my time designing and rejecting concepts for configs. Sometimes the internal code went to extraordinary lengths to keep things consistent for the users. Other times lengthy explanations and config generator apps were necessary and even then it could never be called easy.Read More