[WEB] Show plugin permissions
#21
(10-09-2015, 12:22 AM)NiLSPACE Wrote: Wow, I'm impressed. The only thing that you might want to change is showing a "Remove Permission" instead of no button at all.

But seriously, I'm amazed that this is your first Cuberite plugin.

When I saw that you used LUA for plugins, I dived straight in since I already know some LUA Smile And yeah, I could do that, can do a small update to include it.



Also, One thing you might have noticed on the video is that I added a command for Core called /killall, basically the same idea from Bukkit Essentials, execpt it kills all hostile mobs in the world (or do /killall all to kill non hostile ones (wolfs, cats, squids, villagers etc))

Here is the code thoTongue

function HandleKillMobsCommand( Split, Player )
	local GetMobs = 0
	local CountIfMob = function(Entity)
		if Entity:IsMob() and not Entity:IsDestroyed() then
			GetMobs = GetMobs + 1
			local class = Entity:GetClass()
			
			-- Got lazy here
			if Split[2] == "" or Split[2] ~= "all" then
				if class == "cSkeleton" or class == "cEnderman" or class == "cZombie" or class == "cSpider" or class == "cGuardian" or class == "cSlime" then
					Entity:Destroy()
				end
			else
				Entity:Destroy()
			end
		end
	end
	
	Player:GetWorld():ForEachEntity(CountIfMob)
	
	Player:SendMessage("All " .. GetMobs .. " mobs has been deleted")
	
	return true
end

a quick little bump, the remove permission has now been added, and its on github Smile
Reply
Thanks given by:


Messages In This Thread
[WEB] Show plugin permissions - by JonnyBoy0719 - 10-08-2015, 04:46 AM
RE: [WEB] Show plugin permissions - by NiLSPACE - 10-08-2015, 05:03 AM
RE: [WEB] Show plugin permissions - by NiLSPACE - 10-08-2015, 06:17 AM
RE: [WEB] Show plugin permissions - by xoft - 10-08-2015, 07:07 AM
RE: [WEB] Show plugin permissions - by xoft - 10-08-2015, 07:09 AM
RE: [WEB] Show plugin permissions - by NiLSPACE - 10-08-2015, 04:36 PM
RE: [WEB] Show plugin permissions - by NiLSPACE - 10-08-2015, 08:58 PM
RE: [WEB] Show plugin permissions - by xoft - 10-08-2015, 09:13 PM
RE: [WEB] Show plugin permissions - by NiLSPACE - 10-08-2015, 09:15 PM
RE: [WEB] Show plugin permissions - by NiLSPACE - 10-08-2015, 10:27 PM
RE: [WEB] Show plugin permissions - by xoft - 10-08-2015, 11:08 PM
RE: [WEB] Show plugin permissions - by NiLSPACE - 10-09-2015, 12:22 AM
RE: [WEB] Show plugin permissions - by JonnyBoy0719 - 10-09-2015, 12:26 AM
RE: [WEB] Show plugin permissions - by NiLSPACE - 10-13-2015, 05:28 PM
RE: [WEB] Show plugin permissions - by chrobione - 12-11-2015, 10:56 AM
RE: [WEB] Show plugin permissions - by chrobione - 12-11-2015, 06:11 PM



Users browsing this thread: 1 Guest(s)