Hello! I've been looking for a simple, lightweight plugin that kills the player once immediately after they log into the server. Of course, I'm reserving judgement as to wether this plugin actually exists. After a good time searching though I havn't had any luck. Just a thought Thanks alot! Granoth
VariableTriggers plugin. create an event trigger by typing this /vtevent Join @IF b <playername>.killedonce = false /vtevent Join @CMDCON kill <playername> @CMDCON runs any console command
it takes 5 minutes to create a simple plugin like that, I'll let some one else do it. If no one does it I will
Code: @EventHandler public void onPlayerLogin(PlayerLoginEvent e) { Player p = e.getPlayer(); p.setHealth(0); } } For any dev that wants to compile this theres the code xD (I'm to lazy to xD)
Like I said simple plugin XD but I'm not home so.... its not player login event but player join event @op link to plugin https://www.dropbox.com/s/q22f59octphhdf9/LoginKiller.jar EDIT by Moderator: merged posts, please use the edit button instead of double posting.