B2S events

Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #57275
    HauntFreaks
    Moderator
      @hauntfreaks
      vipContributorMember

      when an original table is built…. and the builder has added b2s events into the script, say like a sling hit makes a bulb on the b2s light, can someone show what that section of code looks like??   :scratch:

      #57276
      randr
      Keymaster
        @randr
        ModeratorMember

        look at humpty table

         

        ********************************************************
        Messing with the VPinball app and push notifications.
        So if you haven't downloaded app yet what are you waiting for!?
        for IOS and Android

        ********************************************************

        #57277
        Thalamus
        Moderator
          @thalamus
          ContributorMemberModerator

          I expect that diablo by jp/scottywic and stats’ b2s is also good examples.

          #57278
          HauntFreaks
          Moderator
            @hauntfreaks
            vipContributorMember

            well I was looking in the minions table… and for the life of me I cant see it… I’m still clueless with most of this code crap….
            I’ll look in those as well….

            #57279
            Thalamus
            Moderator
              @thalamus
              ContributorMemberModerator

              Well – both stat and randr are nice guys – just ask ;)

              #57280
              HauntFreaks
              Moderator
                @hauntfreaks
                vipContributorMember

                fuck them…..

                LOL…LOL…LOL…

                1 user thanked author for this post.
                #57282
                randr
                Keymaster
                  @randr
                  ModeratorMember

                  fuck them….. LOL…LOL…LOL…

                  i’m so offended!  :cry:

                  ********************************************************
                  Messing with the VPinball app and push notifications.
                  So if you haven't downloaded app yet what are you waiting for!?
                  for IOS and Android

                  ********************************************************

                  #57286
                  HauntFreaks
                  Moderator
                    @hauntfreaks
                    vipContributorMember

                    so the triggers in the b2s have specific names…. I don’t see these names in the table script…

                    #57287
                    randr
                    Keymaster
                      @randr
                      ModeratorMember

                      look at my dof test table that is as simple as it can be shown. im mobile so hard to do on phone

                       

                      ********************************************************
                      Messing with the VPinball app and push notifications.
                      So if you haven't downloaded app yet what are you waiting for!?
                      for IOS and Android

                      ********************************************************

                      #57288
                      BorgDog
                      Participant
                        @borgdog
                        MemberContributorvip

                        so the triggers in the b2s have specific names…. I don’t see these names in the table script…

                        I think the “Lamp name” in the b2s are just for things like animations in the b2s.  The calls from the table are based on the “B2S ID”.

                        I think…

                        #57289
                        HauntFreaks
                        Moderator
                          @hauntfreaks
                          vipContributorMember

                          so the triggers in the b2s have specific names…. I don’t see these names in the table script…

                          I think the “Lamp name” in the b2s are just for things like animations in the b2s. The calls from the table are based on the “B2S ID”. I think…

                          yeah I agree with this… but these are for sure not using the ID on any of the lamps
                          this is an example of one of the lamps….. does anyone know if STAT did the dof b2s calls in minions??
                          Capture-2

                          Attachments:
                          #57292
                          randr
                          Keymaster
                            @randr
                            ModeratorMember

                            Not sure who did the b2s what you trying to do?

                            ********************************************************
                            Messing with the VPinball app and push notifications.
                            So if you haven't downloaded app yet what are you waiting for!?
                            for IOS and Android

                            ********************************************************

                            #57293
                            HauntFreaks
                            Moderator
                              @hauntfreaks
                              vipContributorMember

                              I want add more events to the b2s…. I made some new animations and don’t want to disturb the existing events…

                              #57295
                              randr
                              Keymaster
                                @randr
                                ModeratorMember

                                where is this table? vpf?

                                 

                                ********************************************************
                                Messing with the VPinball app and push notifications.
                                So if you haven't downloaded app yet what are you waiting for!?
                                for IOS and Android

                                ********************************************************

                                #57318
                                HauntFreaks
                                Moderator
                                  @hauntfreaks
                                  vipContributorMember

                                  ok…. the big dummy figured it out with randr holding my hand….
                                  and Dan was right… its using animation ID’s I was looking at the lamps themselves….
                                  so now I see the calls…
                                  startB2S(3)  <—3 being the animation call

                                  #57319
                                  Thalamus
                                  Moderator
                                    @thalamus
                                    ContributorMemberModerator

                                    … and here we go – another hautfreaks surprise commin’ up !

                                    Love this community !

                                    #57322
                                    randr
                                    Keymaster
                                      @randr
                                      ModeratorMember

                                      ok…. the big dummy figured it out with randr holding my hand…. and Dan was right… its using animation ID’s I was looking at the lamps themselves…. so now I see the calls… startB2S(3) <—3 being the animation call

                                      Thats what I said ?

                                      ********************************************************
                                      Messing with the VPinball app and push notifications.
                                      So if you haven't downloaded app yet what are you waiting for!?
                                      for IOS and Android

                                      ********************************************************

                                      #57328
                                      HauntFreaks
                                      Moderator
                                        @hauntfreaks
                                        vipContributorMember

                                        ok here’s my next issue…. when i set a b2s event to a hit target…. the event only works the first time the target is hit, after that if the target is hit the event doesn’t happen
                                        I also did this for the drain, and only the first ball that drains triggers the event, nothing after that
                                        example of script:
                                        sub T3_hit()
                                        startB2S(10)
                                        DOF 124, DOFPulse
                                        playsound “FX01”
                                        if Lightlock3.state = 0 and ballsonplayfield = 1 and WIZARD.state = 0 then
                                        Lightlock3.state = 1
                                        checkforlock()
                                        end if
                                        end sub

                                        #57329
                                        randr
                                        Keymaster
                                          @randr
                                          ModeratorMember

                                          Set event zero at top part of script ?

                                          ********************************************************
                                          Messing with the VPinball app and push notifications.
                                          So if you haven't downloaded app yet what are you waiting for!?
                                          for IOS and Android

                                          ********************************************************

                                          #57342
                                          HauntFreaks
                                          Moderator
                                            @hauntfreaks
                                            vipContributorMember

                                            ok… looks like its all worked out…. thanks papa randr

                                            Sub startB2S(aB2S)
                                            If B2SOn Then
                                            Controller.B2SSetData 1,0
                                            Controller.B2SSetData 2,0
                                            Controller.B2SSetData 3,0
                                            Controller.B2SSetData 4,0
                                            Controller.B2SSetData 5,0
                                            Controller.B2SSetData 6,0
                                            Controller.B2SSetData 7,0
                                            Controller.B2SSetData 8,0
                                            Controller.B2SSetData 9,0
                                            Controller.B2SSetData 10,0
                                            Controller.B2SSetData 11,0
                                            Controller.B2SSetData 12,0
                                            Controller.B2SSetData aB2S,1
                                            End If
                                            End Sub

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

                                          Forums are currently locked.

                                          ©2024 VPinBall.com

                                          Log in with your credentials

                                          Forgot your details?