ModEnc is currently in Maintenance Mode: Changes could occur at any given moment, without advance warning.
User:Renegade: Difference between revisions
Jump to navigation
Jump to search
yay, 9:00 AM and I didn't sleep yet. |
m Protected "User:Renegade": Target of vandalism. [edit=autoconfirmed:move=autoconfirmed:read=autoconfirmed] |
||
(11 intermediate revisions by 7 users not shown) | |||
Line 7: | Line 7: | ||
**[VariableNames] | **[VariableNames] | ||
*Create/Edit: | *Create/Edit: | ||
** | ** - | ||
*Merge numbered pages | *Merge numbered pages | ||
*Rework section-pages | *Rework section-pages | ||
**Especially CrateRules | **Especially CrateRules | ||
**Especially Terrain-, Overlay-, SmudgeTypes | **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}}]}} | <pre>{{WrongTitle|[{{PAGENAME}}]}} |
Latest revision as of 17:31, 7 July 2009
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; }