Arcade Prehacks

Results 1 to 2 of 2

Thread: Trainer Help

  1. #1

    Join Date
    Jan 2010
    Posts
    11

    Trainer Help

    Hello I was wondering how do you freeze the value in a trainer? For Example you select 100 hp or w.e in the trainer and you want it to keep at that amount what do you do? o__o

  2. #2
    Senior Member
    Join Date
    Oct 2008
    Location
    Having a rave in the UK!
    Posts
    1,706

    Re: Trainer Help

    You need to either use a loop, like this, for example...(VB 200 (Inside the Form1.Load event)

    Code:
    Do Until 1=2
    AxShockwaveFlash1.SetVariable("_root.hp", 999999)
    Loop
    Or a timer...(VB 200 (Inside the Timer1.Tick event)

    Code:
    AxShockwaveFlash1.SetVariable("_root.hp", 999999)
    Hope it helped! If not, comment.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •