1. Post #1
    BuckeyeMonkey's Avatar
    November 2013
    38 Posts
    I have put together a autohotkey script to make server administration a little easier.

    You can find it here: https://github.com/buckeyemonkey/RustAdmin

    Please read the README file for instructions.
    Reply With Quote Edit / Delete Reply Show Events Agree Agree x 2Useful Useful x 1 (list)

  2. Post #2

    November 2013
    153 Posts
    I have put together a autohotkey script to make server administration a little easier.

    You can find it here: https://github.com/buckeyemonkey/RustAdmin

    Please read the README file for instructions.

    Darkfallers and our scripts <3

  3. Post #3

    June 2011
    10 Posts
    Create Items not working for me.

  4. Post #4
    BuckeyeMonkey's Avatar
    November 2013
    38 Posts
    Could be a few things:

    1) You have to login to the admin functions manually using rcon.login first.

    2) If there are no items showing up in the window, you have to make sure item_list.txt is in the same folder as the RustAdmin.ahk file.

    3) You also have to enter your name (or the name of the player you are giving items to) exactly right in the "Player" Field at the top left of the window.

    4) Only items you click the checkbox for will be given.

    *Edit*

    5) The script expects your console to be closed. If you have it open already none of the functions will work.

  5. Post #5

    June 2011
    10 Posts
    All of them checked.

    It's something else :/

    It doesn't do like the other commands, when you click ok, it just closes.

  6. Post #6
    BuckeyeMonkey's Avatar
    November 2013
    38 Posts
    No error message or anything?

  7. Post #7

    December 2011
    12 Posts
    I'm getting the same thing, doesn't output any errors it looks like it's submitting and destroying the window before it even reads the item_list. I have 0 experience with AHK, so don't mind me haha.

    Code:
    216: Gui,5:Submit (0.08)
    217: Gui,5:Destroy (0.08)
    218: Loop,read,%AHKFiles%item_list.txt
    227: Return (2.65)
    This is all i'm getting after pressing OK, then it closes the items gui and doesn't open console or anything. Hope this helps!

    Edit: Awesome work by the way! Such a pain typing all those long commands. :)

  8. Post #8
    BuckeyeMonkey's Avatar
    November 2013
    38 Posts
    Okay, I can replicate the issue now, should have it fixed soon.

    Edited:

    Okay. Should be fixed.

    For some crazy reason this line:

    Code:
    	Loop, read, %AHKFiles%\item_list.txt

    Works in a function but not a hotkey definition.

    And this line:

    Code:
    	Loop, read, %AHKFiles%item_list.txt
    Works in a hotkey definition but not a function.

    No idea why one needs the backslash and the other doesn't work with it.

    AHK is awesome and powerful, but can be mighty weird sometimes.

  9. Post #9

    December 2011
    12 Posts
    Okay, I can replicate the issue now, should have it fixed soon.

    Edited:

    Okay. Should be fixed.

    For some crazy reason this line:

    Code:
    	Loop, read, %AHKFiles%\item_list.txt

    Works in a function but not a hotkey definition.

    And this line:

    Code:
    	Loop, read, %AHKFiles%item_list.txt
    Works in a hotkey definition but not a function.

    No idea why one needs the backslash and the other doesn't work with it.

    AHK is awesome and powerful, but can be mighty weird sometimes.
    Hmmm, that's interesting. Well, again, awesome work! Thanks so much.

  10. Post #10

  11. Post #11
    BuckeyeMonkey's Avatar
    November 2013
    38 Posts
    Did you add items to the item_list?

    The script is only setup to handle 100 items atm.

    I will update it to handle more.

    If you could post the items you added so I can add them to standard download I would appreciated it.

    Edited:

    Script can now handle 300 items in the items_list.txt file.

  12. Post #12
    Did you add items to the item_list?

    The script is only setup to handle 100 items atm.

    I will update it to handle more.

    If you could post the items you added so I can add them to standard download I would appreciated it.

    Edited:

    Script can now handle 300 items in the items_list.txt file.
    Nah I didn't add any to it. I'll try your new version.

  13. Post #13
    garrettgf's Avatar
    October 2013
    56 Posts
    Did the item creation get fixed not sure what line in the script to try and edit ?

  14. Post #14

    November 2013
    8 Posts
    Thanks for putting this together, amazing tool. Makes things much easier.

  15. Post #15
    BuckeyeMonkey's Avatar
    November 2013
    38 Posts
    Did the item creation get fixed not sure what line in the script to try and edit ?
    Just re-download the script from the same link above for the updated version.

  16. Post #16
    Dennab
    November 2013
    14 Posts
    The Rust admin window isnt showing for me at all when i press f2??? Even after i login manually with rcon.

  17. Post #17
    BuckeyeMonkey's Avatar
    November 2013
    38 Posts
    The Rust admin window isnt showing for me at all when i press f2??? Even after i login manually with rcon.
    You need too play in windowed mode. It won't be visible in full screen.

  18. Post #18
    Why waste your time with the stolen language AutoHotKey when AutoIt exists and is more powerful?

  19. Post #19
    BuckeyeMonkey's Avatar
    November 2013
    38 Posts
    Why waste your time with the stolen language AutoHotKey when AutoIt exists and is more powerful?
    Because the Xbox One is clearly better then the PS4.
    Reply With Quote Edit / Delete Reply Windows 7 United States Show Events Funny Funny x 1Winner Winner x 1 (list)

  20. Post #20
    Dennab
    November 2013
    14 Posts
    You need too play in windowed mode. It won't be visible in full screen.
    Ya I did that. I can't seem to get the admin console working with whatever I do. I didn't even know of an admin console.

  21. Post #21
    Gold Member
    krevan88's Avatar
    July 2013
    12 Posts
    Buckeye, I downloaded this, and made some changes/fixes to some things that weren't working anymore. I also added a few other things. I want to have you look at it and tell me what you think.