Results 1 to 5 of 5

Thread: Small program to switch your UID's

  1. #1
    Join Date
    Oct 2006
    Posts
    412
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Small program to switch your UID's

    I wrote a program that allows you to switch your UID's in one click. It was written in AutoIT3, and can be decompiled if anyone is interested in the code.

    To use follow the below directions.
    1) COPY the uid that your main uses to C:\WINDOWS\.file_store_32 saved as uid.dat
    2) Run the RS UID Switcher and click the first button "SAVE Main's UID and LOAD Auto's UID"
    3) Then COPY the UID your auto's use to C:\WINDOWS\.file_store_32 and save it as uid.dat (saving over the main's uid.dat)
    4) Click the second button "SAVE Auto's UID and LOAD Main's UID"
    5) Your UID's will be all set up with your Main as the current UID. You can close the RS UID Switcher (or load in your Auto's UID first).
    6) Now whenever you want to auto, or play your main, just run the RS UID Switcher and click the approiate button.

    How the Program works:
    It creates the directory C:\Runescape UIDs
    Then it copies your current UID, and loads your alternate UID.
    All you have to do is remember which UID is currently in C:\WINDOWS\.file_store_32
    A good practice is to always have the auto loaded, switch to your main uid when you want to play your main, and switch back to your auot's UID when your done. This way you wont forget which is which, and accidently overwrite your main's UID with your autos. (You can also copy the UIDMAIN.dat in the C:\Runescape UIDs folder occasionally to make a backup, or if you forget which uid you have loaded and repeat the above 6 steps.)

    If anyone likes, please +rep

  2. #2
    Join Date
    Oct 2006
    Location
    I'm a figment of your imagination
    Posts
    422
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Awesome proggy! I've actually wanted to create something like that in Scar, but now that you've got that... It may become useless .

    Nice!

    It's been a while... but I'm BACK!!!

  3. #3
    Join Date
    Oct 2006
    Posts
    412
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yay! Glad it could be of some use. Thanks for the reply
    I couldn't figure out how to write one in scar, because i was looking through the file functions and it didn't appear that it was able to copy files. AutoIT is a lot more powerful overall.

  4. #4
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    wonderful everyone always talks about making these but never does!
    i dont really know who you are so idk if its safe yet (sry im paraniod) ill wait for a few more careless noobs to use it. then ill try it out =) Great prog!

  5. #5
    Join Date
    Oct 2006
    Posts
    412
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well if you still want to try it out, just download autoIT, http://www.autoitscript.com/autoit3/ and compile the following into an exe for easy use. If you like, please +rep

    Code:
    If not(FileExists("C:\Runescape UIDs")) Then
    	DirCreate("C:\Runescape UIDs")
    EndIf
    
    
    
    #region 
    
    #include <GuiConstants.au3>
    
    
    GuiCreate("RS UID Switcher", 314, 120,(@DesktopWidth-314)/2, (@DesktopHeight-243)/2 , $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS)
    
    $Button_1 = GuiCtrlCreateButton("SAVE Main's UID and LOAD Auto's UID", 10, 10, 290, 40)
    $Button_2 = GuiCtrlCreateButton("SAVE Auto's UID and LOAD Main's UID", 10, 60, 290, 40)
    
    GuiSetState()
    While 1
    	$msg = GuiGetMsg()
    	Select
    	Case $msg = $Button_1
    		FileCopy("C:\WINDOWS\.file_store_32\uid.dat","C:\Runescape UIDs\uidmain.dat",1)
    		FileCopy("C:\Runescape UIDs\uidauto.dat","C:\WINDOWS\.file_store_32\uid.dat",1)
    		
    	Case $msg = $Button_2
    		FileCopy("C:\WINDOWS\.file_store_32\uid.dat","C:\Runescape UIDs\uidauto.dat",1)
    		FileCopy("C:\Runescape UIDs\uidmain.dat","C:\WINDOWS\.file_store_32\uid.dat",1)
    	Case $msg = $GUI_EVENT_CLOSE
    		ExitLoop
    	Case Else
    		;;;
    	EndSelect
    WEnd
    Exit
    #endregion

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Quick switch
    By rotwyla98 in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 01-10-2009, 11:56 PM
  2. Delete ALL uid's nomatter what folder!
    By R0b0t1 in forum RuneScape News and General
    Replies: 5
    Last Post: 05-24-2007, 06:09 PM
  3. UID's With Vista
    By lordsaturn in forum Bot Information and Spottings
    Replies: 9
    Last Post: 05-13-2007, 12:20 AM
  4. Help With UID's Please!!!
    By lordsaturn in forum News and General
    Replies: 6
    Last Post: 04-27-2007, 05:55 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •