User:C.rand

From Multiverse

Jump to: navigation, search

Contents

Who am I?

If you want to contact me, send email to crandmck at yahoo dot com.

Current priorities

TO DO

Formatting and presentation:

  • Make widget attribute lists into tables.
  • XRef tasks in World Editor UI Reference.

Code fixes:

  • Remove TestProjectile code from mv_fantasy and redo help text.

Publicize better:

Testing

Done, but should be tested:

Suggestions

From Jeff:

  • Need a good example of terrain mosaic from Jeff
  • A page that describes our current lighting system and its limitations.
  • A page that describes how the server handles spawn generators
  • A page describing the behavior system and how to set values on spawn generators that can be used to drive behaviors

Community requests:

  • Steps in imporing L3DT map to Multiverse (making the mosaic and texture layers)
  • Making of normal, normal+specular, specular materials
  • Client/Server communication so we can work out details with the UI that interact with the server.

New pages

Upcoming Releases

User contributions

Other new docs (not release-specific)

Other

Templates

Show All Templates.

Style Templates

These are basically just shortcuts for the custom styles.

Preliminary Draft!


Puts its one argument in a red box


NOTE: Puts its one argument in a blue box

Navigation Templates

Code example template:

Tutorials:

Client:

Server:

Tools:

Generic Quick Navigation:

  • Template:QuickNav - This template takes a variable number of parameters:
    • First parameter is title of nav box
    • Second, third, fourth, ... parameters on are links to articles in the group. These are optional.

Widget templates

Handy Links and Notes

MediaWiki:Sidebar

How to create a new user group

See http://meta.wikimedia.org/wiki/Preventing_Access#Setting_permissions_for_a_Group_on_a_whole_new_Namespace.

Edit LocalSettings.php and clone these two lines from an existing group, replacing "NewGroupName" with the new group name:

$wgGroupPermissions['NewGroupName']['viewforbidden'] = true;
$wgGroupPermissions['NewGroupName']['createaccount'] = false;

Also add the namespace to the associative array:

$wgExtraNamespaces = ...

Edit /includes/Talk.php, search for "Max Gaming" and add these lines, replacing 102 and 103 with the numbers from the $wgExtraNamespaces array above.

if( $this->getNamespace() == 102 ) {
    return $wgUser->isAllowed('viewforbidden');
}
if( $this->getNamespace() == 103 ) {
    return $wgUser->isAllowed('viewforbidden');
}

Go through all the users: Special:Listusers and find all the users you want to add to the new group. Add them in Special:Userrights.

To make pages viewable only by users in that group, put the page in the group namespace, eg. NewGroupName:Title.

Personal tools