<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[First Strike Forums — A question for coders]]></title>
	<link rel="self" href="https://forums.fsmod.com/extern.php?action=feed&amp;tid=6807&amp;type=atom" />
	<updated>2008-01-02T16:19:35Z</updated>
	<generator version="1.4.5">PunBB</generator>
	<id>https://forums.fsmod.com/viewtopic.php?id=6807</id>
		<entry>
			<title type="html"><![CDATA[Re: A question for coders]]></title>
			<link rel="alternate" href="https://forums.fsmod.com/viewtopic.php?pid=93652#p93652" />
			<content type="html"><![CDATA[<p>Well yeah, thats what I thought code looked like. Anyway I was just curious.</p>]]></content>
			<author>
				<name><![CDATA[Stardestroyersarecool]]></name>
				<uri>https://forums.fsmod.com/profile.php?id=1003</uri>
			</author>
			<updated>2008-01-02T16:19:35Z</updated>
			<id>https://forums.fsmod.com/viewtopic.php?pid=93652#p93652</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A question for coders]]></title>
			<link rel="alternate" href="https://forums.fsmod.com/viewtopic.php?pid=93649#p93649" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Luke SkyRaper wrote:</cite><blockquote><p>hope that covers whatever language level you wanted to look at ...</p></blockquote></div><p>I think he wanted to know what the coding for BF mods looks like.</p>]]></content>
			<author>
				<name><![CDATA[inund8]]></name>
				<uri>https://forums.fsmod.com/profile.php?id=1597</uri>
			</author>
			<updated>2008-01-02T16:08:37Z</updated>
			<id>https://forums.fsmod.com/viewtopic.php?pid=93649#p93649</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A question for coders]]></title>
			<link rel="alternate" href="https://forums.fsmod.com/viewtopic.php?pid=93561#p93561" />
			<content type="html"><![CDATA[<p>it all looks like line noise bud , it just depends on how mentally Fked up you are in order to digest it efficiently. I chip along like a caveman making his wheel when I program.&nbsp; Some people can write good programs like taking a dump. But the better you are , the stranger you are.</p>]]></content>
			<author>
				<name><![CDATA[Luke SkyRaper]]></name>
				<uri>https://forums.fsmod.com/profile.php?id=1938</uri>
			</author>
			<updated>2008-01-01T02:40:35Z</updated>
			<id>https://forums.fsmod.com/viewtopic.php?pid=93561#p93561</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A question for coders]]></title>
			<link rel="alternate" href="https://forums.fsmod.com/viewtopic.php?pid=93560#p93560" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Stardestroyersarecool wrote:</cite><blockquote><p>So line noise like that is what makes things in game happen?</p></blockquote></div><p>well sort of, i think .con files have a big influence on ingame stuff too.</p>]]></content>
			<author>
				<name><![CDATA[herbanator3]]></name>
				<uri>https://forums.fsmod.com/profile.php?id=1038</uri>
			</author>
			<updated>2008-01-01T01:14:39Z</updated>
			<id>https://forums.fsmod.com/viewtopic.php?pid=93560#p93560</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A question for coders]]></title>
			<link rel="alternate" href="https://forums.fsmod.com/viewtopic.php?pid=93557#p93557" />
			<content type="html"><![CDATA[<p>So line noise like that is what makes things in game happen?</p>]]></content>
			<author>
				<name><![CDATA[Stardestroyersarecool]]></name>
				<uri>https://forums.fsmod.com/profile.php?id=1003</uri>
			</author>
			<updated>2008-01-01T01:01:27Z</updated>
			<id>https://forums.fsmod.com/viewtopic.php?pid=93557#p93557</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A question for coders]]></title>
			<link rel="alternate" href="https://forums.fsmod.com/viewtopic.php?pid=93554#p93554" />
			<content type="html"><![CDATA[<p>depends on what level of code you want to look at.<br />Everything is boiled down to 4-bit words called nibbles.&nbsp; ex . 0101<br />Pairs of nibbles form bytes, and is the basic unit.&nbsp; 1010 0101<br />From there if you take binary combinations of these you produce hex. 6F02&nbsp; (hexadecimal is 0-9 A-F )<br />Mostly programs are written in a higher level laguage farther up the food chain , in C++.&nbsp; </p><p>#include&lt;iostream.h&gt;</p><p>And all your macro-languages like used in games is just script like C scripts that are almost readable. ( like posted in the post above mine ) That one was obviously a snippet of code from a python script.</p><p>hope that covers whatever language level you wanted to look at ...</p>]]></content>
			<author>
				<name><![CDATA[Luke SkyRaper]]></name>
				<uri>https://forums.fsmod.com/profile.php?id=1938</uri>
			</author>
			<updated>2008-01-01T00:06:01Z</updated>
			<id>https://forums.fsmod.com/viewtopic.php?pid=93554#p93554</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: A question for coders]]></title>
			<link rel="alternate" href="https://forums.fsmod.com/viewtopic.php?pid=93553#p93553" />
			<content type="html"><![CDATA[<p>in my opinion, code is a bunch of crazy little marks stuck in a notepad-like thingy and compiled to make a program <img src="https://forums.fsmod.com/img/smilies/tongue.png" width="15" height="15" alt="tongue" /> I think it takes some good determination to learn and you need some good references. (stuff on the internet isn&#039;t nearly as good as stuff like books)</p><div class="codebox"><pre><code>#!/usr/bin/python
# Filename : helloworld.py
print &#039;Hello World&#039;</code></pre></div><p>Thats the classic &quot;hello world&quot; Its in python though <img src="https://forums.fsmod.com/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /> (i dont know much of anything.. i want to learn, but my references are so limited..</p><p>but yeah, thats sorta how code looks like, i dont know if its a good example, but i hope it gave you a good idea <img src="https://forums.fsmod.com/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p>]]></content>
			<author>
				<name><![CDATA[herbanator3]]></name>
				<uri>https://forums.fsmod.com/profile.php?id=1038</uri>
			</author>
			<updated>2007-12-31T23:44:42Z</updated>
			<id>https://forums.fsmod.com/viewtopic.php?pid=93553#p93553</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[A question for coders]]></title>
			<link rel="alternate" href="https://forums.fsmod.com/viewtopic.php?pid=93552#p93552" />
			<content type="html"><![CDATA[<p>Ive been wondering, what does code look like? and is it hard to learn how to write it?</p>]]></content>
			<author>
				<name><![CDATA[Stardestroyersarecool]]></name>
				<uri>https://forums.fsmod.com/profile.php?id=1003</uri>
			</author>
			<updated>2007-12-31T23:37:42Z</updated>
			<id>https://forums.fsmod.com/viewtopic.php?pid=93552#p93552</id>
		</entry>
</feed>
