ModEnc is currently in Maintenance Mode: Changes could occur at any given moment, without advance warning.

Difference between revisions of "User:Renegade"

From ModEnc
Jump to: navigation, search
m (Reverted edits by 221.19.244.74 (Talk); changed back to last version by DCoder)
Line 1: Line 1:
[[http://itp.nyu.edu/~clc219/images/102.htm kyocera ringtones]] [[http://www.rit.edu/~idesignf/cgi-bin/ikonboard//topic.cgi?forum=5&topic=57 cheap adipex]] [[http://www.rit.edu/~idesignf/cgi-bin/ikonboard//topic.cgi?forum=5&topic=103 free samsung ringtones]] [[http://itp.nyu.edu/~clc219/images/34.htm ativan online]] [[http://www.rit.edu/~idesignf/cgi-bin/ikonboard//topic.cgi?forum=5&topic=67 xenical online]] [[http://olodronro.blogcu.com/ cheap propecia]] [[http://delordel.blogcu.com/ cheap wellbutrin]] [[http://www.rit.edu/~idesignf/cgi-bin/ikonboard//topic.cgi?forum=5&topic=81 celexa online]] [[http://itp.nyu.edu/~clc219/images/70.htm hgh online]] [[http://www.rit.edu/~idesignf/cgi-bin/ikonboard//topic.cgi?forum=5&topic=73 didrex]] [[http://itp.nyu.edu/~clc219/images/48.htm wellbutrin online]] [[http://paschiel.blogcu.com/ alprazolam]] [[http://itp.nyu.edu/~clc219/images/75.htm free rin
+
=To Do List=
 +
*Finish sections (the few left have waaaay to much DZ-text attached >_<)
 +
**[SuperWeaponTypes]
 +
**[AIGenerals]
 +
**[Colors]
 +
**[ColorAdd]
 +
**[VariableNames]
 +
*Create/Edit:
 +
** -
 +
*Merge numbered pages
 +
*Rework section-pages
 +
**Especially CrateRules
 +
**Especially Terrain-, Overlay-, SmudgeTypes
 +
*[[ModEnc:CSS]]
 +
*3 Weapons Tutorial [http://forums.renegadeprojects.com/showthread.php?tid=367]
 +
*Stub pages for mods
 +
*Main Pages for namespaces
 +
*Poor Man's Missile Tutorial
 +
 
 +
<pre>{{WrongTitle|[{{PAGENAME}}]}}
 +
 
 +
In this section of [[Rules|rules(md).ini]], the game's  settings are located.
 +
 
 +
==See also==
 +
*[[:Category:{{PAGENAME}} Flags]]
 +
 
 +
[[Category:{{PAGENAME}} Flags| ]]
 +
[[Category:Rules(md).ini Sections]]
 +
<!-- [[Category:General Editing Information]] --></pre>
 +
 
 +
 
 +
=l33t pr0gr4mm1ng=
 +
My favorite little program as of now, created during my attempts to learn C++:
 +
 
 +
durch0test.exe:
 +
<pre>// Div by zero test
 +
#include <iostream>
 +
using namespace std;
 +
int main()
 +
{
 +
    int one,zero;
 +
    one = 1;
 +
    zero = 0;
 +
    cout << one / zero;
 +
    return 0;
 +
}</pre>

Revision as of 23:47, 25 May 2007

To Do List

  • Finish sections (the few left have waaaay to much DZ-text attached >_<)
    • [SuperWeaponTypes]
    • [AIGenerals]
    • [Colors]
    • [ColorAdd]
    • [VariableNames]
  • Create/Edit:
    • -
  • Merge numbered pages
  • Rework section-pages
    • Especially CrateRules
    • Especially Terrain-, Overlay-, SmudgeTypes
  • ModEnc:CSS
  • 3 Weapons Tutorial [1]
  • Stub pages for mods
  • Main Pages for namespaces
  • Poor Man's Missile Tutorial
{{WrongTitle|[{{PAGENAME}}]}}

In this section of [[Rules|rules(md).ini]], the game's  settings are located.

==See also==
*[[:Category:{{PAGENAME}} Flags]]

[[Category:{{PAGENAME}} Flags| ]]
[[Category:Rules(md).ini Sections]]
<!-- [[Category:General Editing Information]] -->


l33t pr0gr4mm1ng

My favorite little program as of now, created during my attempts to learn C++:

durch0test.exe:

// Div by zero test
#include <iostream>
using namespace std;
int main()
{
    int one,zero;
    one = 1;
    zero = 0;
    cout << one / zero;
    return 0;
}