Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    panmily's Avatar
    Join Date
    Jun 2007
    Posts
    28
    Reputation
    10
    Thanks
    0

    Arrow [RELEASE] WildFire Trainer V1.0 (Undetected)

    Hey! This is my first trainer. In version 1.0 we've got:


    - Unlimited Stamina
    - NoRecoil




    Remember! This is my first trainer i'm newbie.

    Update soon




    Sorry but I learn english only

  2. #2
    pwnedgamer's Avatar
    Join Date
    May 2007
    Posts
    16
    Reputation
    10
    Thanks
    0
    does it work on new patch

  3. #3
    panmily's Avatar
    Join Date
    Jun 2007
    Posts
    28
    Reputation
    10
    Thanks
    0
    Yes it is working on new patch

  4. #4
    Silverpimp's Avatar
    Join Date
    May 2007
    Posts
    51
    Reputation
    9
    Thanks
    0
    Nice we are waiting 4 the updates.

  5. #5
    panmily's Avatar
    Join Date
    Jun 2007
    Posts
    28
    Reputation
    10
    Thanks
    0
    I will add new functions when who's tell me how add adresses
    with +

    For example:
    I've got code: Call WriteALong("WarRock", &H7DB120, 1)
    Adress is 007DB120.

    So what do when i've got adress 00896e28 +54 ??????

  6. #6
    Silverpimp's Avatar
    Join Date
    May 2007
    Posts
    51
    Reputation
    9
    Thanks
    0
    Quote Originally Posted by panmily View Post
    I will add new functions when who's tell me how add adresses
    with +

    For example:
    I've got code: Call WriteALong("WarRock", &H7DB120, 1)
    Adress is 007DB120.

    So what do when i've got adress 00896e28 +54 ??????
    I don't know, try to tell this to somebody else who created a trainer.

  7. #7
    cangri27's Avatar
    Join Date
    Apr 2007
    Posts
    12
    Reputation
    10
    Thanks
    3
    Do trainer with scope thank

  8. #8
    kyo's Avatar
    Join Date
    Dec 2005
    Location
    Belgium
    Posts
    285
    Reputation
    110
    Thanks
    131
    it works and it's undetected
    good job

  9. #9
    MS Word's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Posts
    483
    Reputation
    11
    Thanks
    2
    Quote Originally Posted by panmily View Post
    I will add new functions when who's tell me how add adresses
    with +

    For example:
    I've got code: Call WriteALong("WarRock", &H7DB120, 1)
    Adress is 007DB120.

    So what do when i've got adress 00896e28 +54 ??????

    for example at swim, you write:
    Code:
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 4)
    (4, yes 4 is used as variable to turn it on)


    to turn it off:


    Code:
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 0)


    greets

  10. #10
    panmily's Avatar
    Join Date
    Jun 2007
    Posts
    28
    Reputation
    10
    Thanks
    0
    O;] Thx Man ;]
    Do you have got winchester, adress and more? ;]

  11. #11
    robbob2006's Avatar
    Join Date
    May 2007
    Posts
    139
    Reputation
    10
    Thanks
    3
    thx mate this is gr8 for a first go. and its undetected i hear.

  12. #12
    webtijn's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    168
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by MS Word View Post
    for example at swim, you write:
    Code:
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 4)
    (4, yes 4 is used as variable to turn it on)


    to turn it off:


    Code:
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 0)
    greets
    When making my own trainer I discoverd that:
    0 = Stand
    1 = Crouch
    2 = Prone
    3 = ?
    4 = Swim
    5 = ?

    Might be usefull to know.
    Some people own, some doesn't. No mather what hack theire using.

  13. #13
    Trixiez's Avatar
    Join Date
    Feb 2007
    Gender
    male
    Posts
    261
    Reputation
    10
    Thanks
    0
    To turn it on/off you use a timer. These are equal to 1 for on & 0 for off.

    Code:
    Private Sub Command2_Click()
    Timer1.Interval = 0
    End Sub
    
    Private Sub Command3_Click()
    Timer1.Interval = 1
    End Sub
    Below is how I think it works!

    Code:
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, XXXX)
    XXXX is the value that determins how high you actually jump.

    I am pretty sure thats right. Dont quote me though as I am new to VB 6 & I can quite be wrong.

    ~TriX~
    Last edited by Trixiez; 06-07-2007 at 11:23 AM.



  14. #14
    panmily's Avatar
    Join Date
    Jun 2007
    Posts
    28
    Reputation
    10
    Thanks
    0
    Ok thx a lot Now i relased new version !! Waiting for new topic

  15. #15
    crazy4her's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Location
    Portugal
    Posts
    218
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by MS Word View Post
    for example at swim, you write:
    Code:
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 4)
    (4, yes 4 is used as variable to turn it on)


    to turn it off:


    Code:
    Dim Swim As Long
    Dim Swim1 As Long
    Call ReadALong("Warrock", &H896E28, Swim)
    Swim1 = Swim + &H54
    Call WriteALong("Warrock", Swim1, 0)


    greets
    ty that was really usefull 4 me
    [IMG]https://www.danasof*****m/sig/KEKEgotcha.jpg[/IMG]


Page 1 of 2 12 LastLast

Similar Threads

  1. [RELEASE]WarRock Trainer <WORK> Undetected
    By yogilek in forum WarRock - International Hacks
    Replies: 16
    Last Post: 09-05-2007, 08:22 PM
  2. [RELEASE] WildFire Trainer V1.4 (Undetected) !!!
    By panmily in forum WarRock - International Hacks
    Replies: 21
    Last Post: 06-08-2007, 06:44 AM
  3. [RELEASE] WildFire Trainer V1.3 NEW!! (Undetected) !!!
    By panmily in forum WarRock - International Hacks
    Replies: 29
    Last Post: 06-08-2007, 06:35 AM
  4. [RELEASE] WildFire Trainer V1.2 (Undetected) !!!
    By panmily in forum WarRock - International Hacks
    Replies: 20
    Last Post: 06-07-2007, 02:53 PM
  5. [Release] Warrock Trainer - Scope / Stamina
    By darkshinez in forum WarRock - International Hacks
    Replies: 20
    Last Post: 06-14-2006, 06:51 PM