From ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5 Mon Sep 17 00:00:00 2001 From: faketruth Date: Wed, 11 Apr 2012 12:16:13 +0000 Subject: Moved the commands /coords /viewdistance and /regeneratechunks from cServer.cpp to the Core plugin git-svn-id: http://mc-server.googlecode.com/svn/trunk@457 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- Plugins/Core/viewdistance.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Plugins/Core/viewdistance.lua (limited to 'Plugins/Core/viewdistance.lua') diff --git a/Plugins/Core/viewdistance.lua b/Plugins/Core/viewdistance.lua new file mode 100644 index 000000000..43d2a7de8 --- /dev/null +++ b/Plugins/Core/viewdistance.lua @@ -0,0 +1,10 @@ +function HandleViewDistanceCommand( Split, Player ) + if( #Split ~= 2 ) then + Player:SendMessage( cChatColor.Green .. "Usage: /viewdistance [".. cClientHandle.MIN_VIEW_DISTANCE .."-".. cClientHandle.MAX_VIEW_DISTANCE .."]" ) + return true + end + + Player:GetClientHandle():SetViewDistance( Split[2] ) + Player:SendMessage(cChatColor.Green .. "Your viewdistance has been set to " .. Player:GetClientHandle():GetViewDistance() ) + return true +end \ No newline at end of file -- cgit v1.2.3