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
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
=To Do List= | |||
*Finish sections | |||
**[JumpjetControls] | |||
**[VoxelAnims] | |||
**[Particles] | |||
**[ParticleSystems] | |||
**[SuperWeaponTypes] | |||
**[Warheads] | |||
**[MultiplayerDialogSettings] | |||
**[Maximums] | |||
**[AI] | |||
**[AIGenerals] | |||
**[IQ] | |||
**[Colors] | |||
**[ColorAdd] | |||
**[Powerups] | |||
**[Tiberiums] | |||
**[VariableNames] | |||
*Create/Edit: | |||
**ModEnc:Styleguide | |||
**ModEnc:General_disclaimer | |||
**ModEnc:About | |||
**ModEnc:Privacy_policy | |||
**Help:Contents | |||
**ModEnc:Copyrights | |||
**Help:Editing | |||
***Link to ModEnc:Templates | |||
**ModEnc:Administrators | |||
*Move ModEnc:FAQ | |||
*Wishlist-TOC like Sidebar | |||
*Big red horizontal bar template | |||
*Merga numbered pages | |||
*Rework section-pages | |||
*Create ModEnc:Tablelayouts | |||
<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++: | My favorite little program as of now, created during my attempts to learn C++: | ||
Line 13: | Line 61: | ||
return 0; | return 0; | ||
}</pre> | }</pre> | ||
Revision as of 05:09, 8 May 2006
To Do List
- Finish sections
- [JumpjetControls]
- [VoxelAnims]
- [Particles]
- [ParticleSystems]
- [SuperWeaponTypes]
- [Warheads]
- [MultiplayerDialogSettings]
- [Maximums]
- [AI]
- [AIGenerals]
- [IQ]
- [Colors]
- [ColorAdd]
- [Powerups]
- [Tiberiums]
- [VariableNames]
- Create/Edit:
- ModEnc:Styleguide
- ModEnc:General_disclaimer
- ModEnc:About
- ModEnc:Privacy_policy
- Help:Contents
- ModEnc:Copyrights
- Help:Editing
- Link to ModEnc:Templates
- ModEnc:Administrators
- Move ModEnc:FAQ
- Wishlist-TOC like Sidebar
- Big red horizontal bar template
- Merga numbered pages
- Rework section-pages
- Create ModEnc:Tablelayouts
{{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; }