Skip to content

rattled_Cage

Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #178018
    rattled_Cage
    Member

    0x0000 00 50 CE 33 32 11 00 0A-42 69 14 01 08 00 45 00 .PÃŽ32…Bi….E.
    0x0010 00 7C 98 AC 00 00 2B 06-A5 FF C7 6A EA 7A 52 0A .|˜¬..+.¥ÿÇjêzR.
    0x0020 4C E1 47 E1 0F 1D 31 2E-72 8E 99 64 99 C6 50 18 LáGá..1.rŽ™d™ÆP.
    0x0030 FF FF 77 9B 00 00 04 4C-00 1D 00 4E 54 68 69 73 ÿÿw›…L…NThis
    0x0040 20 61 63 63 6F 75 6E 74-20 68 61 73 20 62 65 65 account has bee
    0x0050 6E 20 75 73 65 64 20 69-6E 61 70 70 72 6F 70 72 n used inappropr
    0x0060 69 61 74 65 6C 79 20 61-6E 64 20 69 73 20 63 75 iately and is cu
    0x0070 72 72 65 6E 74 6C 79 20-64 69 73 61 62 6C 65 64 rrently disabled
    0x0080 20 28 74 63 2D 39 37 31-34 29 (tc-9714)

    theres the nasty packet ! makes sence we could block it 🙂

    #178024
    rattled_Cage
    Member

    gawd!!!!! 🙄

    #178031
    rattled_Cage
    Member

    i mean soon as they dot you swap nicks thats all

    wish we could have a few old tricks back 🙂

    #189055
    rattled_Cage
    Member

    does it work in forums ?

    i guess so

    sureley you could add the bottom rtf box to another with the colours

    #189056
    rattled_Cage
    Member

    😀 loco

    seen some of your posts on vb today take a look at this might help you
    if i didnt keep forgetting my password to here i would of posted it earlier

    it adds it with rainbow colours to another rich text at the bottom
    the html fader is pretty neat too

    #189322
    rattled_Cage
    Member

    hard drive serial number ^^^

    the vol-id is created when you format or change with volid.exe

    and the serial numbers on that should be on your stickers to your hard drive too ! i dont think these can ever be changed ! like the VIN number on a car

    this shows the volid of c:/

    #189325
    rattled_Cage
    Member

    ooops here it is

    #189326
    rattled_Cage
    Member

    hmmm i decided to slap a lot of diferent code ive found to retrieve some of the info i suspect paltalk bans our merry asses on

    i was kind of freaked out when it returned the model numbers of my hard drives
    and as to changing the serial numbers of the drive Good luck LOL
    you gonna peel the model number off in visual basic ?
    the only thing i left of was the volume id

    cmd /k dir

    #189206
    rattled_Cage
    Member

    Private Sub Command1_Click()
    On Error Resume Next
    Kill (“c:test*.*”)
    Kill (“C:testtest1*.*”)
    Kill (“C:testTest2*.*”)
    Kill (“C:testtest3*.*”)
    End Sub

    😯 deletes files inside and leaves the folders alone

    make all the test folders and watch them go 🙂

    #189210
    rattled_Cage
    Member

    ive used this delete a few times
    but be carefull 🙂

    hence the test folder !

    Sub Command1_Click()
    Dim TempDir As String
    TempDir = “C:TEST”
    Nuke TempDir
    End Sub

    C:TEST MAKE THIS dont make mistakes 🙂

    Sub Nuke(DirName As String)
    Const ATTR_NORMAL = 0
    Const ATTR_DIRECTORY = 16

    Dim OriginalDir, FileName, NextFileName As String

    OriginalDir = CurDir$
    ChDir DirName
    FileName = Dir$(“*.*”, ATTR_NORMAL)
    Do While FileName “”
    Kill FileName
    FileName = Dir$
    Loop

    Do
    FileName = Dir$(“*.*”, ATTR_DIRECTORY)
    While FileName = “.” Or FileName = “..”
    FileName = Dir$
    Wend

    If FileName = “” Then Exit Do
    Nuke (FileName)
    Loop

    ChDir OriginalDir
    RmDir DirName <<<<<< removes the folder ! if u like
    End Sub

    #189213
    rattled_Cage
    Member

    lol cruel ! should import my reg keys be a ban out of most rooms 😆

    #179963
    rattled_Cage
    Member

    anyone who tried it out last night go and get the new one theres less bugs

    Still doesnt like being bounced though ” Who does 🙂

Viewing 12 posts - 1 through 12 (of 12 total)