<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://www.spyroforum.com/extern.php?action=feed&amp;tid=14249&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Spyro the Dragon Forums / IN NEED OF GAMESHARK CODE]]></title>
		<link>https://www.spyroforum.com/viewtopic.php?id=14249</link>
		<description><![CDATA[The most recent posts in IN NEED OF GAMESHARK CODE.]]></description>
		<lastBuildDate>Sun, 07 Dec 2014 23:54:26 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=424011#p424011</link>
			<description><![CDATA[<p>Glad you got it to work <img src="https://www.spyroforum.com/img/smilies/smile.png" width="15" height="auto" alt="smile" /></p><div class="quotebox"><cite>Agent9 wrote:</cite><blockquote><div><p>I DONT EVEN KNOW WHAT I DID I ADDED 50001109 TO D007151A AND IT JUST... WORKED???</p></div></blockquote></div><p>If you add the found offset like that you&#039;ll get the CE address from the GS one, if that&#039;s what you&#039;re getting at?<br />Also you should <strong>not</strong> keep the D0 part when you do offsets, the address is just the last 6 digits to the left of the hyphen as described above.</p><p>On a side note, if you have a more modern GS it might support these opcodes which can be quite interesting when doing moon jumps and the like:<br /><strong>10</strong> - Increments the 16-bit value at the given address by the number you supply (<em>bb cc</em> in my list above). Overflows will happen if you add enough to a 16-bit value that the resulting value exceeds what it can at most contain. This is interesting in that you can couple it with a conditional button check code and the result will be that you can continually increase the value, like Spyro&#039;s height, for as long as you press the button. Since this is a 2-byte instruction, the address must be even as usual.<br /><strong>11</strong> - Like the above but it decrements the 16-bit value instead.<br /><strong>20</strong> - Increments the 8-bit value at the given address by the supplied number. As usual, this means bb must be set to 00. Otherwise works like <strong>10</strong>; since it&#039;s a single byte instruction, the address may be odd or even.<br /><strong>21</strong> - Like the above but it decrements the 8-bit value instead.</p>]]></description>
			<author><![CDATA[dummy@example.com (Ulfbjörn)]]></author>
			<pubDate>Sun, 07 Dec 2014 23:54:26 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=424011#p424011</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423886#p423886</link>
			<description><![CDATA[<p>OH MY GOSH I CANT BELIEVE IT BUT I ACTUALLY FIGURED IT OUT THANKS SO MUCH <img src="https://www.spyroforum.com/img/smilies/tongue.png" width="15" height="auto" alt="tongue" /> :PPPPPP<br />seriously iM SO SURPRISED I GOT IT TO WORK I MEAN I DONT EVEN KNOW WHAT I DID I ADDED 50001109 TO D007151A AND IT JUST... WORKED??? IDK</p>]]></description>
			<author><![CDATA[dummy@example.com (CaptainBee)]]></author>
			<pubDate>Sat, 06 Dec 2014 05:05:00 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423886#p423886</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423878#p423878</link>
			<description><![CDATA[<div class="quotebox"><cite>Agent9 wrote:</cite><blockquote><div><p>so ive been messing with cheat engine today and found the address to spyro&#039;s height. the address is 00AC32B0 and I want to set the value to 60000 (or EA60 i think) im still not sure how to convert it into a cheat code, ive been reading through different websites and still dont get it.</p></div></blockquote></div><p>The first thing to consider is that the addresses found by CheatEngine are locations in your computer&#039;s RAM - they can be either global or relative to the currently scanned process. The addresses used by a GameShark / ActionReplay device instead refer to the Playstation&#039;s RAM, or in the case of emulation, the small area of computer memory (2 megabytes as LXShadow pointed out just above here) used to emulate it.<br />As such the two addresses will be different, however there is a constant offset between them. The easiest way to find this offset is to find one specific memory address that you know both the GameShark and the CheatEngine address entries for. The CheatEngine entry will always be significantly larger than the GameShark one due to the much larger RAM available on a personal computer and the fact that the lowermost addresses are almost certainly reserved for use by its operating system and as such cannot be used by your emulator. One important thing to note here is that the two first hexadecimal digits, or the first byte if you will, of a GameShark code is an opcode for the instruction to perform and as such isn&#039;t part of the actual address. The address is instead comprised of the six digits following the opcode and to the left of the hyphen. Not considering this it might (incorrectly) appear that the GameShark address is larger than it should be.<br />So in conclusion a GameShark instruction looks like this:</p><div class="codebox"><pre><code>xxaaaaaa - bbcc</code></pre></div><p>The xx part is the first byte and is an opcode. This determines what instruction to perform. The most commonly used ones are:<br /><strong>30</strong> - Sets the single byte at the given address to <strong>cc</strong>. Because it only sets a single byte, only cc is relevant. <strong>But</strong> in order for the instruction to be valid, bb <strong>must</strong> be set to 00.<br /><strong>80</strong> - Like the above instruction but this sets two bytes at the given address. Both bb and cc are relevant; bb is commonly the most significant byte and cc the least significant. Since the maximum unsigned value of a single byte is 255, 256 would thus be represented by <em>01 00</em>. Note that the game <em>might</em> possibly read this in either little or big endian order (which means whether bb or cc is the most significant may differ between different games). The same game should use the same endianness for all its values at least.<br /><strong>D0</strong> - Two byte conditional operation. This instruction needs to be linked with a following one (which is usually one of the memory setting instructions described above). If the value at the given address is equal to the one given in bb cc, the next instruction will be run. If it is not, the next instruction will be skipped. This can be used to only set values in certain situations such as in a certain scene, when a certain event is happening, or when a certain set of buttons are pressed on your controller.<br /><strong>E0</strong> - Identical to the above (D0) instruction, but only checks a single byte. As with the 30 instruction (or any others operating on single bytes), the bb part of the value must be set to 00.<br />Take note that this instruction is not present in all GameShark products, it seems it was added with a later release of the system.</p><p>One thing to keep in mind about instructions that use two bytes (such as 80 and D0 above) is that they can <strong>only</strong> be used with an <strong>even</strong> address. If you for example need to set two bytes at an odd address, you will have to use two 30 instructions for it. This has to do with the fact that the PSX&#039;s wordlength is 16-bits and it can therefore only access 16-bit blocks of memory. The 8-bit operations work by masking a 16-bit value, but it is not physically possible to read a value at an odd address (if you set a 8-bit value at the address 112233 for example, the whole 16-bit value at address 112232 will be read and masked together with your byte value so that its byte value at address 112232 remains unchanged).<br />Trying to set a 16-bit value at an odd address will cause your Playstation to crash.</p><br /><p>Now for the aaaaaa part, that is a 24-byte address. You should know what this is by now I guess ^^</p><p>As described above bb corresponds to the most significant byte and needs to be set to 00 when only setting / comparing 8-bit (single byte) values, and cc corresponds to the least significant byte.</p><br /><br /><p>With that out of the way, to find your GameShark (PSX RAM) address, the easiest way is to find a known GameShark code, such as the amount of gems in a level or the number of total dragon eggs. You then find the address for this same value using CheatEngine. Now you can compute the difference, that is the CheatEngine address minus the GameShark address. This difference is your address offset between the two (beware that the addresses used by CheatEngine may change between two runs if they are absolute rather than relative to your emulator process; in this case you will have to find the offset again for each time you restart your emulator). So, if you now know the CheatEngine address and want to turn it into a GameShark address, you simply subtract your calculated offset from the CheatEngine address and there it is!</p><br /><br /><div class="quotebox"><cite>Agent9 wrote:</cite><blockquote><div><p>also is there a way to set it to a certain button?</p></div></blockquote></div><p>Yes, this can be done using the D0 instruction since the PSX stores the current controller button state in a 16-bit value in RAM. I used this to trigger the skip-dialog flag in that code, the address is exactly the same. If you want to use both codes at the same time you probably want to assign your moon jump to another key however.<br />The instruction you want is thus the following:</p><div class="codebox"><pre><code>D007151A - ????</code></pre></div><p>Now for the ???? you can set this to any button on your controller, or any combination of buttons. The following are the values for the individual buttons:</p><div class="codebox"><pre><code>L1 - FBFF
L2 - FEFF
R1 - F7FF
R2 - FDFF
X  - BFFF
[] - 7FFF
/\ - EFFF
O  - DFFF
↓  - FFBF
←  - FF7F
↑  - FFEF
→  - FFDF
Start - FFF7
Select - FFFE</code></pre></div><p>Combining these values becomes a bit more complex since they are inverses. One easy way to do with without the need for logical operations is to get the inverse of the values, add them together, and then inverse the result again.<br />For example a trigger when L2 and R2 are pressed simultaneously would be 0100 + 0200 = 0300, which when inverted becomes FBFF. An even easier way might be to think of it as just subtracting the smaller value from the larger where F nybbles are left intact if they exist in all involved values (sorry, the time is 04:00 am here at the moment, I&#039;m not entirely sure if this part makes proper sense).</p><p>Summarily, you will put your trigger code (the one with the D0 opcode, checking the button status as described above) directly before the one setting your height value.<br />Good luck, let us know how it turns out <img src="https://www.spyroforum.com/img/smilies/smile.png" width="15" height="auto" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Ulfbjörn)]]></author>
			<pubDate>Sat, 06 Dec 2014 03:09:25 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423878#p423878</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423869#p423869</link>
			<description><![CDATA[<p>so ive been messing with cheat engine today and found the address to spyro&#039;s height. the address is 00AC32B0 and I want to set the value to 60000 (or EA60 i think) im still not sure how to convert it into a cheat code, ive been reading through different websites and still dont get it.</p><p>forgot to mention im trying to make a moon jump cheat since i dont have one for the 1.1 version. also is there a way to set it to a certain button?</p>]]></description>
			<author><![CDATA[dummy@example.com (CaptainBee)]]></author>
			<pubDate>Sat, 06 Dec 2014 02:05:26 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423869#p423869</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423845#p423845</link>
			<description><![CDATA[<p>Haha, nice findings Agent 9 <img src="https://www.spyroforum.com/img/smilies/big_smile.png" width="15" height="auto" alt="big_smile" /></p><div class="quotebox"><cite>Stormy wrote:</cite><blockquote><div><p>Actually, this whole thread is pretty interesting. Don&#039;t have a Gameshark, though.</p></div></blockquote></div><p>You can use <a href="http://pec.duttke.de/" rel="nofollow">pec</a> if you use an emulator, otherwise I&#039;m sure the real PSX appendage can be bought second hand from here and there. I actually have two Action Replay&#039;s (the European name of essentially the same thing) laying around, I can&#039;t remember where or why I got the second one though...</p><div class="quotebox"><cite>LXShadow wrote:</cite><blockquote><div><p>Ulfbjörn, forgive me but that code&#039;s ringing alarm bells! It&#039;s going over the PS1&#039;s 2MB memory. If it does actually work I am gonna be pretty impressed =P</p></div></blockquote></div><p>Hm, yeah I might have screwed that one up, I&#039;ll take a look and get back x)</p><p><strong>Edit:</strong> yep, the actual GS entry from my previous post should be like so:</p><div class="codebox"><pre><code>30070688 - 4</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (Ulfbjörn)]]></author>
			<pubDate>Fri, 05 Dec 2014 23:38:16 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423845#p423845</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423838#p423838</link>
			<description><![CDATA[<p>Wow- That&#039;s some pretty awesome stuff! Love how Moneybags is acting like &#039;what am I even doing here&#039; in the second picture. XD Most of these are things I haven&#039;t seen in all the years I hacked this game. Nicely done <img src="https://www.spyroforum.com/img/smilies/big_smile.png" width="15" height="auto" alt="big_smile" /></p><p>Ulfbjörn, forgive me but that code&#039;s ringing alarm bells! It&#039;s going over the PS1&#039;s 2MB memory. If it does actually work I am gonna be pretty impressed =P</p>]]></description>
			<author><![CDATA[dummy@example.com (LXShadow)]]></author>
			<pubDate>Fri, 05 Dec 2014 21:50:37 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423838#p423838</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423806#p423806</link>
			<description><![CDATA[<p>oh duh.. i thought i had read somewhere that sparx&#039;s health is 75, 50, 25 etc. anyway thanks for the quick responses <img src="https://www.spyroforum.com/img/smilies/tongue.png" width="15" height="auto" alt="tongue" /><br />btw i found some interesting things with the dialogue cheat. </p><p>right before sheilas cutscene started i did the cheat. <br /><span class="postimg"><img src="https://38.media.tumblr.com/da07eeaaabd94d94c2a33b87b521dfec/tumblr_ng4dpoOp4J1rpco6xo1_1280.png" alt="tumblr_ng4dpoOp4J1rpco6xo1_1280.png" /></span><br />the weird thing is that her voice actress recorded this dialogue (same with sgt byrd) but it&#039;s never used within the game. agent 9 says the same thing after beating the sorceress without freeing him though he lacks his voice actor unlike sheila and sgt byrd<br />also moneybags does this <br /><span class="postimg"><img src="https://33.media.tumblr.com/45451c2284b97ce8a3a053d64b128329/tumblr_ng4dpoOp4J1rpco6xo2_1280.png" alt="tumblr_ng4dpoOp4J1rpco6xo2_1280.png" /></span></p><p>also i figured out that getting eggs before cutscenes happen, you can get multiple eggs by pushing L2 over and over again. <br /><span class="postimg"><img src="https://38.media.tumblr.com/db77a3e4127b96fb06a7c117d25ad63b/tumblr_ng4dpoOp4J1rpco6xo3_1280.png" alt="tumblr_ng4dpoOp4J1rpco6xo3_1280.png" /></span></p><p>edit: i also discovered that sgt byrd&#039;s alternate character model has an idle animation<br /><span class="postimg"><img src="https://33.media.tumblr.com/f1bbaa904e20b9debb12f98d438301d9/tumblr_ng4hsg3L5E1rpco6xo1_400.gif" alt="tumblr_ng4hsg3L5E1rpco6xo1_400.gif" /></span><br />it always bugged me that the other playable characters didnt really have an idle animation. they just kinda... stared...</p>]]></description>
			<author><![CDATA[dummy@example.com (CaptainBee)]]></author>
			<pubDate>Fri, 05 Dec 2014 17:33:13 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423806#p423806</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423804#p423804</link>
			<description><![CDATA[<div class="quotebox"><cite>Ulfbjörn wrote:</cite><blockquote><div><p>As a funny side note, merely changing this value doesn&#039;t only affect how many hits Spyro / Sparx can take but it actually directly affects the visual appearance of Sparx as well. Setting it to anything above 4 (which is the highest you can normally get in the game) will cause some interesting visuals on Sparx, some higher values cause him to fly upside down, others change his colours to gray or greatly increase the size of his glowing rays. I don&#039;t know why this would happen, it&#039;s just a byte value so it shouldn&#039;t overflow into his transform; I suppose the latter is set by some calculation using the previous. Also, setting the value to for example 5 will allow you to survive 5 hits, it is only clamped by the game upon eating a butterfly.</p></div></blockquote></div><p>I really want to try experimenting with this now, haha. </p><p>Actually, this whole thread is pretty interesting. Don&#039;t have a Gameshark, though. <img src="https://www.spyroforum.com/img/smilies/sad.png" width="15" height="auto" alt="sad" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Stormy)]]></author>
			<pubDate>Fri, 05 Dec 2014 17:14:34 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423804#p423804</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423801#p423801</link>
			<description><![CDATA[<p>As 36 said, the health value is in the range 0..4, not 25, 50, etc.<br />As a funny side note, merely changing this value doesn&#039;t only affect how many hits Spyro / Sparx can take but it actually directly affects the visual appearance of Sparx as well. Setting it to anything above 4 (which is the highest you can normally get in the game) will cause some interesting visuals on Sparx, some higher values cause him to fly upside down, others change his colours to gray or greatly increase the size of his glowing rays. I don&#039;t know why this would happen, it&#039;s just a byte value so it shouldn&#039;t overflow into his transform; I suppose the latter is set by some calculation using the previous. Also, setting the value to for example 5 will allow you to survive 5 hits, it is only clamped by the game upon eating a butterfly.</p><p>To find the address, just determine your current health: no Sparx - 0, green - 1, blue - 2, yellow - 3, &quot;special&quot; - 4.<br />Then get hit by stuff, search for values that have decreased, eat butterflies, search for values that have increased. Repeat until you have narrowed it down to find the address by trial and error.</p><p>Or if you&#039;re too lazy, here&#039;s a guesstimated GS code for permanently freezing the value to four hit points (not tested but should theoretically be correct):</p><div class="codebox"><pre><code>30070688 - 0004</code></pre></div><p><strong>Edit:</strong> for some reason a four snuck in instead of a zero in the above code. It should be fixed now.</p>]]></description>
			<author><![CDATA[dummy@example.com (Ulfbjörn)]]></author>
			<pubDate>Fri, 05 Dec 2014 16:02:55 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423801#p423801</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423792#p423792</link>
			<description><![CDATA[<p>Haven&#039;t tried this out myself but it&#039;s worth a shot: Sparx&#039;s health in his levels goes from 1 to 25 to 50 to 75 to 100, right? Try searching using the numbers 0 to 4 (with 0 being 1, 1 being 25, etc.). If that doesn&#039;t work, try using 1 to 5 instead (where similarly 1 is 1, 2 is 25, etc.). It might even be the same as Spyro&#039;s normal health like IStillLikeSpyro mentioned.</p><p>And if all else fails just do an Increased/Decreased/Unchanged search <img src="https://www.spyroforum.com/img/smilies/smile.png" width="15" height="auto" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (LXShadow)]]></author>
			<pubDate>Fri, 05 Dec 2014 11:20:11 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423792#p423792</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423786#p423786</link>
			<description><![CDATA[<p>normal health (with Spyro, anyway) is actually 3, and when you have the powerup that makes Sparx glow it&#039;s 4.</p>]]></description>
			<author><![CDATA[dummy@example.com (36IStillLikeSpyro36)]]></author>
			<pubDate>Fri, 05 Dec 2014 04:12:40 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423786#p423786</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423784#p423784</link>
			<description><![CDATA[<p>This one should be super easy for you guys to solve; im trying to find the address that links to health. I already found the egg, life and gem counts. But I&#039;m having trouble with the health count for some reason. I know sparx&#039;s full health is 75, right? So I get hit and do 50 for the next scan and nothing pops up. I even tried it with agent 9 because it shows your health amount and still nothing. I&#039;m probably doing it all wrong any ideas?</p>]]></description>
			<author><![CDATA[dummy@example.com (CaptainBee)]]></author>
			<pubDate>Fri, 05 Dec 2014 03:57:15 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423784#p423784</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423641#p423641</link>
			<description><![CDATA[<div class="quotebox"><cite>Ulfbjörn wrote:</cite><blockquote><div><p>Might be, my freeze rate should be high enough...<br />It could be that it&#039;s just a local variable that at some part of the main loop is used to represent that and then re-used at another point for something else perchance?</p></div></blockquote></div><p>Darn, well it was a weird code to begin with TBH (I wanted to make an ASM mod, but it couldn&#039;t really be done with a memory scanner that way =/ ). It&#039;s not a local variable by definition (codes that modify the stack are very rare!), but it&#039;s really unclear how it&#039;s used. Since you found an alternative though I&#039;m gonna throw in the towel for this one <img src="https://www.spyroforum.com/img/smilies/smile.png" width="15" height="auto" alt="smile" /></p><p>Well, looks to me like this is mostly solved- unless anyone wants to make this the official Spyro 3 hacking topic?- but one more piece of trivia: the lowest-level character code, IIRC, can actually be used for any object in the environment, so long as some code for alternative character control is in the level file. I played as a frog once in Sheila&#039;s part of Sunny Villa using that trick, I can&#039;t find the old screenshot but it was pretty funny. =P (Didn&#039;t have all the animations though)</p><p>P.S Agent9: Not sure if you were asking me, but I also did a game dev course! Helped me out a lot; made my own little multiplayer game with its help too. <img src="https://www.spyroforum.com/img/smilies/smile.png" width="15" height="auto" alt="smile" /> Not working in the industry officially either--pretty much the same as Ulfbjörn in all!</p>]]></description>
			<author><![CDATA[dummy@example.com (LXShadow)]]></author>
			<pubDate>Mon, 01 Dec 2014 19:41:16 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423641#p423641</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423624#p423624</link>
			<description><![CDATA[<div class="quotebox"><cite>Agent9 wrote:</cite><blockquote><div><p>But good research nonetheless, do you work in the video game industry by any chance?</p></div></blockquote></div><p>Thanks and no, not officially yet anyway. I did however study game development and am currently writing my final thesis before graduating. I don&#039;t really have enough delusions of grandeur to believe I will actually be able to land a job in the industry, but of course that is a goal. If we look away from the &quot;work&quot; part then yes, I have made a few games on my free time. At the moment I&#039;m working on a DirectX 11 game engine that with any luck will be completed and hopefully sold to a brittish company within the next year <img src="https://www.spyroforum.com/img/smilies/smile.png" width="15" height="auto" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Ulfbjörn)]]></author>
			<pubDate>Mon, 01 Dec 2014 13:11:01 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423624#p423624</guid>
		</item>
		<item>
			<title><![CDATA[Re: IN NEED OF GAMESHARK CODE]]></title>
			<link>https://www.spyroforum.com/viewtopic.php?pid=423619#p423619</link>
			<description><![CDATA[<p>Bleh I wasnt really expecting it to work anyway <img src="https://www.spyroforum.com/img/smilies/tongue.png" width="15" height="auto" alt="tongue" /> <br />That&#039;s too bad it would be fun to play as different characters in other stage tho <br />But good research nonetheless, do you work in the video game industry by any chance?</p>]]></description>
			<author><![CDATA[dummy@example.com (CaptainBee)]]></author>
			<pubDate>Mon, 01 Dec 2014 08:45:16 +0000</pubDate>
			<guid>https://www.spyroforum.com/viewtopic.php?pid=423619#p423619</guid>
		</item>
	</channel>
</rss>
