Adblock breaks this site

dual logging..help plx?

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

  1. Thebombdotorg

    Thebombdotorg Guru
    Banned

    Joined:
    Mar 23, 2007
    Posts:
    1,020
    Referrals:
    1
    Sythe Gold:
    5
    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
     
  2. speljohan

    speljohan Guru
    Visual Basic Programmers

    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0
    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.
     
  3. Thebombdotorg

    Thebombdotorg Guru
    Banned

    Joined:
    Mar 23, 2007
    Posts:
    1,020
    Referrals:
    1
    Sythe Gold:
    5
    dual logging..help plx?

    where do i put the code into?
     
  4. speljohan

    speljohan Guru
    Visual Basic Programmers

    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0
    dual logging..help plx?

    whenever you wish to remove the files. In a timer would be a good place.
     
  5. Thebombdotorg

    Thebombdotorg Guru
    Banned

    Joined:
    Mar 23, 2007
    Posts:
    1,020
    Referrals:
    1
    Sythe Gold:
    5
    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..
     
  6. speljohan

    speljohan Guru
    Visual Basic Programmers

    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0
    dual logging..help plx?

    if you don't understand that i suggest you learn more about Visual Basic. Google "Using Timers" or something.
     
  7. Thebombdotorg

    Thebombdotorg Guru
    Banned

    Joined:
    Mar 23, 2007
    Posts:
    1,020
    Referrals:
    1
    Sythe Gold:
    5
    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?
     
  8. brooks_mcclintock

    brooks_mcclintock Guest

    Referrals:
    0
    dual logging..help plx?

    leecher plx0rz lol?
     
  9. timk777

    timk777 Active Member

    Joined:
    Feb 19, 2007
    Posts:
    156
    Referrals:
    0
    Sythe Gold:
    0
    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
    
     
  10. Draguer

    Draguer Guest

    Referrals:
    0
    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.
     
  11. vbcoderx

    vbcoderx Guest

    Referrals:
    0
    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
     
  12. Cruel__Machine

    Cruel__Machine Guest

    Referrals:
    100
    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.
     
  13. Covey

    Covey Creator of EliteSwitch
    Retired Sectional Moderator Visual Basic Programmers

    Joined:
    Sep 9, 2005
    Posts:
    4,510
    Referrals:
    9
    Sythe Gold:
    9
    Discord Unique ID:
    807246764155338833
    Discord Username:
    Covey#1816
    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"
     
  14. Cruel__Machine

    Cruel__Machine Guest

    Referrals:
    100
    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)
     
  15. Darthatron

    Darthatron Massive Troll
    Retired Sectional Moderator Visual Basic Programmers

    Joined:
    May 22, 2006
    Posts:
    1,612
    Referrals:
    3
    Sythe Gold:
    0
    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!
     
  16. ViruZ3

    ViruZ3 Member

    Joined:
    May 21, 2007
    Posts:
    55
    Referrals:
    0
    Sythe Gold:
    0
    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 >


 
 
Adblock breaks this site