Salut à tous ! :)
J'aurais besoin de l'aide de quelques un des connaisseurs du genre ;) J'ai commencé le modding WOG il y a peu et je me suis mis en tête de faire un petit niveau d'essai. C'est alors que je me suis aperçu de plusieurs choses :
1° : WOG Editor ne sauvegarde pas le niveau en cours de création dans le répertoire 'levels' du jeu. Comment y remédier ? Si il le sauvegarde bien, en ce cas où le sauvegarde-t-il ?
2° : Malgré de nombreux essais, je ne parviens pas à ajouter un 'SignPost' (Panneau type peintre des pancartes) dans mon niveau. J'ai regardé le wiki mais je ne l'ai pas trouvé très explicite. Comment faut-il procéder ?
Merci à ceux qui prendrons le temps de répondre :)
--------------------------------------------------------------------------------------------------------------------------------------------
Hi everyone! :)
I need the help of a few expert ;) I started modding WOG ago and I just got into his head to make a small test level. Then I noticed several things:
1: WOG Editor does not save the current level of development in the 'levels' directory, how to remedy? If it saves well in this case the backup does it?
2 Despite numerous attempts, I can not add a Signpost (Control kind painter signs) in my level. I looked at the wiki but I did not find very explicit. How do I proceed?
Thank you to those who take the time to reply :)
[Sorry for my english :-X] |
helo Explain
I don't understand oyu first question. Please explain more clearly.
To add sign Create a file in merge/properties/ called text.xml.xsl. Inside this file put these lines:
<br /><xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><br /><br /> <!-- Copy everything not matched by another rule --><br /> <xsl:template match="* | comment()"><br /> <xsl:copy><br /> <xsl:copy-of select="@*"/><br /> <xsl:apply-templates/><br /> </xsl:copy><br /> </xsl:template><br /><br /> <!-- Append our strings to the end --><br /> <xsl:template match="/strings"><br /> <xsl:copy><br /> <xsl:copy-of select="@*"/><br /> <xsl:apply-templates/><br /><br /> <string id="SIGNPOST_JINGLEBALLS_1"<br /> text="Hello, I am a Sign.|This is page 2.|-the Sign Painter" /><br /><br /> </xsl:copy><br /><br /> </xsl:template><br /></xsl:transform>
then just add it to your resourse tab in wogeditor (like you do with the images) Last modified Thu, 10/29/2009 - 06:47 by Pavke |