Can you make that into events? so that when a brick is clicked the player can no longer drop items?
In what case would this be abusive in a server?Anyhow, a lot of events are possible abusive, but that shouldn't stop you from making events that could be useful for people.
This has been made before. I think it was by Kalphiter.Use the search tool before suggesting things, people.
tezuni also made one
function serverCmdToggleDropping(%client){ if(!(%client.isAdmin || %client.isSuperAdmin)) return; $Pref::Server::DropDisabled = !$Pref::Server::DropDisabled; if(!$Pref::Server::DropShowAdmin) return; %msg = ($Pref::Server::DropDisabled ? "\c6" @ %client.getPlayerName() @ "\c0 has disabled item dropping." : "\c6" @ %client.getPlayerName() @ "\c0 has enabled item dropping."); messageAll('', %msg);}function onDroppingChanged(%old, %new){ if(!$Pref::Server::DropShowAdmin) return; %msg = (%new ? "Item dropping has been disabled through RTB prefs." : "Item dropping has been enabled through RTB prefs."); messageAll('', %msg);}
I did, but there was a better one a few months ago.This is the 3rd one.
Tezuni made it.ToggleToolDrop
I think mine is the most functional because you can restrict it to certain groups.