5E Character Create Playlist
Page 4 of 14 First ... 23456 ... Last
  1. #31
    Wow, that was painless, now I just need to figure out how to use Par5e for the rest of it.

  2. #32
    hawkwind's Avatar
    Join Date
    Oct 2012
    Location
    London Calling
    Posts
    2,595
    I had a problem parsing the equipment, PAR5E doesn't like fractions and prefers decimals

  3. #33
    Valeros, they released an update. All you have to do is change in your xslt transform to make <class>reference_npc</class> into <class>npc</class>. They just removed that reference_npc or something.

    They also added a separate <legendaryactions> grouping just like <actions> and <reactions>

    my transform for the index part looks like the below
    Code:
    <npcIndex>
    		<index>
    				<xsl:for-each select="root/Monster">
    					<xsl:element name="{translate(./Name,' ,:()/\+-','')}">
    						<listlink type="windowreference">
    							<class>npc</class>
    							<recordname>npc.Descriptions.<xsl:value-of select="translate(./Name,' ,:()/\+-','')"/>@5E Monsters MM</recordname>
    						</listlink>		
    						<name type="string"><xsl:value-of select="translate(./Name,',:()/\+-','')"/></name>
    					</xsl:element>
    				</xsl:for-each>
    	 	</index>
    	</npcIndex>

  4. #34
    What file do I have to modify to fix the reference_npc error mentioned above? What is xslt transform?

    Attachment 7405
    Last edited by frogczar; September 9th, 2014 at 14:09.

  5. #35
    Quote Originally Posted by Unahim View Post
    Doesn't seem to be working for me. When I press the button I get an exception error with the following details:

    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.

    ************** Exception Text **************
    System.TypeLoadException: Could not load type 'System.Runtime.CompilerServices.IAsyncStateMachin e' from assembly 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.
    at PDFReader.Form1.ShowFileDialog()
    at PDFReader.Form1.selectFileButton_Click(Object sender, EventArgs e)
    at System.Windows.Forms.Button.OnMouseUp(MouseEventAr gs mevent)
    at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
    at System.Windows.Forms.Control.WndProc(Message& m)
    at System.Windows.Forms.ButtonBase.WndProc(Message& m)
    at System.Windows.Forms.Button.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


    ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1022 (RTMGDR.030319-1000)
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
    ----------------------------------------
    PDFReader
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/RPG%20Books/D%26D%20Next/Basic%20Rules%20Parser.exe
    ----------------------------------------
    System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1002 built by: RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    ----------------------------------------
    System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1001 built by: RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    ----------------------------------------
    System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.0.30319.1001 built by: RTMGDR
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
    ----------------------------------------

    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.

    For example:

    <configuration>
    <system.windows.forms jitDebugging="true" />
    </configuration>

    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    Does the same thing with me. I tried it on two separate computers and installed .NET 4.5.2 on both of them.

  6. #36
    Trenloe's Avatar
    Join Date
    May 2011
    Location
    Colorado, USA
    Posts
    33,413
    Quote Originally Posted by 5tra7 View Post
    Does the same thing with me. I tried it on two separate computers and installed .NET 4.5.2 on both of them.
    What version is listed in the errors you're seeing? The post above lists "Version=4.0.0.0" which won't work.
    Private Messages: My inbox is forever filling up with PMs. Please don't send me PMs unless they are actually private/personal messages. General FG questions should be asked in the forums - don't be afraid, the FG community don't bite and you're giving everyone the chance to respond and learn!

  7. #37
    Quote Originally Posted by Trenloe View Post
    What version is listed in the errors you're seeing? The post above lists "Version=4.0.0.0" which won't work.
    The funny thing is that the error lists version 4.0, but when I tried to install the 4.5 .NET version linked in this thread I got message that I already had that installed. Then I googled "4.5 .net" and found 4.5.2 that I installed but I still get the same error message when trying to parse.

  8. #38

    Join Date
    Mar 2006
    Location
    Arkansas
    Posts
    7,402
    Did you try running Window's Update after the install? The install version is likely old.

  9. #39
    I now did the Window's update but the same problem still exists..

  10. #40
    Trenloe's Avatar
    Join Date
    May 2011
    Location
    Colorado, USA
    Posts
    33,413
    Quote Originally Posted by 5tra7 View Post
    I now did the Window's update but the same problem still exists..
    Do you have an option to uninstall Microsoft .NET Framework 4.0 in Windows Control Panel -> Programs and Features? If so, try uninstalling that.
    Private Messages: My inbox is forever filling up with PMs. Please don't send me PMs unless they are actually private/personal messages. General FG questions should be asked in the forums - don't be afraid, the FG community don't bite and you're giving everyone the chance to respond and learn!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Log in

Log in