Author Topic: No-Clip Add-on  (Read 595 times)

There was a Add-on out like 2 years ago that I believe monk made, I cannot find it no matter how hard I try and I rlly need it.

There was a Add-on out like 2 years ago that I believe monk made, I cannot find it no matter how hard I try and I rlly need it.
Here you are :D http://orbs.daprogs.com/rtb/forum.returntoblockland.com/dlm/viewFile3220.html?id=5136

Here you are :D http://orbs.daprogs.com/rtb/forum.returntoblockland.com/dlm/viewFile3220.html?id=5136
Download button seems broken to me

This should work
Code: server.cs (18 lines)
function serverCmdNoClip(%client)
{
   if(!isObject(%player = %client.player) || %player.getState() $= "dead")
    {
       %client.chatMessage("You are dead!");
       return;
    }

   //This shouldn't ever happen, hopefully
   if(!isObject(%camera = %client.camera))
    {
       %client.chatMessage("You don't have a camera!");
       return;
    }

   %client.chatMessage("\c6NoClip toggled!");
   %camera.mountObject(%player, 0);
}