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 13:40:18 +00:00
< link rel = "Start" href = "./Quake4SDK" >
< link rel = "Alternate" title = "Wiki Markup" href = "./TitleIndex?action=raw" >
< link rel = "Alternate" media = "print" title = "Print View" href = "./TitleIndex?action=print" >
< link rel = "Search" href = "./FindPage" >
< link rel = "Index" href = "./TitleIndex" >
< link rel = "Glossary" href = "./WordIndex" >
< link rel = "Help" href = "./HelpOnFormatting" >
2021-04-09 22:33:19 +00:00
< / head >
< body lang = "en" dir = "ltr" >
< div id = "header" >
2021-04-10 13:40:18 +00:00
< div id = "logo" > < a href = "./Quake4SDK" > < 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 13:40:18 +00:00
< li class = "wikilink" > < a href = "./GettingStarted" > GettingStarted< / a > < / li > < li class = "wikilink" > < a href = "./ScriptFile" > ScriptFile< / a > < / li > < li class = "wikilink" > < a href = "./MakeAMod" > MakeAMod< / a > < / li > < li class = "wikilink" > < a href = "./LevelEditor" > LevelEditor< / a > < / li > < li class = "wikilink" > < a href = "./FXEditor" > FXEditor< / a > < / li > < li class = "wikilink" > < a href = "./GUIEditor" > GUIEditor< / a > < / li > < li class = "wikilink" > < a href = "./Sounds" > Sounds< / a > < / li > < li class = "wikilink" > < a href = "./Animations" > Animations< / a > < / li > < li class = "wikilink" > < a href = "./ArtReference" > ArtReference< / a > < / li > < li class = "wikilink" > < a href = "./DownloadableContent" > DownloadableContent< / a > < / li > < li class = "wikilink" > < a href = "./RecentChanges" > RecentChanges< / a > < / li > < li class = "wikilink" > < a href = "./FindPage" > FindPage< / a > < / li > < li class = "wikilink" > < a href = "./HelpContents" > HelpContents< / a > < / li > < li class = "current" > < a href = "./TitleIndex" > 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 13:40:18 +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" > 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" > 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 13:40:18 +00:00
< / p > < a name = "A" > < h3 > A< / h3 > < / a > < a href = "./Adding_Fonts_to_use_in_Quake_4_GUIs" > 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" > AdvancedScriptTutorial< / a >
< br > < a href = "./AnimationExamples" > 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" > Animations< / a >
< br > < a href = "./ArtExamples" > 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" > ArtReference< / a >
< br > < a href = "./ArtReference_CreatingCreatures" > ArtReference CreatingCreatures< / a > < a href = "./ArtReference_CreatingCreatures?action=AttachFile" > < img alt = "[1 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[1 attachments]" width = "7" / > < / a >
< br > < a href = "./ArtReference_CreatingModels" > 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" > 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" > ArtReference playerModels< / a >
< br > < a href = "./ArtReference_Q4Shaders" > ArtReference Q4Shaders< / a >
< br > < a href = "./ArtReference_Q4Shaders_AnimatedStrips" > 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" > ArtReference Q4Shaders Definitions< / a >
< br > < a href = "./ArtReference_Q4Shaders_Extra_Passes" > ArtReference Q4Shaders Extra Passes< / a >
< br > < a href = "./ArtReference_Q4Shaders_Guides" > ArtReference Q4Shaders Guides< / a >
< br > < a href = "./ArtReference_Q4Shaders_Models" > ArtReference Q4Shaders Models< / a >
< br > < a href = "./ArtReference_Q4Shaders_SkinFiles" > ArtReference Q4Shaders SkinFiles< / a >
< br > < a href = "./ArtReference_Q4Shaders_Tables" > ArtReference Q4Shaders Tables< / a >
< br > < a href = "./ArtReference_Q4Shaders_Textures" > ArtReference Q4Shaders Textures< / a >
< br > < a href = "./ArtReference_SpecularMaps" > 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" > AutoDownload< / a >
< a name = "B" > < h3 > B< / h3 > < / a > < a href = "./Basic_FX_file_structure" > 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" > 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" > Benchmarking< / a >
< a name = "C" > < h3 > C< / h3 > < / a > < a href = "./CommunityResources" > CommunityResources< / a >
< br > < a href = "./ConsoleCommand_ReloadScript" > ConsoleCommand ReloadScript< / a >
< br > < a href = "./Contact" > Contact< / a >
< a name = "D" > < h3 > D< / h3 > < / a > < a href = "./DamageDefinition" > DamageDefinition< / a >
< br > < a href = "./Debugging" > 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" > 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" > Declaration< / a >
< br > < a href = "./Declarations" > Declarations< / a >
< br > < a href = "./DeclarationType" > DeclarationType< / a >
< br > < a href = "./DeclarationTypes" > DeclarationTypes< / a >
< br > < a href = "./Def_Flags" > Def Flags< / a >
< br > < a href = "./Def_Types" > Def Types< / a >
< br > < a href = "./DefinitionFile" > 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" > 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" > DefinitionFiles< / a >
< br > < a href = "./DownloadableContent" > DownloadableContent< / a >
< a name = "E" > < h3 > E< / h3 > < / a > < a href = "./Effect_Creation_Walkthrough" > Effect Creation Walkthrough< / a >
< br > < a href = "./Effects_Performance" > 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" > Entity ActorDefault< / a >
< br > < a href = "./Entity_FuncElevator" > Entity FuncElevator< / a >
< br > < a href = "./Entity_FuncFX" > Entity FuncFX< / a >
< br > < a href = "./Entity_FuncMover" > Entity FuncMover< / a >
< br > < a href = "./Entity_FuncSpawner" > Entity FuncSpawner< / a >
< br > < a href = "./Entity_MonsterBerserker" > 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" > Entity TargetNull< / a >
< br > < a href = "./Entity_TriggerOnce" > Entity TriggerOnce< / a >
< br > < a href = "./EntityDefinition" > EntityDefinition< / a >
< br > < a href = "./ExampleMaps" > 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" > Floats, Definevec4, and NamedEvents< / a >
< br > < a href = "./Font_Information" > 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" > 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" > ForSide< / a >
< br > < a href = "./fs_game_base" > fs game base< / a >
< br > < a href = "./FX_Entity_Editor" > 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" > FXEditor< / a >
< br > < a href = "./FXEditor_Tab_-_Alpha" > FXEditor Tab - Alpha< / a >
< br > < a href = "./FXEditor_Tab_-_Color" > FXEditor Tab - Color< / a >
< br > < a href = "./FXEditor_Tab_-_Electricity" > FXEditor Tab - Electricity< / a >
< br > < a href = "./FXEditor_Tab_-_Emitter" > FXEditor Tab - Emitter< / a >
< br > < a href = "./FXEditor_Tab_-_Length" > FXEditor Tab - Length< / a >
< br > < a href = "./FXEditor_Tab_-_Motion" > FXEditor Tab - Motion< / a >
< br > < a href = "./FXEditor_Tab_-_Offset" > FXEditor Tab - Offset< / a >
< br > < a href = "./FXEditor_Tab_-_Orbit" > FXEditor Tab - Orbit< / a >
< br > < a href = "./FXEditor_Tab_-_Origin" > FXEditor Tab - Origin< / a >
< br > < a href = "./FXEditor_Tab_-_Physics" > FXEditor Tab - Physics< / a >
< br > < a href = "./FXEditor_Tab_-_Rotate" > FXEditor Tab - Rotate< / a >
< br > < a href = "./FXEditor_Tab_-_Size" > FXEditor Tab - Size< / a >
< br > < a href = "./FXEditor_Tab_-_Sprite" > FXEditor Tab - Sprite< / a >
< br > < a href = "./FXEditor_Tab_-_Trail" > FXEditor Tab - Trail< / a >
< a name = "G" > < h3 > G< / h3 > < / a > < a href = "./GameCode" > GameCode< / a >
< br > < a href = "./GameCodeByConcept" > GameCodeByConcept< / a >
< br > < a href = "./GameCodeByFile" > GameCodeByFile< / a >
< br > < a href = "./GettingStarted" > GettingStarted< / a >
< br > < a href = "./GUI_Parms" > GUI Parms< / a >
< br > < a href = "./GUI_Variables" > GUI Variables< / a >
< br > < a href = "./Guidelines_for_GUI_Editing_and_Creation" > Guidelines for GUI Editing and Creation< / a >
< br > < a href = "./GUIEditor" > GUIEditor< / a >
< a name = "H" > < h3 > H< / h3 > < / a > < a href = "./Hangar2_-_Rhodes_and_planting_the_bombs" > Hangar2 - Rhodes and planting the bombs< / a >
< br > < a href = "./HelpOnInstalling/WikiFarm" > HelpOnInstalling/WikiFarm< / a >
< br > < a href = "./HitscanDefinition" > HitscanDefinition< / a >
< br > < a href = "./HitscanWeapons" > HitscanWeapons< / a >
< br > < a href = "./HowToPackageScripts" > HowToPackageScripts< / a >
< br > < a href = "./Hub_-_Repairbot_Ambience_and_the_Tetranode" > 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" > InstaGib< / a >
< a name = "L" > < h3 > L< / h3 > < / a > < a href = "./LevelEditor" > 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" > LevelEditor AITethers< / a >
< br > < a href = "./LevelEditor_BasicRoom" > 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" > LevelEditor ChangeList< / a >
< br > < a href = "./LevelEditor_Clipping" > 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" > LevelEditor DifficultySettings< / a >
< br > < a href = "./LevelEditor_EntityReference" > LevelEditor EntityReference< / a >
< br > < a href = "./LevelEditor_KeyboardShortcuts" > LevelEditor KeyboardShortcuts< / a >
< br > < a href = "./LevelEditor_Loading" > LevelEditor Loading< / a >
< br > < a href = "./LevelEditor_MPMapDefs" > 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" > 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" > LevelEditor Q4Conversion< / a >
< br > < a href = "./LevelEditor_Troubleshooting" > LevelEditor Troubleshooting< / a >
< br > < a href = "./LinuxSDK" > LinuxSDK< / a >
< a name = "M" > < h3 > M< / h3 > < / a > < a href = "./MakeAMod" > MakeAMod< / a >
< br > < a href = "./MakeAMod-DMSP" > 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" > 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" > MapDefinition< / a >
< br > < a href = "./ModDirectory" > ModDirectory< / a >
< br > < a href = "./ModelDefinition" > ModelDefinition< / a >
< br > < a href = "./ModelExportBlock" > ModelExportBlock< / a >
< br > < a href = "./ModView" > ModView< / a >
< br > < a href = "./MultiplayerEntityDefinitions" > MultiplayerEntityDefinitions< / a >
< a name = "N" > < h3 > N< / h3 > < / a > < a href = "./Network2_-_Network_Guardian_Battle_scripting" > Network2 - Network Guardian Battle scripting< / a >
< br > < a href = "./NetworkDemos" > NetworkDemos< / a >
< br > < a href = "./Notes_about_Envelopes/Tables" > 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" > 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" > OldUpdates< / a >
< a name = "P" > < h3 > P< / h3 > < / a > < a href = "./PackagingMods" > PackagingMods< / a >
< br > < a href = "./PageD%27Accueil" > PageD'Accueil< / a >
< br > < a href = "./PK4File" > PK4File< / a >
< br > < a href = "./Placing_a_GUI_In_a_Map" > Placing a GUI In a Map< / a >
< br > < a href = "./P%C3%A1ginaDeInicio" > PáginaDeInicio< / a >
< br > < a href = "./P%C3%A1ginaInicial" > PáginaInicial< / a >
< br > < a href = "./P%C3%A1ginaPrincipal" > PáginaPrincipal< / a >
< a name = "Q" > < h3 > Q< / h3 > < / a > < a href = "./Quake4SDK" > Quake4SDK< / a >
< a name = "S" > < h3 > S< / h3 > < / a > < a href = "./ScriptError_RunawayLoopError" > ScriptError RunawayLoopError< / a >
< br > < a href = "./ScriptError_UnknownValueError" > ScriptError UnknownValueError< / a >
< br > < a href = "./ScriptErrors" > ScriptErrors< / a >
< br > < a href = "./ScriptEvent_getName" > ScriptEvent getName< / a >
< br > < a href = "./ScriptEvent_getTime" > ScriptEvent getTime< / a >
< br > < a href = "./ScriptEvent_GetWorldOrigin" > ScriptEvent GetWorldOrigin< / a >
< br > < a href = "./ScriptEvent_println" > ScriptEvent println< / a >
< br > < a href = "./ScriptEvent_SetWorldOrigin" > ScriptEvent SetWorldOrigin< / a >
< br > < a href = "./ScriptEvent_spawn" > ScriptEvent spawn< / a >
< br > < a href = "./ScriptEvent_wait" > ScriptEvent wait< / a >
< br > < a href = "./ScriptEvent_waitFrame" > ScriptEvent waitFrame< / a >
< br > < a href = "./ScriptFile" > ScriptFile< / a >
< br > < a href = "./ScriptFile_Events" > ScriptFile Events< / a >
< br > < a href = "./ScriptFiles" > ScriptFiles< / a >
< br > < a href = "./ScriptFunction_println" > ScriptFunction println< / a >
< br > < a href = "./Scripting_Actions_and_Animations" > Scripting Actions and Animations< / a >
< br > < a href = "./Scripting_FAQ" > Scripting FAQ< / a >
< br > < a href = "./Scripting_ScriptsAndEntities" > Scripting ScriptsAndEntities< / a > < a href = "./Scripting_ScriptsAndEntities?action=AttachFile" > < img alt = "[8 attachments]" height = "15" src = "wiki/modern/img/moin-attach.png" title = "[8 attachments]" width = "7" / > < / a >
< br > < a href = "./ScriptSyntax" > ScriptSyntax< / a >
< br > < a href = "./ScriptVariable" > ScriptVariable< / a >
< br > < a href = "./ServerAdmin" > ServerAdmin< / a >
< br > < a href = "./Sounds" > Sounds< / a >
< br > < a href = "./Sounds_ShaderCreation" > Sounds ShaderCreation< / a >
< br > < a href = "./Sounds_SoundPlacement" > 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 >
< br > < a href = "./StartSeite" > StartSeite< / a >
< br > < a href = "./StartSide" > StartSide< / a >
< br > < a href = "./SystemObject" > SystemObject< / a >
< br > < a href = "./SystemPagesGroup" > SystemPagesGroup< / a >
< br > < a href = "./SystemPagesInChineseGroup" > SystemPagesInChineseGroup< / a >
< a name = "T" > < h3 > T< / h3 > < / a > < a href = "./The_Properties_of_a_segment" > 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" > Tutorial ScriptEntities< / a >
< a name = "U" > < h3 > U< / h3 > < / a > < a href = "./Using_the_FX_Editor" > 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" > Using the GUIEditor< / a >
< a name = "V" > < h3 > V< / h3 > < / a > < a href = "./VoorPagina" > VoorPagina< / a >
< a name = "%D0%9D" > < h3 > Н < / h3 > < / a > < a href = "./%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE" > Начало< / a >
< a name = "%D7%A4" > < h3 > פ< / h3 > < / a > < a href = "./%D7%A4%D7%AA%D7%99%D7%97%D7%94" > פתיחה< / a >
< a name = "%E3%83%95" > < h3 > フ< / h3 > < / a > < a href = "./%E3%83%95%E3%83%AD%E3%83%B3%E3%83%88%E3%83%9A%E3%83%BC%E3%82%B8" > フロントページ< / a >
< a name = "%E9%A6%96" > < h3 > 首< / h3 > < / a > < a href = "./%E9%A6%96%E9%A0%81" > 首頁< / a >
< br > < a href = "./%E9%A6%96%E9%A1%B5" > 首页< / 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 >