Jump to content



Photo
- - - - -

Target Actions


  • Please log in to reply
2 replies to this topic

#1 JayJay96

JayJay96

    Enthusiast

  • Members
  • PipPipPip
  • 132 posts
  • Location:Ontario, Canada

  • Flag: Canada

  • Favorite Pinball: WipeOut

Posted 06 September 2010 - 04:39 PM

I was just wondering for the table i am working on i have a few drop targets. Is it possible to set it so that when i hit the targets down (doesnt have to be all of them) that when certain targets get dropped i could say for example Multi-ball or anything special could take place when the targets are _Hit()? tup.gif

#2 Tii

Tii

    Enthusiast

  • Banned
  • PipPipPip
  • 338 posts
  • Location:Dallas, Texas

  • Flag: ---------

  • Favorite Pinball: unknown



Posted 06 September 2010 - 07:16 PM

QUOTE (JayJay96 @ Sep 6 2010, 04:39 PM) <{POST_SNAPBACK}>
I was just wondering for the table i am working on i have a few drop targets. Is it possible to set it so that when i hit the targets down (doesnt have to be all of them) that when certain targets get dropped i could say for example Multi-ball or anything special could take place when the targets are _Hit()? tup.gif


example:

Sub bank1_Hit()
AddScore(75)
Select target (fpEventID)
target 1: bolt1.FlashForMs 1000, 80, BulbOn
target 2: bolt2.FlashForMs 1000, 80, BulbOff
target 3: light3.state=bulbblink
target 4: incrementbonus(1)
target 5: bank2.solenoidpulse
End Select
End Sub

#3 JayJay96

JayJay96

    Enthusiast

  • Members
  • PipPipPip
  • 132 posts
  • Location:Ontario, Canada

  • Flag: Canada

  • Favorite Pinball: WipeOut

Posted 10 September 2010 - 12:09 AM

QUOTE (Tii @ Sep 6 2010, 03:16 PM) <{POST_SNAPBACK}>
QUOTE (JayJay96 @ Sep 6 2010, 04:39 PM) <{POST_SNAPBACK}>
I was just wondering for the table i am working on i have a few drop targets. Is it possible to set it so that when i hit the targets down (doesnt have to be all of them) that when certain targets get dropped i could say for example Multi-ball or anything special could take place when the targets are _Hit()? tup.gif


example:

Sub bank1_Hit()
AddScore(75)
Select target (fpEventID)
target 1: bolt1.FlashForMs 1000, 80, BulbOn
target 2: bolt2.FlashForMs 1000, 80, BulbOff
target 3: light3.state=bulbblink
target 4: incrementbonus(1)
target 5: bank2.solenoidpulse
End Select
End Sub

Thankyou