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

User:Renegade: Difference between revisions

From ModEnc
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
=To Do List=
=To Do List=
*Finish sections
*Finish sections (the few left have waaaay to much DZ-text attached >_<)
**[JumpjetControls]
**[VoxelAnims]
**[Particles]
**[ParticleSystems]
**[SuperWeaponTypes]
**[SuperWeaponTypes]
**[Warheads]
**[MultiplayerDialogSettings]
**[Maximums]
**[AI]
**[AIGenerals]
**[AIGenerals]
**[IQ]
**[Colors]
**[Colors]
**[ColorAdd]
**[ColorAdd]
**[Powerups]
**[Tiberiums]
**[VariableNames]
**[VariableNames]
*Create/Edit:
*Create/Edit:
**ModEnc:Styleguide
**ModEnc:General_disclaimer
**ModEnc:General_disclaimer
**ModEnc:About
**ModEnc:About

Revision as of 04:30, 9 May 2006

To Do List

  • Finish sections (the few left have waaaay to much DZ-text attached >_<)
    • [SuperWeaponTypes]
    • [AIGenerals]
    • [Colors]
    • [ColorAdd]
    • [VariableNames]
  • Create/Edit:
    • 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
    • Especially CrateRules
    • Especially Terrain-, Overlay-, SmudgeTypes
  • Create ModEnc:Tablelayouts
  • Highlighted pages feature
{{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;
}