Cuberite Forum
Hide - Printable Version

+- Cuberite Forum (https://forum.cuberite.org)
+-- Forum: Plugins (https://forum.cuberite.org/forum-1.html)
+--- Forum: Plugin Releases (https://forum.cuberite.org/forum-2.html)
+--- Thread: Hide (/thread-802.html)



Hide - NiLSPACE - 02-15-2013

This plugin allows admins to hide themselves from their server. The server will stop broadcasting packets, so even hacked clients won't see you.

Commands

General
  • /hide - Toggles you or someone else's visible status
    Permission required: hide.hide
    The following parameter combinations are recognized:
    /hide Other player - Toggles someone else's visible status
    /hide - Toggles your visible status


Permissions
  • - hide.hide - Toggles your visible status
    • Commands affected:
      - /hide
    • Recommended groups: admins, mods
    - hide.hideother - Toggles someone else's visible status
    • Commands affected:
      - /hide
    • Recommended groups: admins

Source: https://github.com/NiLSPACE/Hide
Download: https://github.com/NiLSPACE/Hide/archive/master.zip


RE: Hide - xoft - 02-15-2013

Hide + PvP = disaster Smile
Or a vengeful admin...


RE: Hide - NiLSPACE - 02-15-2013

yes i tested if you could hit someone who is invisible and you can't but they can hit you so if you are on a server with a admin who doesn't like you then    


RE: Hide - bearbin - 02-15-2013

Lolep


RE: Hide - Taugeshtu - 02-15-2013

Nice. But it would be even better, if one could hit and collide with invisible players (via configuration somehow). Just imagine people being divided into two groups, and they can't see each other, but can hit and see other people placing and breaking blocks... Eeeevil.


RE: Hide - NiLSPACE - 02-15-2013

i don't know how to do thatTongue i now used this:
function HandleHideCommand(Player)
	if (Player:IsVisible() == false) then
		Player:SetVisible(true)
		Player:SendMessage(cChatColor.LightGreen .. "You are now visible")
	else
		Player:SetVisible(false)
		Player:SendMessage(cChatColor.Rose .. "You are now invisible")
	end
	return true
end
to make people dissapear and reappear.


RE: Hide - FakeTruth - 02-15-2013

Awesome, I wondered if that would work.
The SetVisible function was specifically created for when a player dies and his body goes *POOF*, if you don't make the player invisible then the body will always be visible :O


RE: Hide - NiLSPACE - 02-16-2013

I found another use for it Smile