1. I done searched and searched and Its Killing my eyes to many white backgrounds.. and post not related to Rust Any help will be greatly appreciated.. just a Simple Command From script Like Send.Console.Command("TheCommand");


    Solved I just typed how i would want the command and it worked done what it was apost to when script was fired.. " server.Command("TheCommand");
     
    Last edited by a moderator: Apr 9, 2018
  2. To run a console command on a players client
    Code:
    player.SendConsoleCommand
    To run a console command from the server
    Code:
    rust.RunServerCommand
     
  3. Wulf

    Wulf Community Admin

    The universal method as a CovalencePlugin:
    Code:
    server.Command("command here")
    The universal method as a RustPlugin:
    Code:
    covalence.Server.Command("command here")
    Also keep in mind that running commands on a client with player.SendConsoleCommand is very limited.

    If you mean an external script (not a plugin), you'd have to use RCON or some form of macro for that.
     
  4. Sorry didnt realize anyone responded that fast ++ boys thanks Wulf your first Response was it thanks.. for the quick response i was about to lose my shit..