Results 1 to 5 of 5
  1. #1
    TheBlueMax's Avatar
    Join Date
    Sep 2007
    Posts
    124
    Reputation
    10
    Thanks
    9

    I still cant make warrock status code .

    Can someone help me with my WarRock Status code :

    Module:
    Public Function running(Warrock_fenster_4_ As String) As Boolean
    Dim hWnd As Long

    hWnd = FindWindowA(vbNullString, Warrock_fenster_4)

    If (hWnd = 0) Then
    running = False
    Else
    running = True
    End If
    End Function

    Timer?: Interval - 100

    Private Sub Timer?_Timer()
    If running("Warrock") Then
    Label1.Visible = True
    Else:
    Label2.Visible = True
    End If
    End Sub

    But i have problem with Module Code . I allways get error : Findwindow

  2. #2
    ZeaS's Avatar
    Join Date
    Feb 2007
    Posts
    738
    Reputation
    15
    Thanks
    265
    Code:
    Public Function running(Warrock_fenster_4_ As String) As Boolean
    Dim hWnd As Long
    
    hWnd = FindWindow(vbNullString, Warrock_fenster_4_)
    
    If (hWnd = 0) Then
    running = False
    Else
    running = True
    End If
    End Function
    
    Timer?: Interval - 100
    
    Private Sub Timer?_Timer()
    If running("Warrock") Then
    Label1.Visible = True
    Else:
    Label2.Visible = True
    End If
    End Sub
    use this this work your mistak

    you wrote:
    findawindowa
    right one:
    finawindow

    2. mistake:
    Warrock_fenster_4

    right one:
    Warrock_fenster_4_


    ps: you use my module?^^ because i got these string names? XD

  3. #3
    TheBlueMax's Avatar
    Join Date
    Sep 2007
    Posts
    124
    Reputation
    10
    Thanks
    9
    Public Function running(Warrock_fenster_4_ As String) As Boolean
    Dim hWnd As Long

    hWnd = FindWindow(vbNullString, Warrock_fenster_4_)

    If (hWnd = 0) Then
    running = False
    Else
    running = True
    End If
    End Function

    Timer?: Interval - 100

    Private Sub Timer?_Timer()
    If running("Warrock") Then
    Label1.Visible = True
    Else:
    Label2.Visible = True
    End If
    End Sub
    This is not working.

  4. #4
    ZeaS's Avatar
    Join Date
    Feb 2007
    Posts
    738
    Reputation
    15
    Thanks
    265
    lol am i use this

    Public Function lauf_4(Warrock_fenster_4_ As String) As Boolean
    Dim hWnd As Long

    hWnd = FindWindow(vbNullString, Warrock_fenster_4_)

    If (hWnd = 0) Then
    lauf_4 = False
    Else
    lauf_4 = True
    End If
    End Function

    'lauf_4 = running

    timer1 --> interval = 100
    If lauf_4("warrock") Then
    Label1.Visible = True
    Else: Label2.Visible = True
    End If

    set all 2 labels "visible = false" in properties

  5. #5
    pbsucks's Avatar
    Join Date
    Sep 2007
    Location
    univers
    Posts
    65
    Reputation
    10
    Thanks
    4
    If the programm gets closed again, don't you need something like:

    If lauf_4("warrock") Then
    {
    Label1.Visible = True
    Label2.Visible = False
    }

Similar Threads

  1. Warrock Retail Code Generator
    By Dave84311 in forum Hack/Release News
    Replies: 572
    Last Post: 04-14-2010, 12:51 AM
  2. cant make an account for warrock
    By b16hatch94 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 12-02-2008, 11:50 AM
  3. Help making warrock wepon trainer. Needs to be undetected
    By shadowsecret in forum WarRock - International Hacks
    Replies: 8
    Last Post: 03-23-2007, 10:04 AM
  4. Replies: 37
    Last Post: 06-20-2006, 04:24 PM