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
hmpf. stupid sleep thing stealing my time.
No edit summary
Line 13: Line 13:
**ModEnc:Copyrights
**ModEnc:Copyrights
**Help:Editing
**Help:Editing
***Link to ModEnc:Templates
***Sandbox (Do we have one? If not, how to set one up?)
***And Styleguide, and tables
*Merge numbered pages
***Sandbox
**ModEnc:Protected page guidelines
*Merga numbered pages
*Rework section-pages
*Rework section-pages
**Especially CrateRules
**Especially CrateRules
**Especially Terrain-, Overlay-, SmudgeTypes
**Especially Terrain-, Overlay-, SmudgeTypes
*Go through settings files and improve our settings


<pre>{{WrongTitle|[{{PAGENAME}}]}}
<pre>{{WrongTitle|[{{PAGENAME}}]}}

Revision as of 01:26, 20 June 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
      • Sandbox (Do we have one? If not, how to set one up?)
  • Merge numbered pages
  • Rework section-pages
    • Especially CrateRules
    • Especially Terrain-, Overlay-, SmudgeTypes
  • Go through settings files and improve our settings
{{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;
}