added more bus bricks
This commit is contained in:
@@ -12,13 +12,22 @@ function serverCmdLST(%client, %time)
|
||||
{
|
||||
if(%client.isAdmin || %client.isSuperAdmin)
|
||||
{
|
||||
%time = mClampFloat(%time, 0, 999999);
|
||||
%time = mClampFloat(%time, 1, 10000);
|
||||
$Pref::Server::LuaLogic::OPT_TICK_TIME = %time/1000;
|
||||
messageAll('', '\c3%1\c6 has set the logic tick time to \c3%2\c6 millisecond%3.', %client.name, %time, %time == 1 ? "":"s");
|
||||
lualogic_sendoptions();
|
||||
}
|
||||
}
|
||||
|
||||
function serverCmdLSM(%client, %mult){
|
||||
if(%client.isAdmin || %client.isSuperAdmin){
|
||||
%mult = mFloor(mClamp(%mult, 1, 1000));
|
||||
$Pref::Server::LuaLogic::OPT_TICK_MULT = %mult;
|
||||
messageAll('', '\c3%1\c6 has set the logic tick multiplier to \c3%2\c6.', %client.name, %mult);
|
||||
lualogic_sendoptions();
|
||||
}
|
||||
}
|
||||
|
||||
function serverCmdLS(%client)
|
||||
{
|
||||
if(%client.isAdmin || %client.isSuperAdmin)
|
||||
|
||||
Reference in New Issue
Block a user