I see multiple subscriptions are listed through a freewebs site how can I achieve this?
Printable View
I see multiple subscriptions are listed through a freewebs site how can I achieve this?
Pretty simple actually.
Register on Freewebs.
Please credit me with enough intelligence to create a site. I can't find a way to host my .xml as a document in it's own right....
1. Get basic understanding of how a subscription .xml file is set up.
2. Make blank text file.
3. Write subscription in blank text file, save as .xml file.
4. Upload to freewebs site.
5. Duh.
The syntax of the subscription is like this
Code:<?xml version="1.0" encoding="UTF-8"?>
<subscription>
<name>[Subscription Name]</name>
<note/>
<codelist>
<name>[1st codelist name]</name>
<game>
<name>[1st Game name]</name>
<gameid>[1st Game ID]</gameid>
<date>[1st Updated when?]</date>
<cheat>
<name>[cheat game #1 code #1 name]</name>
<codes>[cheat game #1 code #1 name]</codes>
</cheat>
<cheat>
<name>[cheat game #1 code #2 name]</name>
<codes>[cheat game #1 code #2 code]</codes>
</cheat>
</game>
<game>
<name>[2nd Game name]</name>
<gameid>[2nd Game ID]</gameid>
<date>[2nd Updated when?]</date>
<cheat>
<name>[cheat game #2 code #1 name]</name>
<codes>[cheat game #2 code #1 name]</codes>
</cheat>
<cheat>
<name>[cheat game #2 code #2 name]</name>
<codes>[cheat game #2 code #2 code]</codes>
</cheat>
</game>
</codelist>
</subscription>
I worked out afterwards how to link it.Quote:
Originally Posted by Vash
I just missed out 1 line of code when I wrote it :S