I can't launch World of Goo after adding my custom particles.

4 replies [Last post]
Joined: 10/03/2011

And it says "World of Goo has stopped working" when I try to launch it.
I only modified fx.xml.bin and resources.xml.bin.After packing it as a goomod.I found this error while I was trying to load it to WoG by Gootool.

Random user of goofans site & WoG gamer.

Maniac of osu!game now. Go MU as you want and just PM me.

Joined: 04/29/2009

Can you post the content of your addin.xml, fx.xml.xsl and resources.xml.xsl within  <code> tags?

Joined: 10/03/2011

Well I failed to turn .xml into .xsl.And it seems that I can't post the original one.I may upload them to dropbox.

Random user of goofans site & WoG gamer.

Maniac of osu!game now. Go MU as you want and just PM me.

Joined: 10/22/2009

To add particles, try to use this .xsl

<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Copy everything not matched by another rule -->
  <xsl:template match="* | comment()">
    <xsl:copy>
      <xsl:copy-of select="@*"/>
      <xsl:apply-templates/>
    </xsl:copy>
  </xsl:template>
 
  <!-- Append -->
  <xsl:template match="/effects">
    <xsl:copy>
      <xsl:copy-of select="@*"/>
      <xsl:apply-templates/>
 
      <!-- Paste your particleeffect here -->
 
    </xsl:copy>
  </xsl:template>
</xsl:transform>

Joined: 10/03/2011

Well, teach me On QQ please.

Random user of goofans site & WoG gamer.

Maniac of osu!game now. Go MU as you want and just PM me.