2021-04-09 22:33:19 +00:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
< html >
< head >
< meta http-equiv = "Content-Type" content = "text/html;charset=utf-8" >
< meta name = "robots" content = "index,follow" >
< title > TitleIndex - Quake 4 SDK Documentation< / title >
2021-04-10 13:18:07 +00:00
< script type = "text/javascript" src = "wiki/common/js/common.js" > < / script >
2021-04-09 22:33:19 +00:00
< script type = "text/javascript" >
<!-- // common functions
// We keep here the state of the search box
searchIsDisabled = false;
function searchChange(e) {
// Update search buttons status according to search box content.
// Ignore empty or whitespace search term.
var value = e.value.replace(/\s+/, '');
if (value == '' || searchIsDisabled) {
searchSetDisabled(true);
} else {
searchSetDisabled(false);
}
}
function searchSetDisabled(flag) {
// Enable or disable search
document.getElementById('fullsearch').disabled = flag;
document.getElementById('titlesearch').disabled = flag;
}
function searchFocus(e) {
// Update search input content on focus
if (e.value == 'Search') {
e.value = '';
e.className = '';
searchIsDisabled = false;
}
}
function searchBlur(e) {
// Update search input content on blur
if (e.value == '') {
e.value = 'Search';
e.className = 'disabled';
searchIsDisabled = true;
}
}
function actionsMenuInit(title) {
// Initialize action menu
for (i = 0; i < document.forms.length ; i + + ) {
var form = document.forms[i];
if (form.className == 'actionsmenu') {
// Check if this form needs update
var div = form.getElementsByTagName('div')[0];
var label = div.getElementsByTagName('label')[0];
if (label) {
// This is the first time: remove label and do buton.
div.removeChild(label);
var dobutton = div.getElementsByTagName('input')[0];
div.removeChild(dobutton);
// and add menu title
var select = div.getElementsByTagName('select')[0];
var item = document.createElement('option');
item.appendChild(document.createTextNode(title));
item.value = 'show';
select.insertBefore(item, select.options[0]);
select.selectedIndex = 0;
}
}
}
}
//-->
< / script >
2021-04-10 13:18:07 +00:00
< link rel = "stylesheet" type = "text/css" charset = "utf-8" media = "all" href = "wiki/modern/css/common.css" >
< link rel = "stylesheet" type = "text/css" charset = "utf-8" media = "screen" href = "wiki/modern/css/screen.css" >
< link rel = "stylesheet" type = "text/css" charset = "utf-8" media = "print" href = "wiki/modern/css/print.css" >
< link rel = "stylesheet" type = "text/css" charset = "utf-8" media = "projection" href = "wiki/modern/css/projection.css" >
2021-04-09 22:33:19 +00:00
<!-- css only for MSIE browsers -->
<!-- [if IE]>
2021-04-10 13:18:07 +00:00
< link rel = "stylesheet" type = "text/css" charset = "utf-8" media = "all" href = "wiki/modern/css/msie.css" >
2021-04-09 22:33:19 +00:00
<![endif]-->
2021-04-10 14:00:23 +00:00
< link rel = "Start" href = "./Quake4SDK.html" >
2021-04-10 13:40:18 +00:00
< link rel = "Alternate" title = "Wiki Markup" href = "./TitleIndex?action=raw" >
< link rel = "Alternate" media = "print" title = "Print View" href = "./TitleIndex?action=print" >
2021-04-10 14:00:23 +00:00
< link rel = "Search" href = "./FindPage.html" >
< link rel = "Index" href = "./TitleIndex.html" >
< link rel = "Glossary" href = "./WordIndex.html" >
< link rel = "Help" href = "./HelpOnFormatting.html" >
2021-04-09 22:33:19 +00:00
< / head >
< body lang = "en" dir = "ltr" >
< div id = "header" >
2021-04-10 14:00:23 +00:00
< div id = "logo" > < a href = "./Quake4SDK.html" > < img src = "wiki/common/moinmoin.png" alt = "MoinMoin Logo" > < / a > < / div >
2021-04-09 22:33:19 +00:00
< form id = "searchform" method = "get" action = "" >
< div >
< input type = "hidden" name = "action" value = "fullsearch" >
< input type = "hidden" name = "context" value = "180" >
< label for = "searchinput" > Search:< / label >
< input id = "searchinput" type = "text" name = "value" value = "" size = "20"
onfocus="searchFocus(this)" onblur="searchBlur(this)"
onkeyup="searchChange(this)" onchange="searchChange(this)" alt="Search">
< input id = "titlesearch" name = "titlesearch" type = "submit"
value="Titles" alt="Search Titles">
< input id = "fullsearch" name = "fullsearch" type = "submit"
value="Text" alt="Search Full Text">
< / div >
< / form >
< script type = "text/javascript" >
<!-- // Initialize search form
var f = document.getElementById('searchform');
f.getElementsByTagName('label')[0].style.display = 'none';
var e = document.getElementById('searchinput');
searchChange(e);
searchBlur(e);
//-->
< / script >
2021-04-10 13:40:18 +00:00
< ul id = "username" > < li > < a href = "./TitleIndex?action=login" id = "login" > Login< / a > < / li > < / ul >
2021-04-09 22:33:19 +00:00
< div id = "locationline" >
< ul id = "pagelocation" >
2021-04-10 13:40:18 +00:00
< li > < a class = "backlink" title = "Click to do a full-text search for this title" href = "./TitleIndex?action=fullsearch&value=linkto%3A%22TitleIndex%22&context=180" > TitleIndex< / a > < / li >
2021-04-09 22:33:19 +00:00
< / ul >
< / div >
< ul id = "navibar" >
2021-04-10 14:00:23 +00:00
< li class = "wikilink" > < a href = "./GettingStarted.html" > GettingStarted< / a > < / li > < li class = "wikilink" > < a href = "./ScriptFile.html" > ScriptFile< / a > < / li > < li class = "wikilink" > < a href = "./MakeAMod.html" > MakeAMod< / a > < / li > < li class = "wikilink" > < a href = "./LevelEditor.html" > LevelEditor< / a > < / li > < li class = "wikilink" > < a href = "./FXEditor.html" > FXEditor< / a > < / li > < li class = "wikilink" > < a href = "./GUIEditor.html" > GUIEditor< / a > < / li > < li class = "wikilink" > < a href = "./Sounds.html" > Sounds< / a > < / li > < li class = "wikilink" > < a href = "./Animations.html" > Animations< / a > < / li > < li class = "wikilink" > < a href = "./ArtReference.html" > ArtReference< / a > < / li > < li class = "wikilink" > < a href = "./DownloadableContent.html" > DownloadableContent< / a > < / li > < li class = "wikilink" > < a href = "./RecentChanges.html" > RecentChanges< / a > < / li > < li class = "wikilink" > < a href = "./FindPage.html" > FindPage< / a > < / li > < li class = "wikilink" > < a href = "./HelpContents.html" > HelpContents< / a > < / li > < li class = "current" > < a href = "./TitleIndex.html" > TitleIndex< / a > < / li >
2021-04-09 22:33:19 +00:00
< / ul >
< div id = "pageline" > < hr style = "display:none;" > < / div >
2021-04-10 13:40:18 +00:00
< ul class = "editbar" > < li > < span class = "disabled" > Immutable Page< / span > < / li > < li > < a href = "./TitleIndex?action=info" > Info< / a > < / li > < li > < a href = "./TitleIndex?action=AttachFile" > Attachments< / a > < / li > < li >
2021-04-09 22:33:19 +00:00
< form class = "actionsmenu" method = "get" action = "" >
< div >
< label > More Actions:< / label >
< select name = "action"
onchange="if ((this.selectedIndex != 0) & &
(this.options[this.selectedIndex].disabled == false)) {
this.form.submit();
}
this.selectedIndex = 0;">
< option value = "raw" > Raw Text< / option >
< option value = "print" > Print View< / option >
< option value = "RenderAsDocbook" > Render as Docbook< / option >
< option value = "refresh" > Delete Cache< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "SpellCheck" > Check Spelling< / option >
< option value = "LikePages" > Like Pages< / option >
< option value = "LocalSiteMap" > Local Site Map< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "RenamePage" disabled class = "disabled" > Rename Page< / option >
< option value = "DeletePage" disabled class = "disabled" > Delete Page< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "MyPages" > My Pages< / option >
< option value = "SubscribeUser" > Subscribe User< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "Despam" > Remove Spam< / option >
< option value = "PackagePages" > Package Pages< / option >
< / select >
< input type = "submit" value = "Do" >
< / div >
< script type = "text/javascript" >
<!-- // Init menu
actionsMenuInit('More Actions:');
//-->
< / script >
< / form >
< / li > < / ul >
< / div >
< div id = "page" lang = "en" dir = "ltr" >
< div dir = "ltr" id = "content" lang = "en" > < span class = "anchor" id = "top" > < / span >
2021-04-10 14:00:23 +00:00
< span class = "anchor" id = "line-8" > < / span > < p class = "line874" > This is an index of all pages in this Wiki. < span class = "anchor" id = "line-9" > < / span > < span class = "anchor" id = "line-10" > < / span > < p class = "line874" > See also: < span class = "anchor" id = "line-11" > < / span > < ul > < li > < p class = "line891" > < a href = "./WordIndex.html" > WordIndex< / a > -- a permuted index of all words occuring in titles < span class = "anchor" id = "line-12" > < / span > < / li > < li > < p class = "line891" > < a href = "./SiteNavigation.html" > SiteNavigation< / a > -- other indexing schemes < span class = "anchor" id = "line-13" > < / span > < span class = "anchor" id = "line-14" > < / span > < / li > < / ul > < p class = "line867" > < hr / > < p class = "line874" > < span class = "anchor" id = "line-15" > < / span > < span class = "anchor" id = "line-16" > < / span > < p class = "line867" > < p > < a href = "#A" > A< / a > | < a href = "#B" > B< / a > | < a href = "#C" > C< / a > | < a href = "#D" > D< / a > | < a href = "#E" > E< / a > | < a href = "#F" > F< / a > | < a href = "#G" > G< / a > | < a href = "#H" > H< / a > | < a href = "#I" > I< / a > | < a href = "#L" > L< / a > | < a href = "#M" > M< / a > | < a href = "#N" > N< / a > | < a href = "#O" > O< / a > | < a href = "#P" > P< / a > | < a href = "#Q" > Q< / a > | < a href = "#S" > S< / a > | < a href = "#T" > T< / a > | < a href = "#U" > U< / a > | < a href = "#V" > V< / a > | < a href = "#%D0%9D" > Н < / a > | < a href = "#%D7%A4" > פ< / a > | < a href = "#%E3%83%95" > フ< / a > | < a href = "#%E9%A6%96" > 首< / a > < br >
2021-04-09 22:33:19 +00:00
< a href = "TitleIndex?allpages=1" > Include system pages< / a > |
< a href = "TitleIndex?action=titleindex" > Plain title index< / a > |
< a href = "TitleIndex?action=titleindex&mimetype=text/xml" > XML title index< / a >
2021-04-10 14:00:23 +00:00
< / p > < a name = "A" > < h3 > A< / h3 > < / a > < a href = "./Adding_Fonts_to_use_in_Quake_4_GUIs.html" > Adding Fonts to use in Quake 4 GUIs< / a > < a href = "./Adding_Fonts_to_use_in_Quake_4_GUIs?action=AttachFile" > < img alt = "[5 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[5 attachments]" width = "7" / > < / a >
< br > < a href = "./AdvancedScriptTutorial.html" > AdvancedScriptTutorial< / a >
< br > < a href = "./AnimationExamples.html" > AnimationExamples< / a > < a href = "./AnimationExamples?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./Animations.html" > Animations< / a >
< br > < a href = "./ArtExamples.html" > ArtExamples< / a > < a href = "./ArtExamples?action=AttachFile" > < img alt = "[3 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[3 attachments]" width = "7" / > < / a >
< br > < a href = "./ArtReference.html" > ArtReference< / a >
2021-04-11 01:32:54 +00:00
< br > < del > ArtReference CreatingCreatures< / del > (same as CreatingModels)
2021-04-10 14:00:23 +00:00
< br > < a href = "./ArtReference_CreatingModels.html" > ArtReference CreatingModels< / a > < a href = "./ArtReference_CreatingModels?action=AttachFile" > < img alt = "[14 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[14 attachments]" width = "7" / > < / a >
< br > < a href = "./ArtReference_CreatingTextures.html" > ArtReference CreatingTextures< / a > < a href = "./ArtReference_CreatingTextures?action=AttachFile" > < img alt = "[9 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[9 attachments]" width = "7" / > < / a >
< br > < a href = "./ArtReference_playerModels.html" > ArtReference playerModels< / a >
< br > < a href = "./ArtReference_Q4Shaders.html" > ArtReference Q4Shaders< / a >
< br > < a href = "./ArtReference_Q4Shaders_AnimatedStrips.html" > ArtReference Q4Shaders AnimatedStrips< / a > < a href = "./ArtReference_Q4Shaders_AnimatedStrips?action=AttachFile" > < img alt = "[2 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[2 attachments]" width = "7" / > < / a >
< br > < a href = "./ArtReference_Q4Shaders_Definitions.html" > ArtReference Q4Shaders Definitions< / a >
< br > < a href = "./ArtReference_Q4Shaders_Extra_Passes.html" > ArtReference Q4Shaders Extra Passes< / a >
< br > < a href = "./ArtReference_Q4Shaders_Guides.html" > ArtReference Q4Shaders Guides< / a >
< br > < a href = "./ArtReference_Q4Shaders_Models.html" > ArtReference Q4Shaders Models< / a >
< br > < a href = "./ArtReference_Q4Shaders_SkinFiles.html" > ArtReference Q4Shaders SkinFiles< / a >
< br > < a href = "./ArtReference_Q4Shaders_Tables.html" > ArtReference Q4Shaders Tables< / a >
< br > < a href = "./ArtReference_Q4Shaders_Textures.html" > ArtReference Q4Shaders Textures< / a >
< br > < a href = "./ArtReference_SpecularMaps.html" > ArtReference SpecularMaps< / a > < a href = "./ArtReference_SpecularMaps?action=AttachFile" > < img alt = "[21 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[21 attachments]" width = "7" / > < / a >
< br > < a href = "./AutoDownload.html" > AutoDownload< / a >
< a name = "B" > < h3 > B< / h3 > < / a > < a href = "./Basic_FX_file_structure.html" > Basic FX file structure< / a > < a href = "./Basic_FX_file_structure?action=AttachFile" > < img alt = "[2 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[2 attachments]" width = "7" / > < / a >
< br > < a href = "./BasicScriptTutorial.html" > BasicScriptTutorial< / a > < a href = "./BasicScriptTutorial?action=AttachFile" > < img alt = "[7 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[7 attachments]" width = "7" / > < / a >
< br > < a href = "./Benchmarking.html" > Benchmarking< / a >
< a name = "C" > < h3 > C< / h3 > < / a > < a href = "./CommunityResources.html" > CommunityResources< / a >
< br > < a href = "./ConsoleCommand_ReloadScript.html" > ConsoleCommand ReloadScript< / a >
< br > < a href = "./Contact.html" > Contact< / a >
< a name = "D" > < h3 > D< / h3 > < / a > < a href = "./DamageDefinition.html" > DamageDefinition< / a >
< br > < a href = "./Debugging.html" > Debugging< / a > < a href = "./Debugging?action=AttachFile" > < img alt = "[2 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[2 attachments]" width = "7" / > < / a >
< br > < a href = "./DebugHud.html" > DebugHud< / a > < a href = "./DebugHud?action=AttachFile" > < img alt = "[2 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[2 attachments]" width = "7" / > < / a >
< br > < a href = "./Declaration.html" > Declaration< / a >
< br > < a href = "./Declarations.html" > Declarations< / a >
< br > < a href = "./DeclarationType.html" > DeclarationType< / a >
< br > < a href = "./DeclarationTypes.html" > DeclarationTypes< / a >
< br > < a href = "./Def_Flags.html" > Def Flags< / a >
< br > < a href = "./Def_Types.html" > Def Types< / a >
< br > < a href = "./DefinitionFile.html" > DefinitionFile< / a > < a href = "./DefinitionFile?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./DefinitionFileExamples.html" > DefinitionFileExamples< / a > < a href = "./DefinitionFileExamples?action=AttachFile" > < img alt = "[3 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[3 attachments]" width = "7" / > < / a >
< br > < a href = "./DefinitionFiles.html" > DefinitionFiles< / a >
< br > < a href = "./DownloadableContent.html" > DownloadableContent< / a >
< a name = "E" > < h3 > E< / h3 > < / a > < a href = "./Effect_Creation_Walkthrough.html" > Effect Creation Walkthrough< / a >
< br > < a href = "./Effects_Performance.html" > Effects Performance< / a > < a href = "./Effects_Performance?action=AttachFile" > < img alt = "[2 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[2 attachments]" width = "7" / > < / a >
< br > < a href = "./Entity_ActorDefault.html" > Entity ActorDefault< / a >
< br > < a href = "./Entity_FuncElevator.html" > Entity FuncElevator< / a >
< br > < a href = "./Entity_FuncFX.html" > Entity FuncFX< / a >
< br > < a href = "./Entity_FuncMover.html" > Entity FuncMover< / a >
< br > < a href = "./Entity_FuncSpawner.html" > Entity FuncSpawner< / a >
< br > < a href = "./Entity_MonsterBerserker.html" > Entity MonsterBerserker< / a > < a href = "./Entity_MonsterBerserker?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./Entity_TargetNull.html" > Entity TargetNull< / a >
< br > < a href = "./Entity_TriggerOnce.html" > Entity TriggerOnce< / a >
< br > < a href = "./EntityDefinition.html" > EntityDefinition< / a >
< br > < a href = "./ExampleMaps.html" > ExampleMaps< / a > < a href = "./ExampleMaps?action=AttachFile" > < img alt = "[2 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[2 attachments]" width = "7" / > < / a >
< a name = "F" > < h3 > F< / h3 > < / a > < a href = "./Floats%2C_Definevec4%2C_and_NamedEvents.html" > Floats, Definevec4, and NamedEvents< / a >
< br > < a href = "./Font_Information.html" > Font Information< / a > < a href = "./Font_Information?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./FontExamples.html" > FontExamples< / a > < a href = "./FontExamples?action=AttachFile" > < img alt = "[3 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[3 attachments]" width = "7" / > < / a >
< br > < a href = "./ForSide.html" > ForSide< / a >
< br > < a href = "./fs_game_base.html" > fs game base< / a >
< br > < a href = "./FX_Entity_Editor.html" > FX Entity Editor< / a > < a href = "./FX_Entity_Editor?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./FXEditor.html" > FXEditor< / a >
< br > < a href = "./FXEditor_Tab_-_Alpha.html" > FXEditor Tab - Alpha< / a >
< br > < a href = "./FXEditor_Tab_-_Color.html" > FXEditor Tab - Color< / a >
< br > < a href = "./FXEditor_Tab_-_Electricity.html" > FXEditor Tab - Electricity< / a >
< br > < a href = "./FXEditor_Tab_-_Emitter.html" > FXEditor Tab - Emitter< / a >
< br > < a href = "./FXEditor_Tab_-_Length.html" > FXEditor Tab - Length< / a >
< br > < a href = "./FXEditor_Tab_-_Motion.html" > FXEditor Tab - Motion< / a >
< br > < a href = "./FXEditor_Tab_-_Offset.html" > FXEditor Tab - Offset< / a >
< br > < a href = "./FXEditor_Tab_-_Orbit.html" > FXEditor Tab - Orbit< / a >
< br > < a href = "./FXEditor_Tab_-_Origin.html" > FXEditor Tab - Origin< / a >
< br > < a href = "./FXEditor_Tab_-_Physics.html" > FXEditor Tab - Physics< / a >
< br > < a href = "./FXEditor_Tab_-_Rotate.html" > FXEditor Tab - Rotate< / a >
< br > < a href = "./FXEditor_Tab_-_Size.html" > FXEditor Tab - Size< / a >
< br > < a href = "./FXEditor_Tab_-_Sprite.html" > FXEditor Tab - Sprite< / a >
< br > < a href = "./FXEditor_Tab_-_Trail.html" > FXEditor Tab - Trail< / a >
< a name = "G" > < h3 > G< / h3 > < / a > < a href = "./GameCode.html" > GameCode< / a >
< br > < a href = "./GameCodeByConcept.html" > GameCodeByConcept< / a >
< br > < a href = "./GameCodeByFile.html" > GameCodeByFile< / a >
< br > < a href = "./GettingStarted.html" > GettingStarted< / a >
< br > < a href = "./GUI_Parms.html" > GUI Parms< / a >
< br > < a href = "./GUI_Variables.html" > GUI Variables< / a >
< br > < a href = "./Guidelines_for_GUI_Editing_and_Creation.html" > Guidelines for GUI Editing and Creation< / a >
< br > < a href = "./GUIEditor.html" > GUIEditor< / a >
< a name = "H" > < h3 > H< / h3 > < / a > < a href = "./Hangar2_-_Rhodes_and_planting_the_bombs.html" > Hangar2 - Rhodes and planting the bombs< / a >
< br > < a href = "./HelpOnInstalling/WikiFarm.html" > HelpOnInstalling/WikiFarm< / a >
< br > < a href = "./HitscanDefinition.html" > HitscanDefinition< / a >
< br > < a href = "./HitscanWeapons.html" > HitscanWeapons< / a >
< br > < a href = "./HowToPackageScripts.html" > HowToPackageScripts< / a >
< br > < a href = "./Hub_-_Repairbot_Ambience_and_the_Tetranode.html" > Hub - Repairbot Ambience and the Tetranode< / a > < a href = "./Hub_-_Repairbot_Ambience_and_the_Tetranode?action=AttachFile" > < img alt = "[8 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[8 attachments]" width = "7" / > < / a >
< a name = "I" > < h3 > I< / h3 > < / a > < a href = "./InstaGib.html" > InstaGib< / a >
< a name = "L" > < h3 > L< / h3 > < / a > < a href = "./LevelEditor.html" > LevelEditor< / a > < a href = "./LevelEditor?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./LevelEditor_AITethers.html" > LevelEditor AITethers< / a >
< br > < a href = "./LevelEditor_BasicRoom.html" > LevelEditor BasicRoom< / a > < a href = "./LevelEditor_BasicRoom?action=AttachFile" > < img alt = "[12 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[12 attachments]" width = "7" / > < / a >
< br > < a href = "./LevelEditor_ChangeList.html" > LevelEditor ChangeList< / a >
< br > < a href = "./LevelEditor_Clipping.html" > LevelEditor Clipping< / a > < a href = "./LevelEditor_Clipping?action=AttachFile" > < img alt = "[4 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[4 attachments]" width = "7" / > < / a >
< br > < a href = "./LevelEditor_DifficultySettings.html" > LevelEditor DifficultySettings< / a >
< br > < a href = "./LevelEditor_EntityReference.html" > LevelEditor EntityReference< / a >
< br > < a href = "./LevelEditor_KeyboardShortcuts.html" > LevelEditor KeyboardShortcuts< / a >
< br > < a href = "./LevelEditor_Loading.html" > LevelEditor Loading< / a >
< br > < a href = "./LevelEditor_MPMapDefs.html" > LevelEditor MPMapDefs< / a > < a href = "./LevelEditor_MPMapDefs?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./LevelEditor_Performance.html" > LevelEditor Performance< / a > < a href = "./LevelEditor_Performance?action=AttachFile" > < img alt = "[3 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[3 attachments]" width = "7" / > < / a >
< br > < a href = "./LevelEditor_Q4Conversion.html" > LevelEditor Q4Conversion< / a >
< br > < a href = "./LevelEditor_Troubleshooting.html" > LevelEditor Troubleshooting< / a >
< br > < a href = "./LinuxSDK.html" > LinuxSDK< / a >
< a name = "M" > < h3 > M< / h3 > < / a > < a href = "./MakeAMod.html" > MakeAMod< / a >
< br > < a href = "./MakeAMod-DMSP.html" > MakeAMod-DMSP< / a > < a href = "./MakeAMod-DMSP?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./MakeAMod-InstaGib.html" > MakeAMod-InstaGib< / a > < a href = "./MakeAMod-InstaGib?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./MapDefinition.html" > MapDefinition< / a >
< br > < a href = "./ModDirectory.html" > ModDirectory< / a >
< br > < a href = "./ModelDefinition.html" > ModelDefinition< / a >
< br > < a href = "./ModelExportBlock.html" > ModelExportBlock< / a >
< br > < a href = "./ModView.html" > ModView< / a >
< br > < a href = "./MultiplayerEntityDefinitions.html" > MultiplayerEntityDefinitions< / a >
< a name = "N" > < h3 > N< / h3 > < / a > < a href = "./Network2_-_Network_Guardian_Battle_scripting.html" > Network2 - Network Guardian Battle scripting< / a >
< br > < a href = "./NetworkDemos.html" > NetworkDemos< / a >
< br > < a href = "./Notes_about_Envelopes/Tables.html" > Notes about Envelopes/Tables< / a > < a href = "./Notes_about_Envelopes/Tables?action=AttachFile" > < img alt = "[2 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[2 attachments]" width = "7" / > < / a >
< br > < a href = "./Notes_about_Origins.html" > Notes about Origins< / a > < a href = "./Notes_about_Origins?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< a name = "O" > < h3 > O< / h3 > < / a > < a href = "./OldUpdates.html" > OldUpdates< / a >
< a name = "P" > < h3 > P< / h3 > < / a > < a href = "./PackagingMods.html" > PackagingMods< / a >
< br > < a href = "./PK4File.html" > PK4File< / a >
< br > < a href = "./Placing_a_GUI_In_a_Map.html" > Placing a GUI In a Map< / a >
< a name = "Q" > < h3 > Q< / h3 > < / a > < a href = "./Quake4SDK.html" > Quake4SDK< / a >
< a name = "S" > < h3 > S< / h3 > < / a > < a href = "./ScriptError_RunawayLoopError.html" > ScriptError RunawayLoopError< / a >
< br > < a href = "./ScriptError_UnknownValueError.html" > ScriptError UnknownValueError< / a >
< br > < a href = "./ScriptErrors.html" > ScriptErrors< / a >
< br > < a href = "./ScriptEvent_getName.html" > ScriptEvent getName< / a >
< br > < a href = "./ScriptEvent_getTime.html" > ScriptEvent getTime< / a >
< br > < a href = "./ScriptEvent_GetWorldOrigin.html" > ScriptEvent GetWorldOrigin< / a >
< br > < a href = "./ScriptEvent_println.html" > ScriptEvent println< / a >
< br > < a href = "./ScriptEvent_SetWorldOrigin.html" > ScriptEvent SetWorldOrigin< / a >
< br > < a href = "./ScriptEvent_spawn.html" > ScriptEvent spawn< / a >
< br > < a href = "./ScriptEvent_wait.html" > ScriptEvent wait< / a >
< br > < a href = "./ScriptEvent_waitFrame.html" > ScriptEvent waitFrame< / a >
< br > < a href = "./ScriptFile.html" > ScriptFile< / a >
< br > < a href = "./ScriptFile_Events.html" > ScriptFile Events< / a >
< br > < a href = "./ScriptFiles.html" > ScriptFiles< / a >
< br > < a href = "./ScriptFunction_println.html" > ScriptFunction println< / a >
< br > < a href = "./Scripting_Actions_and_Animations.html" > Scripting Actions and Animations< / a >
< br > < a href = "./Scripting_FAQ.html" > Scripting FAQ< / a >
2021-04-11 01:32:54 +00:00
< br > < del > Scripting ScriptsAndEntities< / del > (same as < a href = "./Hub_-_Repairbot_Ambience_and_the_Tetranode.html" > Hub - Repairbot Ambience and the Tetranode< / a > )
2021-04-10 14:00:23 +00:00
< br > < a href = "./ScriptSyntax.html" > ScriptSyntax< / a >
< br > < a href = "./ScriptVariable.html" > ScriptVariable< / a >
< br > < a href = "./ServerAdmin.html" > ServerAdmin< / a >
< br > < a href = "./Sounds.html" > Sounds< / a >
< br > < a href = "./Sounds_ShaderCreation.html" > Sounds ShaderCreation< / a >
< br > < a href = "./Sounds_SoundPlacement.html" > Sounds SoundPlacement< / a > < a href = "./Sounds_SoundPlacement?action=AttachFile" > < img alt = "[2 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[2 attachments]" width = "7" / > < / a >
< a name = "T" > < h3 > T< / h3 > < / a > < a href = "./The_Properties_of_a_segment.html" > The Properties of a segment< / a > < a href = "./The_Properties_of_a_segment?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./Tutorial_ScriptEntities.html" > Tutorial ScriptEntities< / a >
< a name = "U" > < h3 > U< / h3 > < / a > < a href = "./Using_the_FX_Editor.html" > Using the FX Editor< / a > < a href = "./Using_the_FX_Editor?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./Using_the_GUIEditor.html" > Using the GUIEditor< / a >
2021-04-09 22:33:19 +00:00
< span class = "anchor" id = "line-17" > < / span > < span class = "anchor" id = "bottom" > < / span > < / div > < p id = "pageinfo" class = "info" lang = "en" dir = "ltr" > TitleIndex (last modified 2007-04-08 01:53:23)< / p >
< div id = "pagebottom" > < / div >
< / div >
< div id = "footer" >
2021-04-10 13:40:18 +00:00
< ul class = "editbar" > < li > < span class = "disabled" > Immutable Page< / span > < / li > < li > < a href = "./TitleIndex?action=info" > Info< / a > < / li > < li > < a href = "./TitleIndex?action=AttachFile" > Attachments< / a > < / li > < li >
2021-04-09 22:33:19 +00:00
< form class = "actionsmenu" method = "get" action = "" >
< div >
< label > More Actions:< / label >
< select name = "action"
onchange="if ((this.selectedIndex != 0) & &
(this.options[this.selectedIndex].disabled == false)) {
this.form.submit();
}
this.selectedIndex = 0;">
< option value = "raw" > Raw Text< / option >
< option value = "print" > Print View< / option >
< option value = "RenderAsDocbook" > Render as Docbook< / option >
< option value = "refresh" > Delete Cache< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "SpellCheck" > Check Spelling< / option >
< option value = "LikePages" > Like Pages< / option >
< option value = "LocalSiteMap" > Local Site Map< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "RenamePage" disabled class = "disabled" > Rename Page< / option >
< option value = "DeletePage" disabled class = "disabled" > Delete Page< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "MyPages" > My Pages< / option >
< option value = "SubscribeUser" > Subscribe User< / option >
< option value = "show" disabled class = "disabled" > ------------< / option >
< option value = "Despam" > Remove Spam< / option >
< option value = "PackagePages" > Package Pages< / option >
< / select >
< input type = "submit" value = "Do" >
< / div >
< script type = "text/javascript" >
<!-- // Init menu
actionsMenuInit('More Actions:');
//-->
< / script >
< / form >
< / li > < / ul >
< ul id = "credits" >
< li > < a href = "http://moinmoin.wikiwikiweb.de/" > MoinMoin Powered< / a > < / li > < li > < a href = "http://www.python.org/" > Python Powered< / a > < / li > < li > < a href = "http://validator.w3.org/check?uri=referer" > Valid HTML 4.01< / a > < / li >
< / ul >
< / div >
< / body >
< / html >