dual logging..help plx?

Discussion in 'Archives' started by Thebombdotorg, Apr 26, 2007.

dual logging..help plx?
  1. Unread #1 - Apr 26, 2007 at 6:10 PM
  2. Thebombdotorg
    Joined:
    Mar 23, 2007
    Posts:
    1,020
    Referrals:
    1
    Sythe Gold:
    5

    Thebombdotorg Guru
    Banned

    dual logging..help plx?

    okay i saw another post about dual logging.a.nd i'm kinda new to the whole cheating thing..i always used the unsigned applet thing but its really laggy..apparently you have to delete some files or something..can someone tell em what to delete and how? sorry if its in a wrong forum...i saw another post about it here... pming me would be awesome...or my msn/aim
     
  3. Unread #2 - Apr 26, 2007 at 6:16 PM
  4. speljohan
    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0

    speljohan Guru
    Visual Basic Programmers

    dual logging..help plx?

    the files are:
    C:\windows\.file_store_32\uid.dat (or something similar to that)
    C:\windows\.jagex_cache_32\uid.dat

    just find all instances of uid.dat there and remove them.

    use:
    Code:
    Kill("C:\windows\.jagex_cache_32\uid.dat")
    Kill("C:\windows\.file_store_32\uid.dat")
    to remove them.
     
  5. Unread #3 - Apr 26, 2007 at 6:24 PM
  6. Thebombdotorg
    Joined:
    Mar 23, 2007
    Posts:
    1,020
    Referrals:
    1
    Sythe Gold:
    5

    Thebombdotorg Guru
    Banned

    dual logging..help plx?

    where do i put the code into?
     
  7. Unread #4 - Apr 26, 2007 at 6:29 PM
  8. speljohan
    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0

    speljohan Guru
    Visual Basic Programmers

    dual logging..help plx?

    whenever you wish to remove the files. In a timer would be a good place.
     
  9. Unread #5 - Apr 26, 2007 at 6:29 PM
  10. Thebombdotorg
    Joined:
    Mar 23, 2007
    Posts:
    1,020
    Referrals:
    1
    Sythe Gold:
    5

    Thebombdotorg Guru
    Banned

    dual logging..help plx?

    what? didn't understand that at all... like where do i place the code to run it or whatever to delete the files..
     
  11. Unread #6 - Apr 26, 2007 at 7:21 PM
  12. speljohan
    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0

    speljohan Guru
    Visual Basic Programmers

    dual logging..help plx?

    if you don't understand that i suggest you learn more about Visual Basic. Google "Using Timers" or something.
     
  13. Unread #7 - Apr 26, 2007 at 10:11 PM
  14. Thebombdotorg
    Joined:
    Mar 23, 2007
    Posts:
    1,020
    Referrals:
    1
    Sythe Gold:
    5

    Thebombdotorg Guru
    Banned

    dual logging..help plx?

    okay so i downloaded visual basic...i couldn't find a good tut...anyone wanna help me make a timer or whatever to delete the files i need to to dual log?
     
  15. Unread #8 - Apr 26, 2007 at 10:51 PM
  16. brooks_mcclintock
    Referrals:
    0

    brooks_mcclintock Guest

    dual logging..help plx?

    leecher plx0rz lol?
     
  17. Unread #9 - Apr 27, 2007 at 8:10 PM
  18. timk777
    Joined:
    Feb 19, 2007
    Posts:
    156
    Referrals:
    0
    Sythe Gold:
    0

    timk777 Active Member

    dual logging..help plx?

    Spammer plx0rz lol?

    -.-
    Anyway this may work.


    Code:
    Private Sub WebBrowser1_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
    On Error Resume Next
    Kill("C:\windows\.jagex_cache_32\uid.dat")
    Kill("C:\windows\.file_store_32\uid.dat")
    End Sub
    
     
  19. Unread #10 - May 11, 2007 at 2:38 PM
  20. Draguer
    Referrals:
    0

    Draguer Guest

    dual logging..help plx?

    Ok, I tried setting up a vb thing with a button that deletes them when you click it but when i click it it can't find the files.
     
  21. Unread #11 - May 11, 2007 at 5:54 PM
  22. vbcoderx
    Referrals:
    0

    vbcoderx Guest

    dual logging..help plx?

    if it gives u an error.. that usually can't find the files so, u need to add
    Code:
     on error resume next
    before you delete the files.. such as
    Code:
    public sub command1_click ()
    on error resume next
    kill "C:\Windows\.jagex_cache_32\uid.dat"
    kill "C:\Windows\.file_store_32\uid.dat"
    end sub
    edit: for a timer add a new timer, then set the interval to wut ever u want, id say somewhere in then 10000's so it doesn't do it too often and lagg ur comp
    then copy the code
    Code:
    on error resume next
    kill "C:\Windows\.jagex_cache_32\uid.dat"
    kill "C:\Windows\.file_store_32\uid.dat"
    into the timer sub
     
  23. Unread #12 - May 11, 2007 at 6:36 PM
  24. Cruel__Machine
    Referrals:
    100

    Cruel__Machine Guest

    dual logging..help plx?

    Not everyone's Windows installation is on the C:\ drive, FYI.
    And you should probably just delete 'em before switching worlds, but afterwards could be alright too, I suppose.
     
  25. Unread #13 - May 12, 2007 at 1:59 AM
  26. Covey
    Joined:
    Sep 9, 2005
    Posts:
    4,510
    Referrals:
    9
    Sythe Gold:
    9
    Discord Unique ID:
    807246764155338833
    Discord Username:
    Covey#1816

    Covey Creator of EliteSwitch
    Retired Sectional Moderator Visual Basic Programmers

    dual logging..help plx?

    no they have to be deleted before they world is loaded, if you load the world then delete them it still says "login limit exceeded"
     
  27. Unread #14 - May 12, 2007 at 5:43 AM
  28. Cruel__Machine
    Referrals:
    100

    Cruel__Machine Guest

    dual logging..help plx?

    Well, if you delete after login, you shouldn't have that problem with any following logins.
    But ya, for usability purposes, you should just delete before connecting. (since they might login without using your client and the UID files would be there)
     
  29. Unread #15 - May 12, 2007 at 10:11 AM
  30. Darthatron
    Joined:
    May 22, 2006
    Posts:
    1,612
    Referrals:
    3
    Sythe Gold:
    0

    Darthatron Massive Troll
    Retired Sectional Moderator Visual Basic Programmers

    dual logging..help plx?

    well if you want to get it to work run this program i made, it deletes the uid.dat file, then creates a new one and makes it read-only. thus you'll never have to do anything to it ever again... well in theory anyway... virus test it if you like, since nobody trusts a noob...

    link: www.darthatron.com/files32/Dual Login Enabler.zip

    peace!
     
  31. Unread #16 - May 23, 2007 at 5:53 AM
  32. ViruZ3
    Joined:
    May 21, 2007
    Posts:
    55
    Referrals:
    0
    Sythe Gold:
    0

    ViruZ3 Member

    dual logging..help plx?

    Add this to a Command Button:
    Code:
    Kill ("C:\WINDOWS\.jagex_cache_32\uid.dat")
    msgbox "Done!... Delete Successfully", vbInformation + OkOnly,"Deleted"
    
    Lol you dont have to add the msgbox but if you want to.
    Enjoy.
     
< selling lvl 68 with very good stats | buying lots of items >

Users viewing this thread
1 guest


 
 
Adblock breaks this site