It may be a snapshot feature. I'm not entirely sure, and I'm at work right now so I can't verify it. You can disable player chat in the client...
Not exactly. You'd have to match any custom formatting applied by any chat plugins. if the recieving player is ignoring the 'fake' sender, they...
you're writing way too much code for this, you shouldn't be manually creating your config.yml, there are already methods on the JavaPlugin class...
nothing really, it's just being explicit about the type (double), but it's not necessary as double is the default whena decimal point is present.
Your software might 'glitch up', but the yaml parser/encoder doesn't. don't blame your mistakes on the libraries you're using. edit: to answer...
Location tpLoc = new Location(w,currentLoc.getBlockX(),highestY,currentLoc.getBlockZ()); p.teleport(tpLoc); the teleport method doesn't take...
OrangeGuy you already got the only answer there are. AttributeStorage, or hidden Lore. I use the hidden lore technique in Portable Horses, and it...
getVehicle() returns whatever the entity is riding, whether it's a minecart or a pig, doesn't matter.
the external library isn't included in your plugin jar. you'll have to add it to the classpath when you launch your server, or 'shade' it into...
You do realize this will cause an infinite number of mobs to spawn forever until the server crashes right? every time you spawn one you trigger...
if (player.getVehicle() == null) { // player is not riding anything } else { // player is riding the entity returned by player.getVehicle() }
You'll have to forgive my skepticism, because it does, in fact, work perfectly. its written for 1.7.9, not 1.7.3 (which doesn't exist) I've...
Programming. Yes I'm being intentionally vague because your question is vague. Write some code and when You get stuck ask a specific question....
There is absolutely something wrong with using a . in the name of a config key... You can't do it, and if you write a yaml file manually like that...
Separate names with a comma.