Jump to content
The forums have been upgraded and will be undergoing changes within the next 48 hours.

Featured Replies

I'm making a CDLC and a certain note/double stop is giving me a problem. Here is the tab, with the offending notes circled:

 

http://i.imgur.com/19fNKUE.png

 

The problem is the plucked note on the 16th fret, 1st string. I have this exact phrase 3 times in my chart, but in-game, it strangely only shows the 2nd time. In the 1st and 3rd times, the note head doesn't show.

 

This picture should show what I mean: 

 

http://i.imgur.com/emeyP79.jpg

 

On the top is the 1st time. The note head is clearly missing, but the RR missed note exclamation mark is there. The bottom shows the 2nd time, with the note correctly displayed.

 

I checked the .xml file and the notes all seem to be the same:

        <note time="193.181" linkNext="1" accent="0" bend="0" fret="15" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="-1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="16" string="3" sustain="0.211" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        <note time="193.392" linkNext="0" accent="0" bend="0" fret="16" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="-1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="3" sustain="0" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        <note time="193.392" linkNext="0" accent="0" bend="0" fret="16" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="-1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="5" sustain="0" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        <note time="199.942" linkNext="1" accent="0" bend="0" fret="15" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="-1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="16" string="3" sustain="0.211" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        <note time="200.153" linkNext="0" accent="0" bend="0" fret="16" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="-1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="3" sustain="0" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        <note time="200.153" linkNext="0" accent="0" bend="0" fret="16" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="-1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="5" sustain="0" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        <note time="206.702" linkNext="1" accent="0" bend="0" fret="15" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="-1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="16" string="3" sustain="0.211" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        <note time="206.913" linkNext="0" accent="0" bend="0" fret="16" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="-1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="3" sustain="0" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />
        <note time="206.913" linkNext="0" accent="0" bend="0" fret="16" hammerOn="0" harmonic="0" hopo="0" ignore="0" leftHand="-1" mute="0" palmMute="0" pluck="-1" pullOff="0" slap="-1" slideTo="-1" string="5" sustain="0" tremolo="0" harmonicPinch="0" pickDirection="0" rightHand="-1" slideUnpitchTo="-1" tap="0" vibrato="0" />

What could I be missing?

Solved by firekorn

Go to solution
  • Administrator

The note head isn't displayed because of the linknext status on the note before.

 

If you want the player to pick both note, then simply get rid of the linknext status, if you want the player to only play the high E while letting rind the G string, it gets a bit more tricky to explain but you'll need to slightly offset the 16G so that EOF don't consider the whole as a chord.

 

Side note : are you sure about that 12B? it could be played as 16G which would be way easier to play imo.

Firekorn's workshop
In Flames Discography

#FirekornHasDoneNothingForTheCommunity

  • Author

The note head isn't displayed because of the linknext status on the note before.

 

If you want the player to pick both note, then simply get rid of the linknext status, if you want the player to only play the high E while letting rind the G string, it gets a bit more tricky to explain but you'll need to slightly offset the 16G so that EOF don't consider the whole as a chord.

 

Side note : are you sure about that 12B? it could be played as 16G which would be way easier to play imo.

 

Okay, I'll do that, but is there any explanation as to why it shows the 2nd time? Since everything is the same.

 

I tabbed 12B to give it that subtle arpeggio sound, and I think that's the way the artist plays it. Though the player could definitely play it as 16G if they prefer.

  • Administrator
  • Solution

The second time it doesn't happen because (i guess) the chord is on the next section which cause the game to break any linknext status and show the chord as picked no matter what.

Firekorn's workshop
In Flames Discography

#FirekornHasDoneNothingForTheCommunity

  • Author

The second time it doesn't happen because (i guess) the chord is on the next section which cause the game to break any linknext status and show the chord as picked no matter what.

 

Oh, I see! Thanks for the help!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Recently Browsing 0

  • No registered users viewing this page.


Important Information

By using this site, you agree to our Guidelines. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. - Privacy Policy

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.