Bram Moolenaar | b59ae59 | 2022-11-23 23:46:31 +0000 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " Language: Oblivion Language (obl) |
| 3 | " Original Creator: Ulthar Seramis |
| 4 | " Maintainer: Kat <katisntgood@gmail.com> |
| 5 | " Latest Revision: 13 November 2022 |
| 6 | |
| 7 | if exists("b:current_syntax") |
| 8 | finish |
| 9 | endif |
| 10 | |
| 11 | let s:cpo_save = &cpo |
| 12 | set cpo&vim |
| 13 | |
| 14 | " obse is case insensitive |
| 15 | syntax case ignore |
| 16 | |
| 17 | " Statements {{{ |
| 18 | syn keyword obseStatement set let to skipwhite |
| 19 | " the second part needs to be separate as to not mess up the next group |
| 20 | syn match obseStatementTwo ":=" |
| 21 | " }}} |
| 22 | |
| 23 | " Regex matched objects {{{ |
| 24 | " these are matched with regex and thus must be set first |
| 25 | syn match obseNames '\w\+' |
| 26 | syn match obseScriptNameRegion '\i\+' contained |
| 27 | syn match obseVariable '\w*\S' contained |
| 28 | syn match obseReference '\zs\w\+\>\ze\.' |
| 29 | " }}} |
| 30 | |
| 31 | " Operators {{{ |
| 32 | syn match obseOperator "\v\*" |
| 33 | syn match obseOperator "\v\-" |
| 34 | syn match obseOperator "\v\+" |
| 35 | syn match obseOperator "\v\/" |
| 36 | syn match obseOperator "\v\^" |
| 37 | syn match obseOperator "\v\=" |
| 38 | syn match obseOperator "\v\>" |
| 39 | syn match obseOperator "\v\<" |
| 40 | syn match obseOperator "\v\!" |
| 41 | syn match obseOperator "\v\&" |
| 42 | syn match obseOperator "\v\|" |
| 43 | " }}} |
| 44 | |
| 45 | " Numbers {{{ |
| 46 | syn match obseInt '\d\+' |
| 47 | syn match obseInt '[-+]\d\+' |
| 48 | syn match obseFloat '\d\+\.\d*' |
| 49 | syn match obseFloat '[-+]\d\+\.\d*' |
| 50 | " }}} |
| 51 | |
| 52 | " Comments and strings {{{ |
| 53 | syn region obseComment start=";" end="$" keepend fold contains=obseToDo |
| 54 | syn region obseString start=/"/ end=/"/ keepend fold contains=obseStringFormatting |
| 55 | syn match obseStringFormatting "%%" contained |
| 56 | syn match obseStringFormatting "%a" contained |
| 57 | syn match obseStringFormatting "%B" contained |
| 58 | syn match obseStringFormatting "%b" contained |
| 59 | syn match obseStringFormatting "%c" contained |
| 60 | syn match obseStringFormatting "%e" contained |
| 61 | syn match obseStringFormatting "%g" contained |
| 62 | syn match obseStringFormatting "%i" contained |
| 63 | syn match obseStringFormatting "%k" contained |
| 64 | syn match obseStringFormatting "%n" contained |
| 65 | syn match obseStringFormatting "%p" contained |
| 66 | syn match obseStringFormatting "%ps" contained |
| 67 | syn match obseStringFormatting "%pp" contained |
| 68 | syn match obseStringFormatting "%po" contained |
| 69 | syn match obseStringFormatting "%q" contained |
| 70 | syn match obseStringFormatting "%r" contained |
| 71 | syn match obseStringFormatting "%v" contained |
| 72 | syn match obseStringFormatting "%x" contained |
| 73 | syn match obseStringFormatting "%z" contained |
| 74 | syn match obseStringFormatting "%{" contained |
| 75 | syn match obseStringFormatting "%}" contained |
| 76 | syn match obseStringFormatting "%\d*.\d*f" contained |
| 77 | syn match obseStringFormatting "% \d*.\d*f" contained |
| 78 | syn match obseStringFormatting "%-\d*.\d*f" contained |
| 79 | syn match obseStringFormatting "%+\d*.\d*f" contained |
| 80 | syn match obseStringFormatting "%\d*.\d*e" contained |
| 81 | syn match obseStringFormatting "%-\d*.\d*e" contained |
| 82 | syn match obseStringFormatting "% \d*.\d*e" contained |
| 83 | syn match obseStringFormatting "%+\d*.\d*e" contained |
| 84 | syn keyword obseToDo contained TODO todo Todo ToDo FIXME fixme NOTE note |
| 85 | " }}} |
| 86 | |
| 87 | |
| 88 | " Conditionals {{{ |
| 89 | syn match obseCondition "If" |
| 90 | syn match obseCondition "Eval" |
| 91 | syn match obseCondition "Return" |
| 92 | syn match obseCondition "EndIf" |
| 93 | syn match obseCondition "ElseIf" |
| 94 | syn match obseCondition "Else" |
| 95 | " }}} |
| 96 | |
| 97 | " Repeat loops {{{ |
| 98 | syn match obseRepeat "Label" |
| 99 | syn match obseRepeat "GoTo" |
| 100 | syn match obseRepeat "While" |
| 101 | syn match obseRepeat "Loop" |
| 102 | syn match obseRepeat "ForEach" |
| 103 | syn match obseRepeat "Break" |
| 104 | syn match obseRepeat "Continue" |
| 105 | " }}} |
| 106 | |
| 107 | " Basic Types {{{ |
| 108 | syn keyword obseTypes array_var float int long ref reference short string_var nextgroup=obseNames skipwhite |
| 109 | syn keyword obseOtherKey Player player playerRef playerREF PlayerRef PlayerREF |
| 110 | syn keyword obseScriptName ScriptName scriptname Scriptname scn nextgroup=obseScriptNameRegion skipwhite |
| 111 | syn keyword obseBlock Begin End |
| 112 | " }}} |
| 113 | |
| 114 | " Fold {{{ |
| 115 | setlocal foldmethod=syntax |
| 116 | syn cluster obseNoFold contains=obseComment,obseString |
| 117 | syn region obseFoldIfContainer |
| 118 | \ start="^\s*\<if\>" |
| 119 | \ end="^\s*\<endif\>" |
| 120 | \ keepend extend |
| 121 | \ containedin=ALLBUT,@obseNoFold |
| 122 | \ contains=ALLBUT,obseScriptName,obseScriptNameRegion |
| 123 | syn region obseFoldIf |
| 124 | \ start="^\s*\<if\>" |
| 125 | \ end="^\s*\<endif\>" |
| 126 | \ fold |
| 127 | \ keepend |
| 128 | \ contained containedin=obseFoldIfContainer |
| 129 | \ nextgroup=obseFoldElseIf,obseFoldElse |
| 130 | \ contains=TOP,NONE |
| 131 | syn region obseFoldElseIf |
| 132 | \ start="^\s*\<elseif\>" |
| 133 | \ end="^\s*\<endif\>" |
| 134 | \ fold |
| 135 | \ keepend |
| 136 | \ contained containedin=obseFoldIfContainer |
| 137 | \ nextgroup=obseFoldElseIf,obseFoldElse |
| 138 | \ contains=TOP |
| 139 | syn region obseFoldElse |
| 140 | \ start="^\s*\<else\>" |
| 141 | \ end="^\s*\<endif\>" |
| 142 | \ fold |
| 143 | \ keepend |
| 144 | \ contained containedin=obseFoldIfContainer |
| 145 | \ contains=TOP |
| 146 | syn region obseFoldWhile |
| 147 | \ start="^\s*\<while\>" |
| 148 | \ end="^\s*\<loop\>" |
| 149 | \ fold |
| 150 | \ keepend extend |
| 151 | \ contains=TOP |
| 152 | \ containedin=ALLBUT,@obseNoFold |
| 153 | " fold for loops |
| 154 | syn region obseFoldFor |
| 155 | \ start="^\s*\<foreach\>" |
| 156 | \ end="^\s*\<loop\>" |
| 157 | \ fold |
| 158 | \ keepend extend |
| 159 | \ contains=TOP |
| 160 | \ containedin=ALLBUT,@obseNoFold |
| 161 | \ nextgroup=obseVariable |
| 162 | " }}} |
| 163 | |
| 164 | " Skills and Attributes {{{ |
| 165 | syn keyword skillAttribute |
| 166 | \ Strength |
| 167 | \ Willpower |
| 168 | \ Speed |
| 169 | \ Personality |
| 170 | \ Intelligence |
| 171 | \ Agility |
| 172 | \ Endurance |
| 173 | \ Luck |
| 174 | \ Armorer |
| 175 | \ Athletics |
| 176 | \ Blade |
| 177 | \ Block |
| 178 | \ Blunt |
| 179 | \ HandToHand |
| 180 | \ HeavyArmor |
| 181 | \ Alchemy |
| 182 | \ Alteration |
| 183 | \ Conjuration |
| 184 | \ Destruction |
| 185 | \ Illusion |
| 186 | \ Mysticism |
| 187 | \ Restoration |
| 188 | \ Acrobatics |
| 189 | \ LightArmor |
| 190 | \ Marksman |
| 191 | \ Mercantile |
| 192 | \ Security |
| 193 | \ Sneak |
| 194 | \ Speechcraft |
| 195 | " }}} |
| 196 | |
| 197 | " Block Types {{{ |
| 198 | syn keyword obseBlockType |
| 199 | \ ExitGame |
| 200 | \ ExitToMainMenu |
| 201 | \ Function |
| 202 | \ GameMode |
| 203 | \ LoadGame |
| 204 | \ MenuMode |
| 205 | \ OnActivate |
| 206 | \ OnActorDrop |
| 207 | \ OnActorEquip |
| 208 | \ OnActorUnequip |
| 209 | \ OnAdd |
| 210 | \ OnAlarm |
| 211 | \ OnAlarmTrespass |
| 212 | \ OnAlarmVictim |
| 213 | \ OnAttack |
| 214 | \ OnBlock |
| 215 | \ OnBowAttack |
| 216 | \ OnClick |
| 217 | \ OnClose |
| 218 | \ OnCreatePotion |
| 219 | \ OnCreateSpell |
| 220 | \ OnDeath |
| 221 | \ OnDodge |
| 222 | \ OnDrinkPotion |
| 223 | \ OnDrop |
| 224 | \ OnEatIngredient |
| 225 | \ OnEnchant |
| 226 | \ OnEquip |
| 227 | \ OnFallImpact |
| 228 | \ OnHealthDamage |
| 229 | \ OnHit |
| 230 | \ OnHitWith |
| 231 | \ OnKnockout |
| 232 | \ OnLoad |
| 233 | \ OnMagicApply |
| 234 | \ OnMagicCast |
| 235 | \ OnMagicEffectHit |
| 236 | \ OnMagicEffectHit2 |
| 237 | \ OnMapMarkerAdd |
| 238 | \ OnMouseover |
| 239 | \ OnMurder |
| 240 | \ OnNewGame |
| 241 | \ OnOpen |
| 242 | \ OnPackageChange |
| 243 | \ OnPackageDone |
| 244 | \ OnPackageStart |
| 245 | \ OnQuestComplete |
| 246 | \ OnRecoil |
| 247 | \ OnRelease |
| 248 | \ OnReset |
| 249 | \ OnSaveIni |
| 250 | \ OnScriptedSkillUp |
| 251 | \ OnScrollCast |
| 252 | \ OnSell |
| 253 | \ OnSkillUp |
| 254 | \ OnSoulTrap |
| 255 | \ OnSpellCast |
| 256 | \ OnStagger |
| 257 | \ OnStartCombat |
| 258 | \ OnTrigger |
| 259 | \ OnTriggerActor |
| 260 | \ OnTriggerMob |
| 261 | \ OnUnequip |
| 262 | \ OnVampireFeed |
| 263 | \ OnWaterDive |
| 264 | \ OnWaterSurface |
| 265 | \ PostLoadGame |
| 266 | \ QQQ |
| 267 | \ SaveGame |
| 268 | \ ScriptEffectFinish |
| 269 | \ ScriptEffectStart |
| 270 | \ ScriptEffectUpdate |
| 271 | " }}} |
| 272 | |
| 273 | " Functions {{{ |
| 274 | " CS functions {{{ |
| 275 | syn keyword csFunction |
| 276 | \ Activate |
| 277 | \ AddAchievement |
| 278 | \ AddFlames |
| 279 | \ AddItem |
| 280 | \ AddScriptPackage |
| 281 | \ AddSpell |
| 282 | \ AddTopic |
| 283 | \ AdvSkill |
| 284 | \ AdvancePCLevel |
| 285 | \ AdvancePCSkill |
| 286 | \ Autosave |
| 287 | \ CanHaveFlames |
| 288 | \ CanPayCrimeGold |
| 289 | \ Cast |
| 290 | \ ClearOwnership |
| 291 | \ CloseCurrentOblivionGate |
| 292 | \ CloseOblivionGate |
| 293 | \ CompleteQuest |
| 294 | \ CreateFullActorCopy |
| 295 | \ DeleteFullActorCopy |
| 296 | \ Disable |
| 297 | \ DisableLinkedPathPoints |
| 298 | \ DisablePlayerControls |
| 299 | \ Dispel |
| 300 | \ DispelAllSpells |
| 301 | \ Drop |
| 302 | \ DropMe |
| 303 | \ DuplicateAllItems |
| 304 | \ DuplicateNPCStats |
| 305 | \ Enable |
| 306 | \ EnableFastTravel |
| 307 | \ EnableLinkedPathPoints |
| 308 | \ EnablePlayerControls |
| 309 | \ EquipItem |
| 310 | \ EssentialDeathReload |
| 311 | \ EvaluatePackage |
| 312 | \ ForceAV |
| 313 | \ ForceActorValue |
| 314 | \ ForceCloseOblivionGate |
| 315 | \ ForceFlee |
| 316 | \ ForceTakeCover |
| 317 | \ ForceWeather |
| 318 | \ GetAV |
| 319 | \ GetActionRef |
| 320 | \ GetActorValue |
| 321 | \ GetAlarmed |
| 322 | \ GetAmountSoldStolen |
| 323 | \ GetAngle |
| 324 | \ GetArmorRating |
| 325 | \ GetArmorRatingUpperBody |
| 326 | \ GetAttacked |
| 327 | \ GetBarterGold |
| 328 | \ GetBaseAV |
| 329 | \ GetBaseActorValue |
| 330 | \ GetButtonPressed |
| 331 | \ GetClassDefaultMatch |
| 332 | \ GetClothingValue |
| 333 | \ GetContainer |
| 334 | \ GetCrime |
| 335 | \ GetCrimeGold |
| 336 | \ GetCrimeKnown |
| 337 | \ GetCurrentAIPackage |
| 338 | \ GetCurrentAIProcedure |
| 339 | \ GetCurrentTime |
| 340 | \ GetCurrentWeatherPercent |
| 341 | \ GetDayOfWeek |
| 342 | \ GetDead |
| 343 | \ GetDeadCount |
| 344 | \ GetDestroyed |
| 345 | \ GetDetected |
| 346 | \ GetDetectionLevel |
| 347 | \ GetDisabled |
| 348 | \ GetDisposition |
| 349 | \ GetDistance |
| 350 | \ GetDoorDefaultOpen |
| 351 | \ GetEquipped |
| 352 | \ GetFactionRank |
| 353 | \ GetFactionRankDifference |
| 354 | \ GetFactionReaction |
| 355 | \ GetFatiguePercentage |
| 356 | \ GetForceRun |
| 357 | \ GetForceSneak |
| 358 | \ GetFriendHit |
| 359 | \ GetFurnitureMarkerID |
| 360 | \ GetGS |
| 361 | \ GetGameSetting |
| 362 | \ GetGlobalValue |
| 363 | \ GetGold |
| 364 | \ GetHeadingAngle |
| 365 | \ GetIdleDoneOnce |
| 366 | \ GetIgnoreFriendlyHits |
| 367 | \ GetInCell |
| 368 | \ GetInCellParam |
| 369 | \ GetInFaction |
| 370 | \ GetInSameCell |
| 371 | \ GetInWorldspace |
| 372 | \ GetInvestmentGold |
| 373 | \ GetIsAlerted |
| 374 | \ GetIsClass |
| 375 | \ GetIsClassDefault |
| 376 | \ GetIsCreature |
| 377 | \ GetIsCurrentPackage |
| 378 | \ GetIsCurrentWeather |
| 379 | \ GetIsGhost |
| 380 | \ GetIsID |
| 381 | \ GetIsPlayableRace |
| 382 | \ GetIsPlayerBirthsign |
| 383 | \ GetIsRace |
| 384 | \ GetIsReference |
| 385 | \ GetIsSex |
| 386 | \ GetIsUsedItem |
| 387 | \ GetIsUsedItemType |
| 388 | \ GetItemCount |
| 389 | \ GetKnockedState |
| 390 | \ GetLOS |
| 391 | \ GetLevel |
| 392 | \ GetLockLevel |
| 393 | \ GetLocked |
| 394 | \ GetMenuHasTrait |
| 395 | \ GetName |
| 396 | \ GetNoRumors |
| 397 | \ GetOffersServicesNow |
| 398 | \ GetOpenState |
| 399 | \ GetPCExpelled |
| 400 | \ GetPCFactionAttack |
| 401 | \ GetPCFactionMurder |
| 402 | \ GetPCFactionSteal |
| 403 | \ GetPCFactionSubmitAuthority |
| 404 | \ GetPCFame |
| 405 | \ GetPCInFaction |
| 406 | \ GetPCInfamy |
| 407 | \ GetPCIsClass |
| 408 | \ GetPCIsRace |
| 409 | \ GetPCIsSex |
| 410 | \ GetPCMiscStat |
| 411 | \ GetPCSleepHours |
| 412 | \ GetPackageTarget |
| 413 | \ GetParentRef |
| 414 | \ GetPersuasionNumber |
| 415 | \ GetPlayerControlsDisabled |
| 416 | \ GetPlayerHasLastRiddenHorse |
| 417 | \ GetPlayerInSEWorld |
| 418 | \ GetPos |
| 419 | \ GetQuestRunning |
| 420 | \ GetQuestVariable |
| 421 | \ GetRandomPercent |
| 422 | \ GetRestrained |
| 423 | \ GetScale |
| 424 | \ GetScriptVariable |
| 425 | \ GetSecondsPassed |
| 426 | \ GetSelf |
| 427 | \ GetShouldAttack |
| 428 | \ GetSitting |
| 429 | \ GetSleeping |
| 430 | \ GetStage |
| 431 | \ GetStageDone |
| 432 | \ GetStartingAngle |
| 433 | \ GetStartingPos |
| 434 | \ GetTalkedToPC |
| 435 | \ GetTalkedToPCParam |
| 436 | \ GetTimeDead |
| 437 | \ GetTotalPersuasionNumber |
| 438 | \ GetTrespassWarningLevel |
| 439 | \ GetUnconscious |
| 440 | \ GetUsedItemActivate |
| 441 | \ GetUsedItemLevel |
| 442 | \ GetVampire |
| 443 | \ GetWalkSpeed |
| 444 | \ GetWeaponAnimType |
| 445 | \ GetWeaponSkillType |
| 446 | \ GetWindSpeed |
| 447 | \ GoToJail |
| 448 | \ HasFlames |
| 449 | \ HasMagicEffect |
| 450 | \ HasVampireFed |
| 451 | \ IsActionRef |
| 452 | \ IsActor |
| 453 | \ IsActorAVictim |
| 454 | \ IsActorDetected |
| 455 | \ IsActorEvil |
| 456 | \ IsActorUsingATorch |
| 457 | \ IsActorsAIOff |
| 458 | \ IsAnimPlayer |
| 459 | \ IsCellOwner |
| 460 | \ IsCloudy |
| 461 | \ IsContinuingPackagePCNear |
| 462 | \ IsCurrentFurnitureObj |
| 463 | \ IsCurrentFurnitureRef |
| 464 | \ IsEssential |
| 465 | \ IsFacingUp |
| 466 | \ IsGuard |
| 467 | \ IsHorseStolen |
| 468 | \ IsIdlePlaying |
| 469 | \ IsInCombat |
| 470 | \ IsInDangerousWater |
| 471 | \ IsInInterior |
| 472 | \ IsInMyOwnedCell |
| 473 | \ IsLeftUp |
| 474 | \ IsOwner |
| 475 | \ IsPCAMurderer |
| 476 | \ IsPCSleeping |
| 477 | \ IsPlayerInJail |
| 478 | \ IsPlayerMovingIntoNewSpace |
| 479 | \ IsPlayersLastRiddenHorse |
| 480 | \ IsPleasant |
| 481 | \ IsRaining |
| 482 | \ IsRidingHorse |
| 483 | \ IsRunning |
| 484 | \ IsShieldOut |
| 485 | \ IsSneaking |
| 486 | \ IsSnowing |
| 487 | \ IsSpellTarget |
| 488 | \ IsSwimming |
| 489 | \ IsTalking |
| 490 | \ IsTimePassing |
| 491 | \ IsTorchOut |
| 492 | \ IsTrespassing |
| 493 | \ IsTurnArrest |
| 494 | \ IsWaiting |
| 495 | \ IsWeaponOut |
| 496 | \ IsXBox |
| 497 | \ IsYielding |
| 498 | \ Kill |
| 499 | \ KillActor |
| 500 | \ KillAllActors |
| 501 | \ Lock |
| 502 | \ Look |
| 503 | \ LoopGroup |
| 504 | \ Message |
| 505 | \ MessageBox |
| 506 | \ ModAV |
| 507 | \ ModActorValue |
| 508 | \ ModAmountSoldStolen |
| 509 | \ ModBarterGold |
| 510 | \ ModCrimeGold |
| 511 | \ ModDisposition |
| 512 | \ ModFactionRank |
| 513 | \ ModFactionReaction |
| 514 | \ ModPCAttribute |
| 515 | \ ModPCA |
| 516 | \ ModPCFame |
| 517 | \ ModPCInfamy |
| 518 | \ ModPCMiscStat |
| 519 | \ ModPCSkill |
| 520 | \ ModPCS |
| 521 | \ ModScale |
| 522 | \ MoveTo |
| 523 | \ MoveToMarker |
| 524 | \ PCB |
| 525 | \ PayFine |
| 526 | \ PayFineThief |
| 527 | \ PickIdle |
| 528 | \ PlaceAtMe |
| 529 | \ PlayBink |
| 530 | \ PlayGroup |
| 531 | \ PlayMagicEffectVisuals |
| 532 | \ PlayMagicShaderVisuals |
| 533 | \ PlaySound |
| 534 | \ PlaySound3D |
| 535 | \ PositionCell |
| 536 | \ PositionWorld |
| 537 | \ PreloadMagicEffect |
| 538 | \ PurgeCellBuffers |
| 539 | \ PushActorAway |
| 540 | \ RefreshTopicList |
| 541 | \ ReleaseWeatherOverride |
| 542 | \ RemoveAllItems |
| 543 | \ RemoveFlames |
| 544 | \ RemoveItem |
| 545 | \ RemoveMe |
| 546 | \ RemoveScriptPackage |
| 547 | \ RemoveSpell |
| 548 | \ Reset3DState |
| 549 | \ ResetFallDamageTimer |
| 550 | \ ResetHealth |
| 551 | \ ResetInterior |
| 552 | \ Resurrect |
| 553 | \ Rotate |
| 554 | \ SCAOnActor |
| 555 | \ SameFaction |
| 556 | \ SameFactionAsPC |
| 557 | \ SameRace |
| 558 | \ SameRaceAsPC |
| 559 | \ SameSex |
| 560 | \ SameSexAsPC |
| 561 | \ Say |
| 562 | \ SayTo |
| 563 | \ ScriptEffectElapsedSeconds |
| 564 | \ SelectPlayerSpell |
| 565 | \ SendTrespassAlarm |
| 566 | \ SetAV |
| 567 | \ SetActorAlpha |
| 568 | \ SetActorFullName |
| 569 | \ SetActorRefraction |
| 570 | \ SetActorValue |
| 571 | \ SetActorsAI |
| 572 | \ SetAlert |
| 573 | \ SetAllReachable |
| 574 | \ SetAllVisible |
| 575 | \ SetAngle |
| 576 | \ SetAtStart |
| 577 | \ SetBarterGold |
| 578 | \ SetCellFullName |
| 579 | \ SetCellOwnership |
| 580 | \ SetCellPublicFlag |
| 581 | \ SetClass |
| 582 | \ SetCrimeGold |
| 583 | \ SetDestroyed |
| 584 | \ SetDoorDefaultOpen |
| 585 | \ SetEssential |
| 586 | \ SetFactionRank |
| 587 | \ SetFactionReaction |
| 588 | \ SetForceRun |
| 589 | \ SetForceSneak |
| 590 | \ SetGhost |
| 591 | \ SetIgnoreFriendlyHits |
| 592 | \ SetInCharGen |
| 593 | \ SetInvestmentGold |
| 594 | \ SetItemValue |
| 595 | \ SetLevel |
| 596 | \ SetNoAvoidance |
| 597 | \ SetNoRumors |
| 598 | \ SetOpenState |
| 599 | \ SetOwnership |
| 600 | \ SetPCExpelled |
| 601 | \ SetPCFactionAttack |
| 602 | \ SetPCFactionMurder |
| 603 | \ SetPCFactionSteal |
| 604 | \ SetPCFactionSubmitAuthority |
| 605 | \ SetPCFame |
| 606 | \ SetPCInfamy |
| 607 | \ SetPCSleepHours |
| 608 | \ SetPackDuration |
| 609 | \ SetPlayerBirthsign |
| 610 | \ SetPlayerInSEWorld |
| 611 | \ SetPos |
| 612 | \ SetQuestObject |
| 613 | \ SetRestrained |
| 614 | \ SetRigidBodyMass |
| 615 | \ SetScale |
| 616 | \ SetSceneIsComplex |
| 617 | \ SetShowQuestItems |
| 618 | \ SetSize |
| 619 | \ SetStage |
| 620 | \ SetUnconscious |
| 621 | \ SetWeather |
| 622 | \ ShowBirthsignMenu |
| 623 | \ ShowClassMenu |
| 624 | \ ShowDialogSubtitles |
| 625 | \ ShowEnchantment |
| 626 | \ ShowMap |
| 627 | \ ShowRaceMenu |
| 628 | \ ShowSpellMaking |
| 629 | \ SkipAnim |
| 630 | \ StartCombat |
| 631 | \ StartConversation |
| 632 | \ StartQuest |
| 633 | \ StopCombat |
| 634 | \ StopCombatAlarmOnActor |
| 635 | \ StopLook |
| 636 | \ StopMagicEffectVisuals |
| 637 | \ StopMagicShaderVisuals |
| 638 | \ StopQuest |
| 639 | \ StopWaiting |
| 640 | \ StreamMusic |
| 641 | \ This |
| 642 | \ ToggleActorsAI |
| 643 | \ TrapUpdate |
| 644 | \ TriggerHitShader |
| 645 | \ UnequipItem |
| 646 | \ Unlock |
| 647 | \ VampireFeed |
| 648 | \ Wait |
| 649 | \ WakeUpPC |
| 650 | \ WhichServiceMenu |
| 651 | \ Yield |
| 652 | \ evp |
| 653 | \ pms |
| 654 | \ saa |
| 655 | \ sms |
| 656 | " }}} |
| 657 | |
| 658 | " OBSE Functions {{{ |
| 659 | syn keyword obseFunction |
| 660 | \ abs |
| 661 | \ acos |
| 662 | \ activate2 |
| 663 | \ actorvaluetocode |
| 664 | \ actorvaluetostring |
| 665 | \ actorvaluetostringc |
| 666 | \ addeffectitem |
| 667 | \ addeffectitemc |
| 668 | \ addfulleffectitem |
| 669 | \ addfulleffectitemc |
| 670 | \ additemns |
| 671 | \ addmagiceffectcounter |
| 672 | \ addmagiceffectcounterc |
| 673 | \ addmecounter |
| 674 | \ addmecounterc |
| 675 | \ addspellns |
| 676 | \ addtoleveledlist |
| 677 | \ ahammerkey |
| 678 | \ animpathincludes |
| 679 | \ appendtoname |
| 680 | \ asciitochar |
| 681 | \ asin |
| 682 | \ atan |
| 683 | \ atan2 |
| 684 | \ avstring |
| 685 | \ calcleveleditem |
| 686 | \ calclevitemnr |
| 687 | \ calclevitems |
| 688 | \ cancastpower |
| 689 | \ cancorpsecheck |
| 690 | \ canfasttravelfromworld |
| 691 | \ cantraveltomapmarker |
| 692 | \ ceil |
| 693 | \ chartoascii |
| 694 | \ clearactivequest |
| 695 | \ clearhotkey |
| 696 | \ clearleveledlist |
| 697 | \ clearownershipt |
| 698 | \ clearplayerslastriddenhorse |
| 699 | \ clickmenubutton |
| 700 | \ cloneform |
| 701 | \ closeallmenus |
| 702 | \ closetextinput |
| 703 | \ colvec |
| 704 | \ comparefemalebipedpath |
| 705 | \ comparefemalegroundpath |
| 706 | \ comparefemaleiconpath |
| 707 | \ compareiconpath |
| 708 | \ comparemalebipedpath |
| 709 | \ comparemalegroundpath |
| 710 | \ comparemaleiconpath |
| 711 | \ comparemodelpath |
| 712 | \ comparename |
| 713 | \ comparenames |
| 714 | \ comparescripts |
| 715 | \ con_cal |
| 716 | \ con_getinisetting |
| 717 | \ con_hairtint |
| 718 | \ con_loadgame |
| 719 | \ con_modwatershader |
| 720 | \ con_playerspellbook |
| 721 | \ con_quitgame |
| 722 | \ con_refreshini |
| 723 | \ con_runmemorypass |
| 724 | \ con_save |
| 725 | \ con_saveini |
| 726 | \ con_setcamerafov |
| 727 | \ con_setclipdist |
| 728 | \ con_setfog |
| 729 | \ con_setgamesetting |
| 730 | \ con_setgamma |
| 731 | \ con_sethdrparam |
| 732 | \ con_setimagespaceglow |
| 733 | \ con_setinisetting |
| 734 | \ con_setskyparam |
| 735 | \ con_settargetrefraction |
| 736 | \ con_settargetrefractionfire |
| 737 | \ con_sexchange |
| 738 | \ con_tcl |
| 739 | \ con_tfc |
| 740 | \ con_tgm |
| 741 | \ con_toggleai |
| 742 | \ con_togglecombatai |
| 743 | \ con_toggledetection |
| 744 | \ con_togglemapmarkers |
| 745 | \ con_togglemenus |
| 746 | \ con_waterdeepcolor |
| 747 | \ con_waterreflectioncolor |
| 748 | \ con_watershallowcolor |
| 749 | \ copyalleffectitems |
| 750 | \ copyeyes |
| 751 | \ copyfemalebipedpath |
| 752 | \ copyfemalegroundpath |
| 753 | \ copyfemaleiconpath |
| 754 | \ copyhair |
| 755 | \ copyiconpath |
| 756 | \ copyir |
| 757 | \ copymalebipedpath |
| 758 | \ copymalegroundpath |
| 759 | \ copymaleiconpath |
| 760 | \ copymodelpath |
| 761 | \ copyname |
| 762 | \ copyntheffectitem |
| 763 | \ copyrace |
| 764 | \ cos |
| 765 | \ cosh |
| 766 | \ createtempref |
| 767 | \ creaturehasnohead |
| 768 | \ creaturehasnoleftarm |
| 769 | \ creaturehasnomovement |
| 770 | \ creaturehasnorightarm |
| 771 | \ creaturenocombatinwater |
| 772 | \ creatureusesweaponandshield |
| 773 | \ dacos |
| 774 | \ dasin |
| 775 | \ datan |
| 776 | \ datan2 |
| 777 | \ dcos |
| 778 | \ dcosh |
| 779 | \ debugprint |
| 780 | \ deletefrominputtext |
| 781 | \ deletereference |
| 782 | \ disablecontrol |
| 783 | \ disablekey |
| 784 | \ disablemouse |
| 785 | \ dispatchevent |
| 786 | \ dispelnthactiveeffect |
| 787 | \ dispelnthae |
| 788 | \ dsin |
| 789 | \ dsinh |
| 790 | \ dtan |
| 791 | \ dtanh |
| 792 | \ enablecontrol |
| 793 | \ enablekey |
| 794 | \ enablemouse |
| 795 | \ equipitem2 |
| 796 | \ equipitem2ns |
| 797 | \ equipitemns |
| 798 | \ equipitemsilent |
| 799 | \ equipme |
| 800 | \ eval |
| 801 | \ evaluatepackage |
| 802 | \ eventhandlerexist |
| 803 | \ exp |
| 804 | \ factionhasspecialcombat |
| 805 | \ fileexists |
| 806 | \ floor |
| 807 | \ fmod |
| 808 | \ forcecolumnvector |
| 809 | \ forcerowvector |
| 810 | \ generateidentitymatrix |
| 811 | \ generaterotationmatrix |
| 812 | \ generatezeromatrix |
| 813 | \ getactiveeffectcasters |
| 814 | \ getactiveeffectcodes |
| 815 | \ getactiveeffectcount |
| 816 | \ getactivemenucomponentid |
| 817 | \ getactivemenufilter |
| 818 | \ getactivemenumode |
| 819 | \ getactivemenuobject |
| 820 | \ getactivemenuref |
| 821 | \ getactivemenuselection |
| 822 | \ getactivequest |
| 823 | \ getactiveuicomponentfullname |
| 824 | \ getactiveuicomponentid |
| 825 | \ getactiveuicomponentname |
| 826 | \ getactoralpha |
| 827 | \ getactorbaselevel |
| 828 | \ getactorlightamount |
| 829 | \ getactormaxlevel |
| 830 | \ getactormaxswimbreath |
| 831 | \ getactorminlevel |
| 832 | \ getactorpackages |
| 833 | \ getactorsoullevel |
| 834 | \ getactorvaluec |
| 835 | \ getalchmenuapparatus |
| 836 | \ getalchmenuingredient |
| 837 | \ getalchmenuingredientcount |
| 838 | \ getallies |
| 839 | \ getallmodlocaldata |
| 840 | \ getaltcontrol2 |
| 841 | \ getapbowench |
| 842 | \ getapench |
| 843 | \ getapparatustype |
| 844 | \ getappoison |
| 845 | \ getarmorar |
| 846 | \ getarmortype |
| 847 | \ getarrayvariable |
| 848 | \ getarrowprojectilebowenchantment |
| 849 | \ getarrowprojectileenchantment |
| 850 | \ getarrowprojectilepoison |
| 851 | \ getattackdamage |
| 852 | \ getavc |
| 853 | \ getavforbaseactor |
| 854 | \ getavforbaseactorc |
| 855 | \ getavmod |
| 856 | \ getavmodc |
| 857 | \ getavskillmastery |
| 858 | \ getavskillmasteryc |
| 859 | \ getbarteritem |
| 860 | \ getbarteritemquantity |
| 861 | \ getbaseactorvaluec |
| 862 | \ getbaseav2 |
| 863 | \ getbaseav2c |
| 864 | \ getbaseav3 |
| 865 | \ getbaseav3c |
| 866 | \ getbaseitems |
| 867 | \ getbaseobject |
| 868 | \ getbipediconpath |
| 869 | \ getbipedmodelpath |
| 870 | \ getbipedslotmask |
| 871 | \ getbirthsignspells |
| 872 | \ getbookcantbetaken |
| 873 | \ getbookisscroll |
| 874 | \ getbooklength |
| 875 | \ getbookskilltaught |
| 876 | \ getbooktext |
| 877 | \ getboundingbox |
| 878 | \ getboundingradius |
| 879 | \ getcalcalllevels |
| 880 | \ getcalceachincount |
| 881 | \ getcallingscript |
| 882 | \ getcellbehavesasexterior |
| 883 | \ getcellchanged |
| 884 | \ getcellclimate |
| 885 | \ getcelldetachtime |
| 886 | \ getcellfactionrank |
| 887 | \ getcelllighting |
| 888 | \ getcellmusictype |
| 889 | \ getcellnorthrotation |
| 890 | \ getcellresethours |
| 891 | \ getcellwatertype |
| 892 | \ getchancenone |
| 893 | \ getclass |
| 894 | \ getclassattribute |
| 895 | \ getclassmenuhighlightedclass |
| 896 | \ getclassmenuselectedclass |
| 897 | \ getclassskill |
| 898 | \ getclassskills |
| 899 | \ getclassspecialization |
| 900 | \ getclimatehasmasser |
| 901 | \ getclimatehassecunda |
| 902 | \ getclimatemoonphaselength |
| 903 | \ getclimatesunrisebegin |
| 904 | \ getclimatesunriseend |
| 905 | \ getclimatesunsetbegin |
| 906 | \ getclimatesunsetend |
| 907 | \ getclimatevolatility |
| 908 | \ getclosesound |
| 909 | \ getcloudspeedlower |
| 910 | \ getcloudspeedupper |
| 911 | \ getcombatspells |
| 912 | \ getcombatstyle |
| 913 | \ getcombatstyleacrobaticsdodgechance |
| 914 | \ getcombatstyleattackchance |
| 915 | \ getcombatstyleattackduringblockmult |
| 916 | \ getcombatstyleattacknotunderattackmult |
| 917 | \ getcombatstyleattackskillmodbase |
| 918 | \ getcombatstyleattackskillmodmult |
| 919 | \ getcombatstyleattackunderattackmult |
| 920 | \ getcombatstyleblockchance |
| 921 | \ getcombatstyleblocknotunderattackmult |
| 922 | \ getcombatstyleblockskillmodbase |
| 923 | \ getcombatstyleblockskillmodmult |
| 924 | \ getcombatstyleblockunderattackmult |
| 925 | \ getcombatstylebuffstandoffdist |
| 926 | \ getcombatstyledodgebacknotunderattackmult |
| 927 | \ getcombatstyledodgebacktimermax |
| 928 | \ getcombatstyledodgebacktimermin |
| 929 | \ getcombatstyledodgebackunderattackmult |
| 930 | \ getcombatstyledodgechance |
| 931 | \ getcombatstyledodgefatiguemodbase |
| 932 | \ getcombatstyledodgefatiguemodmult |
| 933 | \ getcombatstyledodgefwattackingmult |
| 934 | \ getcombatstyledodgefwnotattackingmult |
| 935 | \ getcombatstyledodgefwtimermax |
| 936 | \ getcombatstyledodgefwtimermin |
| 937 | \ getcombatstyledodgelrchance |
| 938 | \ getcombatstyledodgelrtimermax |
| 939 | \ getcombatstyledodgelrtimermin |
| 940 | \ getcombatstyledodgenotunderattackmult |
| 941 | \ getcombatstyledodgeunderattackmult |
| 942 | \ getcombatstyleencumberedspeedmodbase |
| 943 | \ getcombatstyleencumberedspeedmodmult |
| 944 | \ getcombatstylefleeingdisabled |
| 945 | \ getcombatstylegroupstandoffdist |
| 946 | \ getcombatstyleh2hbonustoattack |
| 947 | \ getcombatstyleholdtimermax |
| 948 | \ getcombatstyleholdtimermin |
| 949 | \ getcombatstyleidletimermax |
| 950 | \ getcombatstyleidletimermin |
| 951 | \ getcombatstyleignorealliesinarea |
| 952 | \ getcombatstylekobonustoattack |
| 953 | \ getcombatstylekobonustopowerattack |
| 954 | \ getcombatstylemeleealertok |
| 955 | \ getcombatstylepowerattackchance |
| 956 | \ getcombatstylepowerattackfatiguemodbase |
| 957 | \ getcombatstylepowerattackfatiguemodmult |
| 958 | \ getcombatstyleprefersranged |
| 959 | \ getcombatstylerangedstandoffdist |
| 960 | \ getcombatstylerangemaxmult |
| 961 | \ getcombatstylerangeoptimalmult |
| 962 | \ getcombatstylerejectsyields |
| 963 | \ getcombatstylerushattackchance |
| 964 | \ getcombatstylerushattackdistmult |
| 965 | \ getcombatstylestaggerbonustoattack |
| 966 | \ getcombatstylestaggerbonustopowerattack |
| 967 | \ getcombatstyleswitchdistmelee |
| 968 | \ getcombatstyleswitchdistranged |
| 969 | \ getcombatstylewillyield |
| 970 | \ getcombattarget |
| 971 | \ getcompletedquests |
| 972 | \ getcontainermenuview |
| 973 | \ getcontainerrespawns |
| 974 | \ getcontrol |
| 975 | \ getcreaturebasescale |
| 976 | \ getcreaturecombatskill |
| 977 | \ getcreatureflies |
| 978 | \ getcreaturemagicskill |
| 979 | \ getcreaturemodelpaths |
| 980 | \ getcreaturereach |
| 981 | \ getcreaturesoullevel |
| 982 | \ getcreaturesound |
| 983 | \ getcreaturesoundbase |
| 984 | \ getcreaturestealthskill |
| 985 | \ getcreatureswims |
| 986 | \ getcreaturetype |
| 987 | \ getcreaturewalks |
| 988 | \ getcrosshairref |
| 989 | \ getcurrentcharge |
| 990 | \ getcurrentclimateid |
| 991 | \ getcurrenteditorpackage |
| 992 | \ getcurrenteventname |
| 993 | \ getcurrenthealth |
| 994 | \ getcurrentpackage |
| 995 | \ getcurrentpackageprocedure |
| 996 | \ getcurrentquests |
| 997 | \ getcurrentregion |
| 998 | \ getcurrentregions |
| 999 | \ getcurrentscript |
| 1000 | \ getcurrentsoullevel |
| 1001 | \ getcurrentweatherid |
| 1002 | \ getcursorpos |
| 1003 | \ getdebugselection |
| 1004 | \ getdescription |
| 1005 | \ getdoorteleportrot |
| 1006 | \ getdoorteleportx |
| 1007 | \ getdoorteleporty |
| 1008 | \ getdoorteleportz |
| 1009 | \ geteditorid |
| 1010 | \ geteditorsize |
| 1011 | \ getenchantment |
| 1012 | \ getenchantmentcharge |
| 1013 | \ getenchantmentcost |
| 1014 | \ getenchantmenttype |
| 1015 | \ getenchmenubaseitem |
| 1016 | \ getenchmenuenchitem |
| 1017 | \ getenchmenusoulgem |
| 1018 | \ getequipmentslot |
| 1019 | \ getequipmentslotmask |
| 1020 | \ getequippedcurrentcharge |
| 1021 | \ getequippedcurrenthealth |
| 1022 | \ getequippeditems |
| 1023 | \ getequippedobject |
| 1024 | \ getequippedtorchtimeleft |
| 1025 | \ getequippedweaponpoison |
| 1026 | \ geteyes |
| 1027 | \ getfactions |
| 1028 | \ getfalltimer |
| 1029 | \ getfirstref |
| 1030 | \ getfirstrefincell |
| 1031 | \ getfogdayfar |
| 1032 | \ getfogdaynear |
| 1033 | \ getfognightfar |
| 1034 | \ getfognightnear |
| 1035 | \ getfollowers |
| 1036 | \ getformfrommod |
| 1037 | \ getformidstring |
| 1038 | \ getfps |
| 1039 | \ getfullgoldvalue |
| 1040 | \ getgamedifficulty |
| 1041 | \ getgameloaded |
| 1042 | \ getgamerestarted |
| 1043 | \ getgodmode |
| 1044 | \ getgoldvalue |
| 1045 | \ getgridstoload |
| 1046 | \ getgroundsurfacematerial |
| 1047 | \ gethair |
| 1048 | \ gethaircolor |
| 1049 | \ gethdrvalue |
| 1050 | \ gethidesamulet |
| 1051 | \ gethidesrings |
| 1052 | \ gethighactors |
| 1053 | \ gethorse |
| 1054 | \ gethotkeyitem |
| 1055 | \ geticonpath |
| 1056 | \ getignoresresistance |
| 1057 | \ getingredient |
| 1058 | \ getingredientchance |
| 1059 | \ getinputtext |
| 1060 | \ getinventoryobject |
| 1061 | \ getinvrefsforitem |
| 1062 | \ getitems |
| 1063 | \ getkeyname |
| 1064 | \ getkeypress |
| 1065 | \ getlastcreatedpotion |
| 1066 | \ getlastcreatedspell |
| 1067 | \ getlastenchanteditem |
| 1068 | \ getlastsigilstonecreateditem |
| 1069 | \ getlastsigilstoneenchanteditem |
| 1070 | \ getlastss |
| 1071 | \ getlastsscreated |
| 1072 | \ getlastssitem |
| 1073 | \ getlasttransactionitem |
| 1074 | \ getlasttransactionquantity |
| 1075 | \ getlastuniquecreatedpotion |
| 1076 | \ getlastusedsigilstone |
| 1077 | \ getlevcreaturetemplate |
| 1078 | \ getleveledspells |
| 1079 | \ getlevitembylevel |
| 1080 | \ getlevitemindexbyform |
| 1081 | \ getlevitemindexbylevel |
| 1082 | \ getlightduration |
| 1083 | \ getlightningfrequency |
| 1084 | \ getlightradius |
| 1085 | \ getlightrgb |
| 1086 | \ getlinkeddoor |
| 1087 | \ getloadedtypearray |
| 1088 | \ getlocalgravity |
| 1089 | \ getloopsound |
| 1090 | \ getlowactors |
| 1091 | \ getluckmodifiedskill |
| 1092 | \ getmagiceffectareasound |
| 1093 | \ getmagiceffectareasoundc |
| 1094 | \ getmagiceffectbarterfactor |
| 1095 | \ getmagiceffectbarterfactorc |
| 1096 | \ getmagiceffectbasecost |
| 1097 | \ getmagiceffectbasecostc |
| 1098 | \ getmagiceffectboltsound |
| 1099 | \ getmagiceffectboltsoundc |
| 1100 | \ getmagiceffectcastingsound |
| 1101 | \ getmagiceffectcastingsoundc |
| 1102 | \ getmagiceffectchars |
| 1103 | \ getmagiceffectcharsc |
| 1104 | \ getmagiceffectcode |
| 1105 | \ getmagiceffectcounters |
| 1106 | \ getmagiceffectcountersc |
| 1107 | \ getmagiceffectenchantfactor |
| 1108 | \ getmagiceffectenchantfactorc |
| 1109 | \ getmagiceffectenchantshader |
| 1110 | \ getmagiceffectenchantshaderc |
| 1111 | \ getmagiceffecthitshader |
| 1112 | \ getmagiceffecthitshaderc |
| 1113 | \ getmagiceffecthitsound |
| 1114 | \ getmagiceffecthitsoundc |
| 1115 | \ getmagiceffecticon |
| 1116 | \ getmagiceffecticonc |
| 1117 | \ getmagiceffectlight |
| 1118 | \ getmagiceffectlightc |
| 1119 | \ getmagiceffectmodel |
| 1120 | \ getmagiceffectmodelc |
| 1121 | \ getmagiceffectname |
| 1122 | \ getmagiceffectnamec |
| 1123 | \ getmagiceffectnumcounters |
| 1124 | \ getmagiceffectnumcountersc |
| 1125 | \ getmagiceffectotheractorvalue |
| 1126 | \ getmagiceffectotheractorvaluec |
| 1127 | \ getmagiceffectprojectilespeed |
| 1128 | \ getmagiceffectprojectilespeedc |
| 1129 | \ getmagiceffectresistvalue |
| 1130 | \ getmagiceffectresistvaluec |
| 1131 | \ getmagiceffectschool |
| 1132 | \ getmagiceffectschoolc |
| 1133 | \ getmagiceffectusedobject |
| 1134 | \ getmagiceffectusedobjectc |
| 1135 | \ getmagicitemeffectcount |
| 1136 | \ getmagicitemtype |
| 1137 | \ getmagicprojectilespell |
| 1138 | \ getmapmarkers |
| 1139 | \ getmapmarkertype |
| 1140 | \ getmapmenumarkername |
| 1141 | \ getmapmenumarkerref |
| 1142 | \ getmaxav |
| 1143 | \ getmaxavc |
| 1144 | \ getmaxlevel |
| 1145 | \ getmeareasound |
| 1146 | \ getmeareasoundc |
| 1147 | \ getmebarterc |
| 1148 | \ getmebasecost |
| 1149 | \ getmebasecostc |
| 1150 | \ getmeboltsound |
| 1151 | \ getmeboltsoundc |
| 1152 | \ getmecastingsound |
| 1153 | \ getmecastingsoundc |
| 1154 | \ getmecounters |
| 1155 | \ getmecountersc |
| 1156 | \ getmeebarter |
| 1157 | \ getmeebarterc |
| 1158 | \ getmeenchant |
| 1159 | \ getmeenchantc |
| 1160 | \ getmeenchantshader |
| 1161 | \ getmeenchantshaderc |
| 1162 | \ getmehitshader |
| 1163 | \ getmehitshaderc |
| 1164 | \ getmehitsound |
| 1165 | \ getmehitsoundc |
| 1166 | \ getmeicon |
| 1167 | \ getmeiconc |
| 1168 | \ getmelight |
| 1169 | \ getmelightc |
| 1170 | \ getmemodel |
| 1171 | \ getmemodelc |
| 1172 | \ getmename |
| 1173 | \ getmenamec |
| 1174 | \ getmenufloatvalue |
| 1175 | \ getmenumcounters |
| 1176 | \ getmenumcountersc |
| 1177 | \ getmenustringvalue |
| 1178 | \ getmeotheractorvalue |
| 1179 | \ getmeotheractorvaluec |
| 1180 | \ getmeprojspeed |
| 1181 | \ getmeprojspeedc |
| 1182 | \ getmerchantcontainer |
| 1183 | \ getmeresistvalue |
| 1184 | \ getmeresistvaluec |
| 1185 | \ getmeschool |
| 1186 | \ getmeschoolc |
| 1187 | \ getmessageboxtype |
| 1188 | \ getmeusedobject |
| 1189 | \ getmeusedobjectc |
| 1190 | \ getmiddlehighactors |
| 1191 | \ getmieffectcount |
| 1192 | \ getminlevel |
| 1193 | \ getmitype |
| 1194 | \ getmodelpath |
| 1195 | \ getmodindex |
| 1196 | \ getmodlocaldata |
| 1197 | \ getmousebuttonpress |
| 1198 | \ getmousebuttonsswapped |
| 1199 | \ getmpspell |
| 1200 | \ getnextref |
| 1201 | \ getnthacitveeffectmagnitude |
| 1202 | \ getnthactiveeffectactorvalue |
| 1203 | \ getnthactiveeffectbounditem |
| 1204 | \ getnthactiveeffectcaster |
| 1205 | \ getnthactiveeffectcode |
| 1206 | \ getnthactiveeffectdata |
| 1207 | \ getnthactiveeffectduration |
| 1208 | \ getnthactiveeffectenchantobject |
| 1209 | \ getnthactiveeffectmagicenchantobject |
| 1210 | \ getnthactiveeffectmagicitem |
| 1211 | \ getnthactiveeffectmagicitemindex |
| 1212 | \ getnthactiveeffectmagnitude |
| 1213 | \ getnthactiveeffectsummonref |
| 1214 | \ getnthactiveeffecttimeelapsed |
| 1215 | \ getnthaeav |
| 1216 | \ getnthaebounditem |
| 1217 | \ getnthaecaster |
| 1218 | \ getnthaecode |
| 1219 | \ getnthaedata |
| 1220 | \ getnthaeduration |
| 1221 | \ getnthaeindex |
| 1222 | \ getnthaemagicenchantobject |
| 1223 | \ getnthaemagicitem |
| 1224 | \ getnthaemagnitude |
| 1225 | \ getnthaesummonref |
| 1226 | \ getnthaetime |
| 1227 | \ getnthchildref |
| 1228 | \ getnthdetectedactor |
| 1229 | \ getntheffectitem |
| 1230 | \ getntheffectitemactorvalue |
| 1231 | \ getntheffectitemarea |
| 1232 | \ getntheffectitemcode |
| 1233 | \ getntheffectitemduration |
| 1234 | \ getntheffectitemmagnitude |
| 1235 | \ getntheffectitemname |
| 1236 | \ getntheffectitemrange |
| 1237 | \ getntheffectitemscript |
| 1238 | \ getntheffectitemscriptname |
| 1239 | \ getntheffectitemscriptschool |
| 1240 | \ getntheffectitemscriptvisualeffect |
| 1241 | \ getntheiarea |
| 1242 | \ getntheiav |
| 1243 | \ getntheicode |
| 1244 | \ getntheiduration |
| 1245 | \ getntheimagnitude |
| 1246 | \ getntheiname |
| 1247 | \ getntheirange |
| 1248 | \ getntheiscript |
| 1249 | \ getntheisschool |
| 1250 | \ getntheisvisualeffect |
| 1251 | \ getnthexplicitref |
| 1252 | \ getnthfaction |
| 1253 | \ getnthfactionrankname |
| 1254 | \ getnthfollower |
| 1255 | \ getnthlevitem |
| 1256 | \ getnthlevitemcount |
| 1257 | \ getnthlevitemlevel |
| 1258 | \ getnthmagiceffectcounter |
| 1259 | \ getnthmagiceffectcounterc |
| 1260 | \ getnthmecounter |
| 1261 | \ getnthmecounterc |
| 1262 | \ getnthmodname |
| 1263 | \ getnthpackage |
| 1264 | \ getnthplayerspell |
| 1265 | \ getnthracebonusskill |
| 1266 | \ getnthracespell |
| 1267 | \ getnthspell |
| 1268 | \ getnumchildrefs |
| 1269 | \ getnumdetectedactors |
| 1270 | \ getnumericinisetting |
| 1271 | \ getnumexplicitrefs |
| 1272 | \ getnumfactions |
| 1273 | \ getnumfollowers |
| 1274 | \ getnumitems |
| 1275 | \ getnumkeyspressed |
| 1276 | \ getnumlevitems |
| 1277 | \ getnumloadedmods |
| 1278 | \ getnumloadedplugins |
| 1279 | \ getnummousebuttonspressed |
| 1280 | \ getnumpackages |
| 1281 | \ getnumranks |
| 1282 | \ getnumrefs |
| 1283 | \ getnumrefsincell |
| 1284 | \ getobjectcharge |
| 1285 | \ getobjecthealth |
| 1286 | \ getobjecttype |
| 1287 | \ getobliviondirectory |
| 1288 | \ getoblrevision |
| 1289 | \ getoblversion |
| 1290 | \ getopenkey |
| 1291 | \ getopensound |
| 1292 | \ getowner |
| 1293 | \ getowningfactionrank |
| 1294 | \ getowningfactionrequiredrank |
| 1295 | \ getpackageallowfalls |
| 1296 | \ getpackageallowswimming |
| 1297 | \ getpackagealwaysrun |
| 1298 | \ getpackagealwayssneak |
| 1299 | \ getpackagearmorunequipped |
| 1300 | \ getpackagecontinueifpcnear |
| 1301 | \ getpackagedata |
| 1302 | \ getpackagedefensivecombat |
| 1303 | \ getpackagelocationdata |
| 1304 | \ getpackagelockdoorsatend |
| 1305 | \ getpackagelockdoorsatlocation |
| 1306 | \ getpackagelockdoorsatstart |
| 1307 | \ getpackagemustcomplete |
| 1308 | \ getpackagemustreachlocation |
| 1309 | \ getpackagenoidleanims |
| 1310 | \ getpackageoffersservices |
| 1311 | \ getpackageonceperday |
| 1312 | \ getpackagescheduledata |
| 1313 | \ getpackageskipfalloutbehavior |
| 1314 | \ getpackagetargetdata |
| 1315 | \ getpackageunlockdoorsatend |
| 1316 | \ getpackageunlockdoorsatlocation |
| 1317 | \ getpackageunlockdoorsatstart |
| 1318 | \ getpackageusehorse |
| 1319 | \ getpackageweaponsunequipped |
| 1320 | \ getparentcell |
| 1321 | \ getparentcellowner |
| 1322 | \ getparentcellowningfactionrank |
| 1323 | \ getparentcellowningfactionrequiredrank |
| 1324 | \ getparentcellwaterheight |
| 1325 | \ getparentworldspace |
| 1326 | \ getpathnodelinkedref |
| 1327 | \ getpathnodepos |
| 1328 | \ getpathnodesinradius |
| 1329 | \ getpathnodesinrect |
| 1330 | \ getpcattributebonus |
| 1331 | \ getpcattributebonusc |
| 1332 | \ getpclastdroppeditem |
| 1333 | \ getpclastdroppeditemref |
| 1334 | \ getpclasthorse |
| 1335 | \ getpclastloaddoor |
| 1336 | \ getpcmajorskillups |
| 1337 | \ getpcmovementspeedmodifier |
| 1338 | \ getpcspelleffectivenessmodifier |
| 1339 | \ getpctrainingsessionsused |
| 1340 | \ getplayerbirthsign |
| 1341 | \ getplayerskilladvances |
| 1342 | \ getplayerskilladvancesc |
| 1343 | \ getplayerskilluse |
| 1344 | \ getplayerskillusec |
| 1345 | \ getplayerslastactivatedloaddoor |
| 1346 | \ getplayerslastriddenhorse |
| 1347 | \ getplayerspell |
| 1348 | \ getplayerspellcount |
| 1349 | \ getpluginversion |
| 1350 | \ getplyerspellcount |
| 1351 | \ getprocesslevel |
| 1352 | \ getprojectile |
| 1353 | \ getprojectiledistancetraveled |
| 1354 | \ getprojectilelifetime |
| 1355 | \ getprojectilesource |
| 1356 | \ getprojectilespeed |
| 1357 | \ getprojectiletype |
| 1358 | \ getqmcurrent |
| 1359 | \ getqmitem |
| 1360 | \ getqmmaximum |
| 1361 | \ getqr |
| 1362 | \ getquality |
| 1363 | \ getquantitymenucurrentquantity |
| 1364 | \ getquantitymenuitem |
| 1365 | \ getquantitymenumaximumquantity |
| 1366 | \ getrace |
| 1367 | \ getraceattribute |
| 1368 | \ getraceattributec |
| 1369 | \ getracedefaulthair |
| 1370 | \ getraceeyes |
| 1371 | \ getracehairs |
| 1372 | \ getracereaction |
| 1373 | \ getracescale |
| 1374 | \ getraceskillbonus |
| 1375 | \ getraceskillbonusc |
| 1376 | \ getracespellcount |
| 1377 | \ getracevoice |
| 1378 | \ getraceweight |
| 1379 | \ getrawformidstring |
| 1380 | \ getrefcount |
| 1381 | \ getrefvariable |
| 1382 | \ getrequiredskillexp |
| 1383 | \ getrequiredskillexpc |
| 1384 | \ getrider |
| 1385 | \ getscript |
| 1386 | \ getscriptactiveeffectindex |
| 1387 | \ getselectedspells |
| 1388 | \ getservicesmask |
| 1389 | \ getsigilstoneuses |
| 1390 | \ getskillgoverningattribute |
| 1391 | \ getskillgoverningattributec |
| 1392 | \ getskillspecialization |
| 1393 | \ getskillspecializationc |
| 1394 | \ getskilluseincrement |
| 1395 | \ getskilluseincrementc |
| 1396 | \ getsoulgemcapacity |
| 1397 | \ getsoullevel |
| 1398 | \ getsoundattenuation |
| 1399 | \ getsoundplaying |
| 1400 | \ getsourcemodindex |
| 1401 | \ getspecialanims |
| 1402 | \ getspellareaeffectignoreslos |
| 1403 | \ getspellcount |
| 1404 | \ getspelldisallowabsorbreflect |
| 1405 | \ getspelleffectiveness |
| 1406 | \ getspellexplodeswithnotarget |
| 1407 | \ getspellhostile |
| 1408 | \ getspellimmunetosilence |
| 1409 | \ getspellmagickacost |
| 1410 | \ getspellmasterylevel |
| 1411 | \ getspellpcstart |
| 1412 | \ getspells |
| 1413 | \ getspellschool |
| 1414 | \ getspellscripteffectalwaysapplies |
| 1415 | \ getspelltype |
| 1416 | \ getstageentries |
| 1417 | \ getstageids |
| 1418 | \ getstringgamesetting |
| 1419 | \ getstringinisetting |
| 1420 | \ getsundamage |
| 1421 | \ getsunglare |
| 1422 | \ gettailmodelpath |
| 1423 | \ gettargets |
| 1424 | \ gettelekinesisref |
| 1425 | \ getteleportcell |
| 1426 | \ getteleportcellname |
| 1427 | \ getterrainheight |
| 1428 | \ gettextinputcontrolpressed |
| 1429 | \ gettextinputcursorpos |
| 1430 | \ gettexturepath |
| 1431 | \ gettilechildren |
| 1432 | \ gettiletraits |
| 1433 | \ gettimeleft |
| 1434 | \ gettotalactiveeffectmagnitude |
| 1435 | \ gettotalactiveeffectmagnitudec |
| 1436 | \ gettotalaeabilitymagnitude |
| 1437 | \ gettotalaeabilitymagnitudec |
| 1438 | \ gettotalaealchemymagnitude |
| 1439 | \ gettotalaealchemymagnitudec |
| 1440 | \ gettotalaeallspellsmagnitude |
| 1441 | \ gettotalaeallspellsmagnitudec |
| 1442 | \ gettotalaediseasemagnitude |
| 1443 | \ gettotalaediseasemagnitudec |
| 1444 | \ gettotalaeenchantmentmagnitude |
| 1445 | \ gettotalaeenchantmentmagnitudec |
| 1446 | \ gettotalaelesserpowermagnitude |
| 1447 | \ gettotalaelesserpowermagnitudec |
| 1448 | \ gettotalaemagnitude |
| 1449 | \ gettotalaemagnitudec |
| 1450 | \ gettotalaenonabilitymagnitude |
| 1451 | \ gettotalaenonabilitymagnitudec |
| 1452 | \ gettotalaepowermagnitude |
| 1453 | \ gettotalaepowermagnitudec |
| 1454 | \ gettotalaespellmagnitude |
| 1455 | \ gettotalaespellmagnitudec |
| 1456 | \ gettotalpcattributebonus |
| 1457 | \ gettrainerlevel |
| 1458 | \ gettrainerskill |
| 1459 | \ gettransactioninfo |
| 1460 | \ gettransdelta |
| 1461 | \ gettravelhorse |
| 1462 | \ getusedpowers |
| 1463 | \ getusertime |
| 1464 | \ getvariable |
| 1465 | \ getvelocity |
| 1466 | \ getverticalvelocity |
| 1467 | \ getwaterheight |
| 1468 | \ getwatershader |
| 1469 | \ getweahtercloudspeedupper |
| 1470 | \ getweaponreach |
| 1471 | \ getweaponspeed |
| 1472 | \ getweapontype |
| 1473 | \ getweatherclassification |
| 1474 | \ getweathercloudspeedlower |
| 1475 | \ getweathercloudspeedupper |
| 1476 | \ getweathercolor |
| 1477 | \ getweatherfogdayfar |
| 1478 | \ getweatherfogdaynear |
| 1479 | \ getweatherfognightfar |
| 1480 | \ getweatherfognightnear |
| 1481 | \ getweatherhdrvalue |
| 1482 | \ getweatherlightningfrequency |
| 1483 | \ getweatheroverride |
| 1484 | \ getweathersundamage |
| 1485 | \ getweathersunglare |
| 1486 | \ getweathertransdelta |
| 1487 | \ getweatherwindspeed |
| 1488 | \ getweight |
| 1489 | \ getworldparentworld |
| 1490 | \ getworldspaceparentworldspace |
| 1491 | \ globalvariableexists |
| 1492 | \ hammerkey |
| 1493 | \ hasbeenpickedup |
| 1494 | \ haseffectshader |
| 1495 | \ haslowlevelprocessing |
| 1496 | \ hasmodel |
| 1497 | \ hasname |
| 1498 | \ hasnopersuasion |
| 1499 | \ hasspell |
| 1500 | \ hastail |
| 1501 | \ hasvariable |
| 1502 | \ haswater |
| 1503 | \ holdkey |
| 1504 | \ iconpathincludes |
| 1505 | \ identitymat |
| 1506 | \ incrementplayerskilluse |
| 1507 | \ incrementplayerskillusec |
| 1508 | \ ininvertfasttravel |
| 1509 | \ insertininputtext |
| 1510 | \ isactivatable |
| 1511 | \ isactivator |
| 1512 | \ isactorrespawning |
| 1513 | \ isalchemyitem |
| 1514 | \ isammo |
| 1515 | \ isanimgroupplaying |
| 1516 | \ isanimplaying |
| 1517 | \ isapparatus |
| 1518 | \ isarmor |
| 1519 | \ isattacking |
| 1520 | \ isautomaticdoor |
| 1521 | \ isbartermenuactive |
| 1522 | \ isbipediconpathvalid |
| 1523 | \ isbipedmodelpathvalid |
| 1524 | \ isblocking |
| 1525 | \ isbook |
| 1526 | \ iscantwait |
| 1527 | \ iscasting |
| 1528 | \ iscellpublic |
| 1529 | \ isclassattribute |
| 1530 | \ isclassattributec |
| 1531 | \ isclassskill |
| 1532 | \ isclassskillc |
| 1533 | \ isclonedform |
| 1534 | \ isclothing |
| 1535 | \ isconsoleopen |
| 1536 | \ iscontainer |
| 1537 | \ iscontrol |
| 1538 | \ iscontroldisabled |
| 1539 | \ iscontrolpressed |
| 1540 | \ iscreature |
| 1541 | \ iscreaturebiped |
| 1542 | \ isdigit |
| 1543 | \ isdiseased |
| 1544 | \ isdodging |
| 1545 | \ isdoor |
| 1546 | \ isequipped |
| 1547 | \ isfactionevil |
| 1548 | \ isfactionhidden |
| 1549 | \ isfemale |
| 1550 | \ isflora |
| 1551 | \ isflying |
| 1552 | \ isfood |
| 1553 | \ isformvalid |
| 1554 | \ isfurniture |
| 1555 | \ isgamemessagebox |
| 1556 | \ isglobalcollisiondisabled |
| 1557 | \ isharvested |
| 1558 | \ ishiddendoor |
| 1559 | \ isiconpathvalid |
| 1560 | \ isinair |
| 1561 | \ isingredient |
| 1562 | \ isinoblivion |
| 1563 | \ isjumping |
| 1564 | \ iskey |
| 1565 | \ iskeydisabled |
| 1566 | \ iskeypressed |
| 1567 | \ iskeypressed2 |
| 1568 | \ iskeypressed3 |
| 1569 | \ isletter |
| 1570 | \ islight |
| 1571 | \ islightcarriable |
| 1572 | \ isloaddoor |
| 1573 | \ ismagiceffectcanrecover |
| 1574 | \ ismagiceffectcanrecoverc |
| 1575 | \ ismagiceffectdetrimental |
| 1576 | \ ismagiceffectdetrimentalc |
| 1577 | \ ismagiceffectforenchanting |
| 1578 | \ ismagiceffectforenchantingc |
| 1579 | \ ismagiceffectforspellmaking |
| 1580 | \ ismagiceffectforspellmakingc |
| 1581 | \ ismagiceffecthostile |
| 1582 | \ ismagiceffecthostilec |
| 1583 | \ ismagiceffectmagnitudepercent |
| 1584 | \ ismagiceffectmagnitudepercentc |
| 1585 | \ ismagiceffectonselfallowed |
| 1586 | \ ismagiceffectonselfallowedc |
| 1587 | \ ismagiceffectontargetallowed |
| 1588 | \ ismagiceffectontargetallowedc |
| 1589 | \ ismagiceffectontouchallowed |
| 1590 | \ ismagiceffectontouchallowedc |
| 1591 | \ ismagicitemautocalc |
| 1592 | \ ismajor |
| 1593 | \ ismajorc |
| 1594 | \ ismajorref |
| 1595 | \ ismapmarkervisible |
| 1596 | \ ismecanrecover |
| 1597 | \ ismecanrecoverc |
| 1598 | \ ismedetrimental |
| 1599 | \ ismedetrimentalc |
| 1600 | \ ismeforenchanting |
| 1601 | \ ismeforenchantingc |
| 1602 | \ ismeforspellmaking |
| 1603 | \ ismeforspellmakingc |
| 1604 | \ ismehostile |
| 1605 | \ ismehostilec |
| 1606 | \ ismemagnitudepercent |
| 1607 | \ ismemagnitudepercentc |
| 1608 | \ ismeonselfallowed |
| 1609 | \ ismeonselfallowedc |
| 1610 | \ ismeontargetallowed |
| 1611 | \ ismeontargetallowedc |
| 1612 | \ ismeontouchallowed |
| 1613 | \ ismeontouchallowedc |
| 1614 | \ isminimalusedoor |
| 1615 | \ ismiscitem |
| 1616 | \ ismodelpathvalid |
| 1617 | \ ismodloaded |
| 1618 | \ ismovingbackward |
| 1619 | \ ismovingforward |
| 1620 | \ ismovingleft |
| 1621 | \ ismovingright |
| 1622 | \ isnaked |
| 1623 | \ isnthactiveeffectapplied |
| 1624 | \ isntheffectitemscripted |
| 1625 | \ isntheffectitemscripthostile |
| 1626 | \ isntheishostile |
| 1627 | \ isobliviongate |
| 1628 | \ isoblivioninterior |
| 1629 | \ isoblivionworld |
| 1630 | \ isofflimits |
| 1631 | \ isonground |
| 1632 | \ ispathnodedisabled |
| 1633 | \ ispcleveloffset |
| 1634 | \ ispersistent |
| 1635 | \ isplayable |
| 1636 | \ isplayable2 |
| 1637 | \ isplugininstalled |
| 1638 | \ ispoison |
| 1639 | \ ispotion |
| 1640 | \ ispowerattacking |
| 1641 | \ isprintable |
| 1642 | \ ispunctuation |
| 1643 | \ isquestcomplete |
| 1644 | \ isquestitem |
| 1645 | \ isracebonusskill |
| 1646 | \ isracebonusskillc |
| 1647 | \ israceplayable |
| 1648 | \ isrecoiling |
| 1649 | \ isrefdeleted |
| 1650 | \ isreference |
| 1651 | \ isrefessential |
| 1652 | \ isscripted |
| 1653 | \ issigilstone |
| 1654 | \ issoulgem |
| 1655 | \ isspellhostile |
| 1656 | \ isstaggered |
| 1657 | \ issummonable |
| 1658 | \ istaken |
| 1659 | \ istextinputinuse |
| 1660 | \ isthirdperson |
| 1661 | \ isturningleft |
| 1662 | \ isturningright |
| 1663 | \ isunderwater |
| 1664 | \ isunsaferespawns |
| 1665 | \ isuppercase |
| 1666 | \ isweapon |
| 1667 | \ leftshift |
| 1668 | \ linktodoor |
| 1669 | \ loadgameex |
| 1670 | \ log |
| 1671 | \ log10 |
| 1672 | \ logicaland |
| 1673 | \ logicalnot |
| 1674 | \ logicalor |
| 1675 | \ logicalxor |
| 1676 | \ magiceffectcodefromchars |
| 1677 | \ magiceffectfromchars |
| 1678 | \ magiceffectfromcode |
| 1679 | \ magiceffectfxpersists |
| 1680 | \ magiceffectfxpersistsc |
| 1681 | \ magiceffecthasnoarea |
| 1682 | \ magiceffecthasnoareac |
| 1683 | \ magiceffecthasnoduration |
| 1684 | \ magiceffecthasnodurationc |
| 1685 | \ magiceffecthasnohiteffect |
| 1686 | \ magiceffecthasnohiteffectc |
| 1687 | \ magiceffecthasnoingredient |
| 1688 | \ magiceffecthasnoingredientc |
| 1689 | \ magiceffecthasnomagnitude |
| 1690 | \ magiceffecthasnomagnitudec |
| 1691 | \ magiceffectusesarmor |
| 1692 | \ magiceffectusesarmorc |
| 1693 | \ magiceffectusesattribute |
| 1694 | \ magiceffectusesattributec |
| 1695 | \ magiceffectusescreature |
| 1696 | \ magiceffectusescreaturec |
| 1697 | \ magiceffectusesotheractorvalue |
| 1698 | \ magiceffectusesotheractorvaluec |
| 1699 | \ magiceffectusesskill |
| 1700 | \ magiceffectusesskillc |
| 1701 | \ magiceffectusesweapon |
| 1702 | \ magiceffectusesweaponc |
| 1703 | \ magichaseffect |
| 1704 | \ magichaseffectc |
| 1705 | \ magicitemhaseffect |
| 1706 | \ magicitemhaseffectcode |
| 1707 | \ magicitemhaseffectcount |
| 1708 | \ magicitemhaseffectcountc |
| 1709 | \ magicitemhaseffectcountcode |
| 1710 | \ magicitemhaseffectitemscript |
| 1711 | \ matadd |
| 1712 | \ matchpotion |
| 1713 | \ matinv |
| 1714 | \ matmult |
| 1715 | \ matrixadd |
| 1716 | \ matrixdeterminant |
| 1717 | \ matrixinvert |
| 1718 | \ matrixmultiply |
| 1719 | \ matrixrref |
| 1720 | \ matrixscale |
| 1721 | \ matrixsubtract |
| 1722 | \ matrixtrace |
| 1723 | \ matrixtranspose |
| 1724 | \ matscale |
| 1725 | \ matsubtract |
| 1726 | \ mecodefromchars |
| 1727 | \ mefxpersists |
| 1728 | \ mefxpersistsc |
| 1729 | \ mehasnoarea |
| 1730 | \ mehasnoareac |
| 1731 | \ mehasnoduration |
| 1732 | \ mehasnodurationc |
| 1733 | \ mehasnohiteffect |
| 1734 | \ mehasnohiteffectc |
| 1735 | \ mehasnoingredient |
| 1736 | \ mehasnoingredientc |
| 1737 | \ mehasnomagnitude |
| 1738 | \ mehasnomagnitudec |
| 1739 | \ menuholdkey |
| 1740 | \ menumode |
| 1741 | \ menureleasekey |
| 1742 | \ menutapkey |
| 1743 | \ messageboxex |
| 1744 | \ messageex |
| 1745 | \ meusesarmor |
| 1746 | \ meusesarmorc |
| 1747 | \ meusesattribute |
| 1748 | \ meusesattributec |
| 1749 | \ meusescreature |
| 1750 | \ meusescreaturec |
| 1751 | \ meusesotheractorvalue |
| 1752 | \ meusesotheractorvaluec |
| 1753 | \ meusesskill |
| 1754 | \ meusesskillc |
| 1755 | \ meusesweapon |
| 1756 | \ meusesweaponc |
| 1757 | \ modactorvalue2 |
| 1758 | \ modactorvaluec |
| 1759 | \ modarmorar |
| 1760 | \ modattackdamage |
| 1761 | \ modav2 |
| 1762 | \ modavc |
| 1763 | \ modavmod |
| 1764 | \ modavmodc |
| 1765 | \ modcurrentcharge |
| 1766 | \ modelpathincludes |
| 1767 | \ modenchantmentcharge |
| 1768 | \ modenchantmentcost |
| 1769 | \ modequippedcurrentcharge |
| 1770 | \ modequippedcurrenthealth |
| 1771 | \ modfemalebipedpath |
| 1772 | \ modfemalegroundpath |
| 1773 | \ modfemaleiconpath |
| 1774 | \ modgoldvalue |
| 1775 | \ modiconpath |
| 1776 | \ modlocaldataexists |
| 1777 | \ modmalebipedpath |
| 1778 | \ modmalegroundpath |
| 1779 | \ modmaleiconpath |
| 1780 | \ modmodelpath |
| 1781 | \ modname |
| 1782 | \ modnthactiveeffectmagnitude |
| 1783 | \ modnthaemagnitude |
| 1784 | \ modntheffectitemarea |
| 1785 | \ modntheffectitemduration |
| 1786 | \ modntheffectitemmagnitude |
| 1787 | \ modntheffectitemscriptname |
| 1788 | \ modntheiarea |
| 1789 | \ modntheiduration |
| 1790 | \ modntheimagnitude |
| 1791 | \ modntheisname |
| 1792 | \ modobjectcharge |
| 1793 | \ modobjecthealth |
| 1794 | \ modpcmovementspeed |
| 1795 | \ modpcspelleffectiveness |
| 1796 | \ modplayerskillexp |
| 1797 | \ modplayerskillexpc |
| 1798 | \ modquality |
| 1799 | \ modsigilstoneuses |
| 1800 | \ modspellmagickacost |
| 1801 | \ modweaponreach |
| 1802 | \ modweaponspeed |
| 1803 | \ modweight |
| 1804 | \ movemousex |
| 1805 | \ movemousey |
| 1806 | \ movetextinputcursor |
| 1807 | \ nameincludes |
| 1808 | \ numtohex |
| 1809 | \ offersapparatus |
| 1810 | \ offersarmor |
| 1811 | \ offersbooks |
| 1812 | \ offersclothing |
| 1813 | \ offersingredients |
| 1814 | \ offerslights |
| 1815 | \ offersmagicitems |
| 1816 | \ offersmiscitems |
| 1817 | \ offerspotions |
| 1818 | \ offersrecharging |
| 1819 | \ offersrepair |
| 1820 | \ offersservicesc |
| 1821 | \ offersspells |
| 1822 | \ offerstraining |
| 1823 | \ offersweapons |
| 1824 | \ oncontroldown |
| 1825 | \ onkeydown |
| 1826 | \ opentextinput |
| 1827 | \ outputlocalmappicturesoverride |
| 1828 | \ overrideactorswimbreath |
| 1829 | \ parentcellhaswater |
| 1830 | \ pathedgeexists |
| 1831 | \ playidle |
| 1832 | \ pow |
| 1833 | \ print |
| 1834 | \ printactivetileinfo |
| 1835 | \ printc |
| 1836 | \ printd |
| 1837 | \ printtileinfo |
| 1838 | \ printtoconsole |
| 1839 | \ questexists |
| 1840 | \ racos |
| 1841 | \ rand |
| 1842 | \ rasin |
| 1843 | \ ratan |
| 1844 | \ ratan2 |
| 1845 | \ rcos |
| 1846 | \ rcosh |
| 1847 | \ refreshcurrentclimate |
| 1848 | \ releasekey |
| 1849 | \ removealleffectitems |
| 1850 | \ removebasespell |
| 1851 | \ removeenchantment |
| 1852 | \ removeequippedweaponpoison |
| 1853 | \ removeeventhandler |
| 1854 | \ removefromleveledlist |
| 1855 | \ removeitemns |
| 1856 | \ removelevitembylevel |
| 1857 | \ removemeir |
| 1858 | \ removemodlocaldata |
| 1859 | \ removentheffect |
| 1860 | \ removentheffectitem |
| 1861 | \ removenthlevitem |
| 1862 | \ removenthmagiceffectcounter |
| 1863 | \ removenthmagiceffectcounterc |
| 1864 | \ removenthmecounter |
| 1865 | \ removenthmecounterc |
| 1866 | \ removescript |
| 1867 | \ removescr |
| 1868 | \ removespellns |
| 1869 | \ resetallvariables |
| 1870 | \ resetfalrior |
| 1871 | \ resolvemodindex |
| 1872 | \ rightshift |
| 1873 | \ rotmat |
| 1874 | \ rowvec |
| 1875 | \ rsin |
| 1876 | \ rsinh |
| 1877 | \ rtan |
| 1878 | \ rtanh |
| 1879 | \ runbatchscript |
| 1880 | \ runscriptline |
| 1881 | \ saespassalarm |
| 1882 | \ setactivequest |
| 1883 | \ setactrfullname |
| 1884 | \ setactormaxswimbreath |
| 1885 | \ setactorrespawns |
| 1886 | \ setactorswimbreath |
| 1887 | \ setactorvaluec |
| 1888 | \ setalvisible |
| 1889 | \ setaltcontrol2 |
| 1890 | \ setapparatustype |
| 1891 | \ setarmorar |
| 1892 | \ setarmortype |
| 1893 | \ setarrowprojectilebowenchantment |
| 1894 | \ setarrowprojectileenchantment |
| 1895 | \ setarrowprojectilepoison |
| 1896 | \ setattackdamage |
| 1897 | \ setavc |
| 1898 | \ setavmod |
| 1899 | \ setavmodc |
| 1900 | \ setbaseform |
| 1901 | \ setbipediconpathex |
| 1902 | \ setbipedmodelpathex |
| 1903 | \ setbipedslotmask |
| 1904 | \ setbookcantbetaken |
| 1905 | \ setbookisscroll |
| 1906 | \ setbookskilltaught |
| 1907 | \ setbuttonpressed |
| 1908 | \ setcalcalllevels |
| 1909 | \ setcamerafov2 |
| 1910 | \ setcancastpower |
| 1911 | \ setcancorpsecheck |
| 1912 | \ setcanfasttravelfromworld |
| 1913 | \ setcantraveltomapmarker |
| 1914 | \ setcantwait |
| 1915 | \ setcellbehavesasexterior |
| 1916 | \ setcellclimate |
| 1917 | \ setcellhaswater |
| 1918 | \ setcellispublic |
| 1919 | \ setcelllighting |
| 1920 | \ setcellmusictype |
| 1921 | \ setcellublicflag |
| 1922 | \ setcellresethours |
| 1923 | \ setcellwaterheight |
| 1924 | \ setcellwatertype |
| 1925 | \ setchancenone |
| 1926 | \ setclassattribute |
| 1927 | \ setclassattributec |
| 1928 | \ setclassskills |
| 1929 | \ setclassskills2 |
| 1930 | \ setclassspecialization |
| 1931 | \ setclimatehasmasser |
| 1932 | \ setclimatehasmassser |
| 1933 | \ setclimatehassecunda |
| 1934 | \ setclimatemoonphaselength |
| 1935 | \ setclimatesunrisebegin |
| 1936 | \ setclimatesunriseend |
| 1937 | \ setclimatesunsetbegin |
| 1938 | \ setclimatesunsetend |
| 1939 | \ setclimatevolatility |
| 1940 | \ setclosesound |
| 1941 | \ setcloudspeedlower |
| 1942 | \ setcloudspeedupper |
| 1943 | \ setcombatstyle |
| 1944 | \ setcombatstyleacrobaticsdodgechance |
| 1945 | \ setcombatstyleattackchance |
| 1946 | \ setcombatstyleattackduringblockmult |
| 1947 | \ setcombatstyleattacknotunderattackmult |
| 1948 | \ setcombatstyleattackskillmodbase |
| 1949 | \ setcombatstyleattackskillmodmult |
| 1950 | \ setcombatstyleattackunderattackmult |
| 1951 | \ setcombatstyleblockchance |
| 1952 | \ setcombatstyleblocknotunderattackmult |
| 1953 | \ setcombatstyleblockskillmodbase |
| 1954 | \ setcombatstyleblockskillmodmult |
| 1955 | \ setcombatstyleblockunderattackmult |
| 1956 | \ setcombatstylebuffstandoffdist |
| 1957 | \ setcombatstyledodgebacknotunderattackmult |
| 1958 | \ setcombatstyledodgebacktimermax |
| 1959 | \ setcombatstyledodgebacktimermin |
| 1960 | \ setcombatstyledodgebackunderattackmult |
| 1961 | \ setcombatstyledodgechance |
| 1962 | \ setcombatstyledodgefatiguemodbase |
| 1963 | \ setcombatstyledodgefatiguemodmult |
| 1964 | \ setcombatstyledodgefwattackingmult |
| 1965 | \ setcombatstyledodgefwnotattackingmult |
| 1966 | \ setcombatstyledodgefwtimermax |
| 1967 | \ setcombatstyledodgefwtimermin |
| 1968 | \ setcombatstyledodgelrchance |
| 1969 | \ setcombatstyledodgelrtimermax |
| 1970 | \ setcombatstyledodgelrtimermin |
| 1971 | \ setcombatstyledodgenotunderattackmult |
| 1972 | \ setcombatstyledodgeunderattackmult |
| 1973 | \ setcombatstyleencumberedspeedmodbase |
| 1974 | \ setcombatstyleencumberedspeedmodmult |
| 1975 | \ setcombatstylefleeingdisabled |
| 1976 | \ setcombatstylegroupstandoffdist |
| 1977 | \ setcombatstyleh2hbonustoattack |
| 1978 | \ setcombatstyleholdtimermax |
| 1979 | \ setcombatstyleholdtimermin |
| 1980 | \ setcombatstyleidletimermax |
| 1981 | \ setcombatstyleidletimermin |
| 1982 | \ setcombatstyleignorealliesinarea |
| 1983 | \ setcombatstylekobonustoattack |
| 1984 | \ setcombatstylekobonustopowerattack |
| 1985 | \ setcombatstylemeleealertok |
| 1986 | \ setcombatstylepowerattackchance |
| 1987 | \ setcombatstylepowerattackfatiguemodbase |
| 1988 | \ setcombatstylepowerattackfatiguemodmult |
| 1989 | \ setcombatstyleprefersranged |
| 1990 | \ setcombatstylerangedstandoffdist |
| 1991 | \ setcombatstylerangemaxmult |
| 1992 | \ setcombatstylerangeoptimalmult |
| 1993 | \ setcombatstylerejectsyields |
| 1994 | \ setcombatstylerushattackchance |
| 1995 | \ setcombatstylerushattackdistmult |
| 1996 | \ setcombatstylestaggerbonustoattack |
| 1997 | \ setcombatstylestaggerbonustopowerattack |
| 1998 | \ setcombatstyleswitchdistmelee |
| 1999 | \ setcombatstyleswitchdistranged |
| 2000 | \ setcombatstylewillyield |
| 2001 | \ setcontainerrespawns |
| 2002 | \ setcontrol |
| 2003 | \ setcreatureskill |
| 2004 | \ setcreaturesoundbase |
| 2005 | \ setcreaturetype |
| 2006 | \ setcurrentcharge |
| 2007 | \ setcurrenthealth |
| 2008 | \ setcurrentsoullevel |
| 2009 | \ setdebugmode |
| 2010 | \ setdescription |
| 2011 | \ setdetectionstate |
| 2012 | \ setdisableglobalcollision |
| 2013 | \ setdoorteleport |
| 2014 | \ setenchantment |
| 2015 | \ setenchantmentcharge |
| 2016 | \ setenchantmentcost |
| 2017 | \ setenchantmenttype |
| 2018 | \ setequipmentslot |
| 2019 | \ setequippedcurrentcharge |
| 2020 | \ setequippedcurrenthealth |
| 2021 | \ setequippedweaponpoison |
| 2022 | \ seteventhandler |
| 2023 | \ seteyes |
| 2024 | \ setfactionevil |
| 2025 | \ setfactionhasspecialcombat |
| 2026 | \ setfactionhidden |
| 2027 | \ setfactonreaction |
| 2028 | \ setfactionspecialcombat |
| 2029 | \ setfemale |
| 2030 | \ setfemalebipedpath |
| 2031 | \ setfemalegroundpath |
| 2032 | \ setfemaleiconpath |
| 2033 | \ setflycameraspeedmult |
| 2034 | \ setfogdayfar |
| 2035 | \ setfogdaynear |
| 2036 | \ setfognightfar |
| 2037 | \ setfognightnear |
| 2038 | \ setforcsneak |
| 2039 | \ setfunctionvalue |
| 2040 | \ setgamedifficulty |
| 2041 | \ setgoldvalue |
| 2042 | \ setgoldvalue_t |
| 2043 | \ setgoldvaluet |
| 2044 | \ sethair |
| 2045 | \ setharvested |
| 2046 | \ sethasbeenpickedup |
| 2047 | \ sethdrvalue |
| 2048 | \ sethidesamulet |
| 2049 | \ sethidesrings |
| 2050 | \ sethotkeyitem |
| 2051 | \ seticonpath |
| 2052 | \ setignoresresistance |
| 2053 | \ setingredient |
| 2054 | \ setingredientchance |
| 2055 | \ setinputtext |
| 2056 | \ setinvertfasttravel |
| 2057 | \ setisautomaticdoor |
| 2058 | \ setiscontrol |
| 2059 | \ setisfood |
| 2060 | \ setishiddendoor |
| 2061 | \ setisminimalusedoor |
| 2062 | \ setisobliviongate |
| 2063 | \ setisplayable |
| 2064 | \ setlevcreaturetemplate |
| 2065 | \ setlightduration |
| 2066 | \ setlightningfrequency |
| 2067 | \ setlightradius |
| 2068 | \ setlightrgb |
| 2069 | \ setlocalgravity |
| 2070 | \ setlocalgravityvector |
| 2071 | \ setloopsound |
| 2072 | \ setlowlevelprocessing |
| 2073 | \ setmaagiceffectuseactorvalue |
| 2074 | \ setmagiceffectareasound |
| 2075 | \ setmagiceffectareasoundc |
| 2076 | \ setmagiceffectbarterfactor |
| 2077 | \ setmagiceffectbarterfactorc |
| 2078 | \ setmagiceffectbasecost |
| 2079 | \ setmagiceffectbasecostc |
| 2080 | \ setmagiceffectboltsound |
| 2081 | \ setmagiceffectboltsoundc |
| 2082 | \ setmagiceffectcanrecover |
| 2083 | \ setmagiceffectcanrecoverc |
| 2084 | \ setmagiceffectcastingsound |
| 2085 | \ setmagiceffectcastingsoundc |
| 2086 | \ setmagiceffectcounters |
| 2087 | \ setmagiceffectcountersc |
| 2088 | \ setmagiceffectenchantfactor |
| 2089 | \ setmagiceffectenchantfactorc |
| 2090 | \ setmagiceffectenchantshader |
| 2091 | \ setmagiceffectenchantshaderc |
| 2092 | \ setmagiceffectforenchanting |
| 2093 | \ setmagiceffectforenchantingc |
| 2094 | \ setmagiceffectforspellmaking |
| 2095 | \ setmagiceffectforspellmakingc |
| 2096 | \ setmagiceffectfxpersists |
| 2097 | \ setmagiceffectfxpersistsc |
| 2098 | \ setmagiceffecthitshader |
| 2099 | \ setmagiceffecthitshaderc |
| 2100 | \ setmagiceffecthitsound |
| 2101 | \ setmagiceffecthitsoundc |
| 2102 | \ setmagiceffecticon |
| 2103 | \ setmagiceffecticonc |
| 2104 | \ setmagiceffectisdetrimental |
| 2105 | \ setmagiceffectisdetrimentalc |
| 2106 | \ setmagiceffectishostile |
| 2107 | \ setmagiceffectishostilec |
| 2108 | \ setmagiceffectlight |
| 2109 | \ setmagiceffectlightc |
| 2110 | \ setmagiceffectmagnitudepercent |
| 2111 | \ setmagiceffectmagnitudepercentc |
| 2112 | \ setmagiceffectmodel |
| 2113 | \ setmagiceffectmodelc |
| 2114 | \ setmagiceffectname |
| 2115 | \ setmagiceffectnamec |
| 2116 | \ setmagiceffectnoarea |
| 2117 | \ setmagiceffectnoareac |
| 2118 | \ setmagiceffectnoduration |
| 2119 | \ setmagiceffectnodurationc |
| 2120 | \ setmagiceffectnohiteffect |
| 2121 | \ setmagiceffectnohiteffectc |
| 2122 | \ setmagiceffectnoingredient |
| 2123 | \ setmagiceffectnoingredientc |
| 2124 | \ setmagiceffectnomagnitude |
| 2125 | \ setmagiceffectnomagnitudec |
| 2126 | \ setmagiceffectonselfallowed |
| 2127 | \ setmagiceffectonselfallowedc |
| 2128 | \ setmagiceffectontargetallowed |
| 2129 | \ setmagiceffectontargetallowedc |
| 2130 | \ setmagiceffectontouchallowed |
| 2131 | \ setmagiceffectontouchallowedc |
| 2132 | \ setmagiceffectotheractorvalue |
| 2133 | \ setmagiceffectotheractorvaluec |
| 2134 | \ setmagiceffectprojectilespeed |
| 2135 | \ setmagiceffectprojectilespeedc |
| 2136 | \ setmagiceffectresistvalue |
| 2137 | \ setmagiceffectresistvaluec |
| 2138 | \ setmagiceffectschool |
| 2139 | \ setmagiceffectschoolc |
| 2140 | \ setmagiceffectuseactorvaluec |
| 2141 | \ setmagiceffectusedobject |
| 2142 | \ setmagiceffectusedobjectc |
| 2143 | \ setmagiceffectusesactorvalue |
| 2144 | \ setmagiceffectusesactorvaluec |
| 2145 | \ setmagiceffectusesarmor |
| 2146 | \ setmagiceffectusesarmorc |
| 2147 | \ setmagiceffectusesattribute |
| 2148 | \ setmagiceffectusesattributec |
| 2149 | \ setmagiceffectusescreature |
| 2150 | \ setmagiceffectusescreaturec |
| 2151 | \ setmagiceffectusesskill |
| 2152 | \ setmagiceffectusesskillc |
| 2153 | \ setmagiceffectusesweapon |
| 2154 | \ setmagiceffectusesweaponc |
| 2155 | \ setmagicitemautocalc |
| 2156 | \ setmagicprojectilespell |
| 2157 | \ setmalebipedpath |
| 2158 | \ setmalegroundpath |
| 2159 | \ setmaleiconpath |
| 2160 | \ setmapmarkertype |
| 2161 | \ setmapmarkervisible |
| 2162 | \ setmeareasound |
| 2163 | \ setmeareasoundc |
| 2164 | \ setmebarterfactor |
| 2165 | \ setmebarterfactorc |
| 2166 | \ setmebasecost |
| 2167 | \ setmebasecostc |
| 2168 | \ setmeboltsound |
| 2169 | \ setmeboltsoundc |
| 2170 | \ setmecanrecover |
| 2171 | \ setmecanrecoverc |
| 2172 | \ setmecastingsound |
| 2173 | \ setmecastingsoundc |
| 2174 | \ setmeenchantfactor |
| 2175 | \ setmeenchantfactorc |
| 2176 | \ setmeenchantshader |
| 2177 | \ setmeenchantshaderc |
| 2178 | \ setmeforenchanting |
| 2179 | \ setmeforenchantingc |
| 2180 | \ setmeforspellmaking |
| 2181 | \ setmeforspellmakingc |
| 2182 | \ setmefxpersists |
| 2183 | \ setmefxpersistsc |
| 2184 | \ setmehitshader |
| 2185 | \ setmehitshaderc |
| 2186 | \ setmehitsound |
| 2187 | \ setmehitsoundc |
| 2188 | \ setmeicon |
| 2189 | \ setmeiconc |
| 2190 | \ setmeisdetrimental |
| 2191 | \ setmeisdetrimentalc |
| 2192 | \ setmeishostile |
| 2193 | \ setmeishostilec |
| 2194 | \ setmelight |
| 2195 | \ setmelightc |
| 2196 | \ setmemagnitudepercent |
| 2197 | \ setmemagnitudepercentc |
| 2198 | \ setmemodel |
| 2199 | \ setmemodelc |
| 2200 | \ setmename |
| 2201 | \ setmenamec |
| 2202 | \ setmenoarea |
| 2203 | \ setmenoareac |
| 2204 | \ setmenoduration |
| 2205 | \ setmenodurationc |
| 2206 | \ setmenohiteffect |
| 2207 | \ setmenohiteffectc |
| 2208 | \ setmenoingredient |
| 2209 | \ setmenoingredientc |
| 2210 | \ setmenomagnitude |
| 2211 | \ setmenomagnitudec |
| 2212 | \ setmenufloatvalue |
| 2213 | \ setmenustringvalue |
| 2214 | \ setmeonselfallowed |
| 2215 | \ setmeonselfallowedc |
| 2216 | \ setmeontargetallowed |
| 2217 | \ setmeontargetallowedc |
| 2218 | \ setmeontouchallowed |
| 2219 | \ setmeontouchallowedc |
| 2220 | \ setmeotheractorvalue |
| 2221 | \ setmeotheractorvaluec |
| 2222 | \ setmeprojectilespeed |
| 2223 | \ setmeprojectilespeedc |
| 2224 | \ setmerchantcontainer |
| 2225 | \ setmeresistvalue |
| 2226 | \ setmeresistvaluec |
| 2227 | \ setmeschool |
| 2228 | \ setmeschoolc |
| 2229 | \ setmessageicon |
| 2230 | \ setmessagesound |
| 2231 | \ setmeuseactorvalue |
| 2232 | \ setmeuseactorvaluec |
| 2233 | \ setmeusedobject |
| 2234 | \ setmeusedobjectc |
| 2235 | \ setmeusesarmor |
| 2236 | \ setmeusesarmorc |
| 2237 | \ setmeusesattribute |
| 2238 | \ setmeusesattributec |
| 2239 | \ setmeusescreature |
| 2240 | \ setmeusescreaturec |
| 2241 | \ setmeusesskill |
| 2242 | \ setmeusesskillc |
| 2243 | \ setmeusesweapon |
| 2244 | \ setmeusesweaponc |
| 2245 | \ setmodelpath |
| 2246 | \ setmodlocaldata |
| 2247 | \ setmousespeedx |
| 2248 | \ setmousespeedy |
| 2249 | \ setmpspell |
| 2250 | \ setname |
| 2251 | \ setnameex |
| 2252 | \ setnopersuasion |
| 2253 | \ setnthactiveeffectmagnitude |
| 2254 | \ setnthaemagnitude |
| 2255 | \ setntheffectitemactorvalue |
| 2256 | \ setntheffectitemactorvaluec |
| 2257 | \ setntheffectitemarea |
| 2258 | \ setntheffectitemduration |
| 2259 | \ setntheffectitemmagnitude |
| 2260 | \ setntheffectitemrange |
| 2261 | \ setntheffectitemscript |
| 2262 | \ setntheffectitemscripthostile |
| 2263 | \ setntheffectitemscriptname |
| 2264 | \ setntheffectitemscriptnameex |
| 2265 | \ setntheffectitemscriptschool |
| 2266 | \ setntheffectitemscriptvisualeffect |
| 2267 | \ setntheffectitemscriptvisualeffectc |
| 2268 | \ setntheiarea |
| 2269 | \ setntheiav |
| 2270 | \ setntheiavc |
| 2271 | \ setntheiduration |
| 2272 | \ setntheimagnitude |
| 2273 | \ setntheirange |
| 2274 | \ setntheiscript |
| 2275 | \ setntheishostile |
| 2276 | \ setntheisname |
| 2277 | \ setntheisschool |
| 2278 | \ setntheisvisualeffect |
| 2279 | \ setntheisvisualeffectc |
| 2280 | \ setnthfactionranknameex |
| 2281 | \ setnumericgamesetting |
| 2282 | \ setnumericinisetting |
| 2283 | \ setobjectcharge |
| 2284 | \ setobjecthealth |
| 2285 | \ setoffersapparatus |
| 2286 | \ setoffersarmor |
| 2287 | \ setoffersbooks |
| 2288 | \ setoffersclothing |
| 2289 | \ setoffersingredients |
| 2290 | \ setofferslights |
| 2291 | \ setoffersmagicitems |
| 2292 | \ setoffersmiscitems |
| 2293 | \ setofferspotions |
| 2294 | \ setoffersrecharging |
| 2295 | \ setoffersrepair |
| 2296 | \ setoffersservicesc |
| 2297 | \ setoffersspells |
| 2298 | \ setofferstraining |
| 2299 | \ setoffersweapons |
| 2300 | \ setolmpgrids |
| 2301 | \ setopenkey |
| 2302 | \ setopensound |
| 2303 | \ setopenstip |
| 2304 | \ setownership_t |
| 2305 | \ setowningrequiredrank |
| 2306 | \ setpackageallowfalls |
| 2307 | \ setpackageallowswimming |
| 2308 | \ setpackagealwaysrun |
| 2309 | \ setpackagealwayssneak |
| 2310 | \ setpackagearmorunequipped |
| 2311 | \ setpackagecontinueifpcnear |
| 2312 | \ setpackagedata |
| 2313 | \ setpackagedefensivecombat |
| 2314 | \ setpackagelocationdata |
| 2315 | \ setpackagelockdoorsatend |
| 2316 | \ setpackagelockdoorsatlocation |
| 2317 | \ setpackagelockdoorsatstart |
| 2318 | \ setpackagemustcomplete |
| 2319 | \ setpackagemustreachlocation |
| 2320 | \ setpackagenoidleanims |
| 2321 | \ setpackageoffersservices |
| 2322 | \ setpackageonceperday |
| 2323 | \ setpackagescheduledata |
| 2324 | \ setpackageskipfalloutbehavior |
| 2325 | \ setpackagetarget |
| 2326 | \ setpackagetargetdata |
| 2327 | \ setpackageunlockdoorsatend |
| 2328 | \ setpackageunlockdoorsatlocation |
| 2329 | \ setpackageunlockdoorsatstart |
| 2330 | \ setpackageusehorse |
| 2331 | \ setpackageweaponsunequipped |
| 2332 | \ setparentcellowningfactionrequiredrank |
| 2333 | \ setpathnodedisabled |
| 2334 | \ setpcamurderer |
| 2335 | \ setpcattributebonus |
| 2336 | \ setpcattributebonusc |
| 2337 | \ setpcexpy |
| 2338 | \ setpcleveloffset |
| 2339 | \ setpcmajorskillups |
| 2340 | \ setpctrainingsessionsused |
| 2341 | \ setplayerbseworld |
| 2342 | \ setplayerprojectile |
| 2343 | \ setplayerskeletonpath |
| 2344 | \ setplayerskilladvances |
| 2345 | \ setplayerskilladvancesc |
| 2346 | \ setplayerslastriddenhorse |
| 2347 | \ setpos_t |
| 2348 | \ setpowertimer |
| 2349 | \ setprojectilesource |
| 2350 | \ setprojectilespeed |
| 2351 | \ setquality |
| 2352 | \ setquestitem |
| 2353 | \ setracealias |
| 2354 | \ setraceplayable |
| 2355 | \ setracescale |
| 2356 | \ setracevoice |
| 2357 | \ setraceweight |
| 2358 | \ setrefcount |
| 2359 | \ setrefessential |
| 2360 | \ setreale |
| 2361 | \ setscaleex |
| 2362 | \ setscript |
| 2363 | \ setsigilstoneuses |
| 2364 | \ setskillgoverningattribute |
| 2365 | \ setskillgoverningattributec |
| 2366 | \ setskillspecialization |
| 2367 | \ setskillspecializationc |
| 2368 | \ setskilluseincrement |
| 2369 | \ setskilluseincrementc |
| 2370 | \ setsoulgemcapacity |
| 2371 | \ setsoullevel |
| 2372 | \ setsoundattenuation |
| 2373 | \ setspellareaeffectignoreslos |
| 2374 | \ setspelldisallowabsorbreflect |
| 2375 | \ setspellexplodeswithnotarget |
| 2376 | \ setspellhostile |
| 2377 | \ setspellimmunetosilence |
| 2378 | \ setspellmagickacost |
| 2379 | \ setspellmasterylevel |
| 2380 | \ setspellpcstart |
| 2381 | \ setspellscripteffectalwaysapplies |
| 2382 | \ setspelltype |
| 2383 | \ setstagedate |
| 2384 | \ setstagetext |
| 2385 | \ setstringgamesettingex |
| 2386 | \ setstringinisetting |
| 2387 | \ setsummonable |
| 2388 | \ setsundamage |
| 2389 | \ setsunglare |
| 2390 | \ settaken |
| 2391 | \ settextinputcontrolhandler |
| 2392 | \ settextinputdefaultcontrolsdisabled |
| 2393 | \ settextinputhandler |
| 2394 | \ settexturepath |
| 2395 | \ settimeleft |
| 2396 | \ settrainerlevel |
| 2397 | \ settrainerskill |
| 2398 | \ settransdelta |
| 2399 | \ settravelhorse |
| 2400 | \ setunsafecontainer |
| 2401 | \ setvelocity |
| 2402 | \ setverticalvelocity |
| 2403 | \ setweaponreach |
| 2404 | \ setweaponspeed |
| 2405 | \ setweapontype |
| 2406 | \ setweathercloudspeedlower |
| 2407 | \ setweathercloudspeedupper |
| 2408 | \ setweathercolor |
| 2409 | \ setweatherfogdayfar |
| 2410 | \ setweatherfogdaynear |
| 2411 | \ setweatherfognightfar |
| 2412 | \ setweatherfognightnear |
| 2413 | \ setweatherhdrvalue |
| 2414 | \ setweatherlightningfrequency |
| 2415 | \ setweathersundamage |
| 2416 | \ setweathersunglare |
| 2417 | \ setweathertransdelta |
| 2418 | \ setweatherwindspeed |
| 2419 | \ setweight |
| 2420 | \ setwindspeed |
| 2421 | \ showellmaking |
| 2422 | \ sin |
| 2423 | \ sinh |
| 2424 | \ skipansqrt |
| 2425 | \ squareroot |
| 2426 | \ startcc |
| 2427 | \ stringtoactorvalue |
| 2428 | \ tan |
| 2429 | \ tanh |
| 2430 | \ tapcontrol |
| 2431 | \ tapkey |
| 2432 | \ testexpr |
| 2433 | \ thiactorsai |
| 2434 | \ togglecreaturemodel |
| 2435 | \ togglefirstperson |
| 2436 | \ toggleskillperk |
| 2437 | \ togglespecialanim |
| 2438 | \ tolower |
| 2439 | \ tonumber |
| 2440 | \ tostring |
| 2441 | \ toupper |
| 2442 | \ trapuphitshader |
| 2443 | \ triggerplayerskilluse |
| 2444 | \ triggerplayerskillusec |
| 2445 | \ typeof |
| 2446 | \ uncompletequest |
| 2447 | \ unequipitemns |
| 2448 | \ unequipitemsilent |
| 2449 | \ unequipme |
| 2450 | \ unhammerkey |
| 2451 | \ unsetstagetext |
| 2452 | \ update3d |
| 2453 | \ updatecontainermenu |
| 2454 | \ updatespellpurchasemenu |
| 2455 | \ updatetextinput |
| 2456 | \ vecmag |
| 2457 | \ vecnorm |
| 2458 | \ vectorcross |
| 2459 | \ vectordot |
| 2460 | \ vectormagnitude |
| 2461 | \ vectornormalize |
| 2462 | \ zeromat |
| 2463 | " }}} |
| 2464 | |
| 2465 | " Array Functions {{{ |
| 2466 | syn keyword obseArrayFunction |
| 2467 | \ ar_Append |
| 2468 | \ ar_BadNumericIndex |
| 2469 | \ ar_BadStringIndex |
| 2470 | \ ar_Construct |
| 2471 | \ ar_Copy |
| 2472 | \ ar_CustomSort |
| 2473 | \ ar_DeepCopy |
| 2474 | \ ar_Dump |
| 2475 | \ ar_DumpID |
| 2476 | \ ar_Erase |
| 2477 | \ ar_Find |
| 2478 | \ ar_First |
| 2479 | \ ar_HasKey |
| 2480 | \ ar_Insert |
| 2481 | \ ar_InsertRange |
| 2482 | \ ar_Keys |
| 2483 | \ ar_Last |
| 2484 | \ ar_List |
| 2485 | \ ar_Map |
| 2486 | \ ar_Next |
| 2487 | \ ar_Null |
| 2488 | \ ar_Prev |
| 2489 | \ ar_Range |
| 2490 | \ ar_Resize |
| 2491 | \ ar_Size |
| 2492 | \ ar_Sort |
| 2493 | \ ar_SortAlpha |
| 2494 | " }}} |
| 2495 | |
| 2496 | " String Functions {{{ |
| 2497 | syn keyword obseStringFunction |
| 2498 | \ sv_ToLower |
| 2499 | \ sv_ToUpper |
| 2500 | \ sv_Compare |
| 2501 | \ sv_Construct |
| 2502 | \ sv_Count |
| 2503 | \ sv_Destruct |
| 2504 | \ sv_Erase |
| 2505 | \ sv_Find |
| 2506 | \ sv_Insert |
| 2507 | \ sv_Length |
| 2508 | \ sv_Percentify |
| 2509 | \ sv_Replace |
| 2510 | \ sv_Split |
| 2511 | \ sv_ToNumeric |
| 2512 | " }}} |
| 2513 | |
| 2514 | " Pluggy Functions {{{ |
| 2515 | syn keyword pluggyFunction |
| 2516 | \ ArrayCmp |
| 2517 | \ ArrayCount |
| 2518 | \ ArrayEsp |
| 2519 | \ ArrayProtect |
| 2520 | \ ArraySize |
| 2521 | \ AutoSclHudS |
| 2522 | \ AutoSclHudT |
| 2523 | \ CopyArray |
| 2524 | \ CopyString |
| 2525 | \ CreateArray |
| 2526 | \ CreateEspBook |
| 2527 | \ CreateString |
| 2528 | \ DelAllHudSs |
| 2529 | \ DelAllHudTs |
| 2530 | \ DelFile |
| 2531 | \ DelHudS |
| 2532 | \ DelHudT |
| 2533 | \ DelTxtFile |
| 2534 | \ DestroyAllArrays |
| 2535 | \ DestroyAllStrings |
| 2536 | \ DestroyArray |
| 2537 | \ DestroyString |
| 2538 | \ DupArray |
| 2539 | \ EspToString |
| 2540 | \ FileToString |
| 2541 | \ FindFirstFile |
| 2542 | \ FindFloatInArray |
| 2543 | \ FindInArray |
| 2544 | \ FindNextFile |
| 2545 | \ FindRefInArray |
| 2546 | \ FirstFreeInArray |
| 2547 | \ FirstInArray |
| 2548 | \ FixName |
| 2549 | \ FixNameEx |
| 2550 | \ FloatToString |
| 2551 | \ FmtString |
| 2552 | \ FromOBSEString |
| 2553 | \ FromTSFC |
| 2554 | \ GetEsp |
| 2555 | \ GetFileSize |
| 2556 | \ GetInArray |
| 2557 | \ GetRefEsp |
| 2558 | \ GetTypeInArray |
| 2559 | \ Halt |
| 2560 | \ HasFixedName |
| 2561 | \ HudSEsp |
| 2562 | \ HudSProtect |
| 2563 | \ HudS_Align |
| 2564 | \ HudS_L |
| 2565 | \ HudS_Opac |
| 2566 | \ HudS_SclX |
| 2567 | \ HudS_SclY |
| 2568 | \ HudS_Show |
| 2569 | \ HudS_Tex |
| 2570 | \ HudS_X |
| 2571 | \ HudS_Y |
| 2572 | \ HudTEsp |
| 2573 | \ HudTInfo |
| 2574 | \ HudTProtect |
| 2575 | \ HudT_Align |
| 2576 | \ HudT_Font |
| 2577 | \ HudT_L |
| 2578 | \ HudT_Opac |
| 2579 | \ HudT_SclX |
| 2580 | \ HudT_SclY |
| 2581 | \ HudT_Show |
| 2582 | \ HudT_Text |
| 2583 | \ HudT_X |
| 2584 | \ HudT_Y |
| 2585 | \ HudsInfo |
| 2586 | \ IniDelKey |
| 2587 | \ IniGetNthSection |
| 2588 | \ IniKeyExists |
| 2589 | \ IniReadFloat |
| 2590 | \ IniReadInt |
| 2591 | \ IniReadRef |
| 2592 | \ IniReadString |
| 2593 | \ IniSectionsCount |
| 2594 | \ IniWriteFloat |
| 2595 | \ IniWriteInt |
| 2596 | \ IniWriteRef |
| 2597 | \ IniWriteString |
| 2598 | \ IntToHex |
| 2599 | \ IntToString |
| 2600 | \ IsHUDEnabled |
| 2601 | \ IsPluggyDataReset |
| 2602 | \ KillMenu |
| 2603 | \ LC |
| 2604 | \ LongToRef |
| 2605 | \ ModRefEsp |
| 2606 | \ NewHudS |
| 2607 | \ NewHudT |
| 2608 | \ PackArray |
| 2609 | \ PauseBox |
| 2610 | \ PlgySpcl |
| 2611 | \ RefToLong |
| 2612 | \ RefToString |
| 2613 | \ RemInArray |
| 2614 | \ RenFile |
| 2615 | \ RenTxtFile |
| 2616 | \ ResetName |
| 2617 | \ RunBatString |
| 2618 | \ SanString |
| 2619 | \ ScreenInfo |
| 2620 | \ SetFloatInArray |
| 2621 | \ SetHudT |
| 2622 | \ SetInArray |
| 2623 | \ SetRefInArray |
| 2624 | \ SetString |
| 2625 | \ StrLC |
| 2626 | \ StringCat |
| 2627 | \ StringCmp |
| 2628 | \ StringEsp |
| 2629 | \ StringGetName |
| 2630 | \ StringGetNameEx |
| 2631 | \ StringIns |
| 2632 | \ StringLen |
| 2633 | \ StringMsg |
| 2634 | \ StringMsgBox |
| 2635 | \ StringPos |
| 2636 | \ StringProtect |
| 2637 | \ StringRep |
| 2638 | \ StringSetName |
| 2639 | \ StringSetNameEx |
| 2640 | \ StringToFloat |
| 2641 | \ StringToInt |
| 2642 | \ StringToRef |
| 2643 | \ StringToTxtFile |
| 2644 | \ ToOBSE |
| 2645 | \ ToOBSEString |
| 2646 | \ ToTSFC |
| 2647 | \ TxtFileExists |
| 2648 | \ UserFileExists |
| 2649 | \ csc |
| 2650 | \ rcsc |
| 2651 | " }}} |
| 2652 | |
| 2653 | " tfscFunction {{{ |
| 2654 | syn keyword tfscFunction |
| 2655 | \ StrAddNewLine |
| 2656 | \ StrAppend |
| 2657 | \ StrAppendCharCode |
| 2658 | \ StrCat |
| 2659 | \ StrClear |
| 2660 | \ StrClearLast |
| 2661 | \ StrCompare |
| 2662 | \ StrCopy |
| 2663 | \ StrDel |
| 2664 | \ StrDeleteAll |
| 2665 | \ StrExpr |
| 2666 | \ StrGetFemaleBipedPath |
| 2667 | \ StrGetFemaleGroundPath |
| 2668 | \ StrGetFemaleIconPath |
| 2669 | \ StrGetMaleBipedPath |
| 2670 | \ StrGetMaleIconPath |
| 2671 | \ StrGetModelPath |
| 2672 | \ StrGetName |
| 2673 | \ StrGetNthEffectItemScriptName |
| 2674 | \ StrGetNthFactionRankName |
| 2675 | \ StrGetRandomName |
| 2676 | \ StrIDReplace |
| 2677 | \ StrLength |
| 2678 | \ StrLoad |
| 2679 | \ StrMessageBox |
| 2680 | \ StrNew |
| 2681 | \ StrPrint |
| 2682 | \ StrReplace |
| 2683 | \ StrSave |
| 2684 | \ StrSet |
| 2685 | \ StrSetFemaleBipedPath |
| 2686 | \ StrSetFemaleGroundPath |
| 2687 | \ StrSetFemaleIconPath |
| 2688 | \ StrSetMaleBipedPath |
| 2689 | \ StrSetMaleIconPath |
| 2690 | \ StrSetModelPath |
| 2691 | \ StrSetName |
| 2692 | \ StrSetNthEffectItemScriptName |
| 2693 | " }}} |
| 2694 | |
| 2695 | " Blockhead Functions {{{ |
| 2696 | syn keyword blockheadFunction |
| 2697 | \ GetBodyAssetOverride |
| 2698 | \ GetFaceGenAge |
| 2699 | \ GetHeadAssetOverride |
| 2700 | \ RefreshAnimData |
| 2701 | \ RegisterEquipmentOverrideHandler |
| 2702 | \ ResetAgeTextureOverride |
| 2703 | \ ResetBodyAssetOverride |
| 2704 | \ ResetHeadAssetOverride |
| 2705 | \ SetAgeTextureOverride |
| 2706 | \ SetBodyAssetOverride |
| 2707 | \ SetFaceGenAge |
| 2708 | \ SetHeadAssetOverride |
| 2709 | \ ToggleAnimOverride |
| 2710 | \ UnregisterEquipmentOverrideHandler |
| 2711 | " }}} |
| 2712 | |
| 2713 | " switchNightEyeShaderFunction {{{ |
| 2714 | syn keyword switchNightEyeShaderFunction |
| 2715 | \ EnumNightEyeShader |
| 2716 | \ SetNightEyeShader |
| 2717 | " }}} |
| 2718 | |
| 2719 | " Oblivion Reloaded Functions {{{ |
| 2720 | syn keyword obseivionReloadedFunction |
| 2721 | \ cameralookat |
| 2722 | \ cameralookatposition |
| 2723 | \ camerareset |
| 2724 | \ camerarotate |
| 2725 | \ camerarotatetoposition |
| 2726 | \ cameratranslate |
| 2727 | \ cameratranslatetoposition |
| 2728 | \ getlocationname |
| 2729 | \ getsetting |
| 2730 | \ getversion |
| 2731 | \ getweathername |
| 2732 | \ isthirdperson |
| 2733 | \ setcustomconstant |
| 2734 | \ setextraeffectenabled |
| 2735 | \ setsetting |
| 2736 | " }}} |
| 2737 | " menuQue Functions {{{ |
| 2738 | syn keyword menuQueFunction |
| 2739 | \ GetAllSkills |
| 2740 | \ GetAVSkillMasteryLevelC |
| 2741 | \ GetAVSkillMasteryLevelF |
| 2742 | \ GetFontLoaded |
| 2743 | \ GetGenericButtonPressed |
| 2744 | \ GetLoadedFonts |
| 2745 | \ GetLocalMapSeen |
| 2746 | \ GetMenuEventType |
| 2747 | \ GetMenuFloatValue |
| 2748 | \ GetMenuStringValue |
| 2749 | \ GetMouseImage |
| 2750 | \ GetMousePos |
| 2751 | \ GetPlayerSkillAdvancesF |
| 2752 | \ GetPlayerSkillUseF |
| 2753 | \ GetRequiredSkillExpC |
| 2754 | \ GetRequiredSkillExpF |
| 2755 | \ GetSkillCode |
| 2756 | \ GetSkillForm |
| 2757 | \ GetSkillGoverningAttributeF |
| 2758 | \ GetSkillSpecializationC |
| 2759 | \ GetSkillSpecializationF |
| 2760 | \ GetSkillUseIncrementF |
| 2761 | \ GetTextEditBox |
| 2762 | \ GetTextEditString |
| 2763 | \ GetTrainingMenuCost |
| 2764 | \ GetTrainingMenuLevel |
| 2765 | \ GetTrainingMenuSkill |
| 2766 | \ GetWorldMapData |
| 2767 | \ GetWorldMapDoor |
| 2768 | \ IncrementPlayerSkillUseF |
| 2769 | \ InsertXML |
| 2770 | \ InsertXMLTemplate |
| 2771 | \ IsTextEditInUse |
| 2772 | \ Kyoma_Test |
| 2773 | \ ModPlayerSkillExpF |
| 2774 | \ mqCreateMenuFloatValue |
| 2775 | \ mqCreateMenuStringValue |
| 2776 | \ mqGetActiveQuest |
| 2777 | \ mqGetActiveQuestTargets |
| 2778 | \ mqGetCompletedQuests |
| 2779 | \ mqGetCurrentQuests |
| 2780 | \ mqGetEnchMenuBaseItem |
| 2781 | \ mqGetHighlightedClass |
| 2782 | \ mqGetMapMarkers |
| 2783 | \ mqGetMenuActiveChildIndex |
| 2784 | \ mqGetMenuActiveFloatValue |
| 2785 | \ mqGetMenuActiveStringValue |
| 2786 | \ mqGetMenuChildCount |
| 2787 | \ mqGetMenuChildFloatValue |
| 2788 | \ mqGetMenuChildHasTrait |
| 2789 | \ mqGetMenuChildName |
| 2790 | \ mqGetMenuChildStringValue |
| 2791 | \ mqGetMenuGlobalFloatValue |
| 2792 | \ mqGetMenuGlobalStringValue |
| 2793 | \ mqGetQuestCompleted |
| 2794 | \ mqGetSelectedClass |
| 2795 | \ mqSetActiveQuest |
| 2796 | \ mqSetMenuActiveFloatValue |
| 2797 | \ mqSetMenuActiveStringValue |
| 2798 | \ mqSetMenuChildFloatValue |
| 2799 | \ mqSetMenuChildStringValue |
| 2800 | \ mqSetMenuGlobalStringValue |
| 2801 | \ mqSetMenuGlobalFloatValue |
| 2802 | \ mqSetMessageBoxSource |
| 2803 | \ mqUncompleteQuest |
| 2804 | \ RemoveMenuEventHandler |
| 2805 | \ SetMenuEventHandler |
| 2806 | \ SetMouseImage |
| 2807 | \ SetPlayerSkillAdvancesF |
| 2808 | \ SetSkillGoverningAttributeF |
| 2809 | \ SetSkillSpecializationC |
| 2810 | \ SetSkillSpecializationF |
| 2811 | \ SetSkillUseIncrementF |
| 2812 | \ SetTextEditString |
| 2813 | \ SetTrainerSkillC |
| 2814 | \ SetWorldMapData |
| 2815 | \ ShowGenericMenu |
| 2816 | \ ShowLevelUpMenu |
| 2817 | \ ShowMagicPopupMenu |
| 2818 | \ ShowTextEditMenu |
| 2819 | \ ShowTrainingMenu |
| 2820 | \ tile_FadeFloat |
| 2821 | \ tile_GetFloat |
| 2822 | \ tile_GetInfo |
| 2823 | \ tile_GetName |
| 2824 | \ tile_GetString |
| 2825 | \ tile_GetVar |
| 2826 | \ tile_HasTrait |
| 2827 | \ tile_SetFloat |
| 2828 | \ tile_SetString |
| 2829 | \ TriggerPlayerSkillUseF |
| 2830 | \ UpdateLocalMap |
| 2831 | " }}} |
| 2832 | |
| 2833 | " eaxFunction {{{ |
| 2834 | syn keyword eaxFunction |
| 2835 | \ CreateEAXeffect |
| 2836 | \ DeleteEAXeffect |
| 2837 | \ DisableEAX |
| 2838 | \ EAXcopyEffect |
| 2839 | \ EAXeffectExists |
| 2840 | \ EAXeffectsAreEqual |
| 2841 | \ EAXgetActiveEffect |
| 2842 | \ EAXnumEffects |
| 2843 | \ EAXpushEffect |
| 2844 | \ EAXpopEffect |
| 2845 | \ EAXremoveAllInstances |
| 2846 | \ EAXremoveFirstInstance |
| 2847 | \ EAXstackIsEmpty |
| 2848 | \ EAXstackSize |
| 2849 | \ EnableEAX |
| 2850 | \ GetEAXAirAbsorptionHF |
| 2851 | \ GetEAXDecayHFRatio |
| 2852 | \ GetEAXDecayTime |
| 2853 | \ GetEAXEnvironment |
| 2854 | \ GetEAXEnvironmentSize |
| 2855 | \ GetEAXEnvironmentDiffusion |
| 2856 | \ GetEAXReflections |
| 2857 | \ GetEAXReflectionsDelay |
| 2858 | \ GetEAXReverb |
| 2859 | \ GetEAXReverbDelay |
| 2860 | \ GetEAXRoom |
| 2861 | \ GetEAXRoomHF |
| 2862 | \ GetEAXRoomRolloffFactor |
| 2863 | \ InitializeEAX |
| 2864 | \ IsEAXEnabled |
| 2865 | \ IsEAXInitialized |
| 2866 | \ SetEAXAirAbsorptionHF |
| 2867 | \ SetEAXallProperties |
| 2868 | \ SetEAXDecayTime |
| 2869 | \ SetEAXDecayHFRatio |
| 2870 | \ SetEAXEnvironment |
| 2871 | \ SetEAXEnvironmentSize |
| 2872 | \ SetEAXEnvironmentDiffusion |
| 2873 | \ SetEAXReflections |
| 2874 | \ SetEAXReflectionsDelay |
| 2875 | \ SetEAXReverb |
| 2876 | \ SetEAXReverbDelay |
| 2877 | \ SetEAXRoom |
| 2878 | \ SetEAXRoomHF |
| 2879 | \ SetEAXRoomRolloffFactor |
| 2880 | " }}} |
| 2881 | |
| 2882 | " networkPipeFunction {{{ |
| 2883 | syn keyword networkPipeFunction |
| 2884 | \ NetworkPipe_CreateClient |
| 2885 | \ NetworkPipe_GetData |
| 2886 | \ NetworkPipe_IsNewGame |
| 2887 | \ NetworkPipe_KillClient |
| 2888 | \ NetworkPipe_Receive |
| 2889 | \ NetworkPipe_SetData |
| 2890 | \ NetworkPipe_Send |
| 2891 | \ NetworkPipe_StartService |
| 2892 | \ NetworkPipe_StopService |
| 2893 | " }}} |
| 2894 | |
| 2895 | " nifseFunction {{{ |
| 2896 | syn keyword nifseFunction |
| 2897 | \ BSFurnitureMarkerGetPositionRefs |
| 2898 | \ BSFurnitureMarkerSetPositionRefs |
| 2899 | \ GetNifTypeIndex |
| 2900 | \ NiAVObjectAddProperty |
| 2901 | \ NiAVObjectClearCollisionObject |
| 2902 | \ NiAVObjectCopyCollisionObject |
| 2903 | \ NiAVObjectDeleteProperty |
| 2904 | \ NiAVObjectGetCollisionMode |
| 2905 | \ NiAVObjectGetCollisionObject |
| 2906 | \ NiAVObjectGetLocalRotation |
| 2907 | \ NiAVObjectGetLocalScale |
| 2908 | \ NiAVObjectGetLocalTransform |
| 2909 | \ NiAVObjectGetLocalTranslation |
| 2910 | \ NiAVObjectGetNumProperties |
| 2911 | \ NiAVObjectGetProperties |
| 2912 | \ NiAVObjectGetPropertyByType |
| 2913 | \ NiAVObjectSetCollisionMode |
| 2914 | \ NiAVObjectSetLocalRotation |
| 2915 | \ NiAVObjectSetLocalScale |
| 2916 | \ NiAVObjectSetLocalTransform |
| 2917 | \ NiAVObjectSetLocalTranslation |
| 2918 | \ NiAlphaPropertyGetBlendState |
| 2919 | \ NiAlphaPropertyGetDestinationBlendFunction |
| 2920 | \ NiAlphaPropertyGetSourceBlendFunction |
| 2921 | \ NiAlphaPropertyGetTestFunction |
| 2922 | \ NiAlphaPropertyGetTestState |
| 2923 | \ NiAlphaPropertyGetTestThreshold |
| 2924 | \ NiAlphaPropertyGetTriangleSortMode |
| 2925 | \ NiAlphaPropertySetBlendState |
| 2926 | \ NiAlphaPropertySetDestinationBlendFunction |
| 2927 | \ NiAlphaPropertySetSourceBlendFunction |
| 2928 | \ NiAlphaPropertySetTestFunction |
| 2929 | \ NiAlphaPropertySetTestState |
| 2930 | \ NiAlphaPropertySetTestThreshold |
| 2931 | \ NiAlphaPropertySetTriangleSortMode |
| 2932 | \ NiExtraDataGetArray |
| 2933 | \ NiExtraDataGetName |
| 2934 | \ NiExtraDataGetNumber |
| 2935 | \ NiExtraDataGetString |
| 2936 | \ NiExtraDataSetArray |
| 2937 | \ NiExtraDataSetName |
| 2938 | \ NiExtraDataSetNumber |
| 2939 | \ NiExtraDataSetString |
| 2940 | \ NiMaterialPropertyGetAmbientColor |
| 2941 | \ NiMaterialPropertyGetDiffuseColor |
| 2942 | \ NiMaterialPropertyGetEmissiveColor |
| 2943 | \ NiMaterialPropertyGetGlossiness |
| 2944 | \ NiMaterialPropertyGetSpecularColor |
| 2945 | \ NiMaterialPropertyGetTransparency |
| 2946 | \ NiMaterialPropertySetAmbientColor |
| 2947 | \ NiMaterialPropertySetDiffuseColor |
| 2948 | \ NiMaterialPropertySetEmissiveColor |
| 2949 | \ NiMaterialPropertySetGlossiness |
| 2950 | \ NiMaterialPropertySetSpecularColor |
| 2951 | \ NiMaterialPropertySetTransparency |
| 2952 | \ NiNodeAddChild |
| 2953 | \ NiNodeCopyChild |
| 2954 | \ NiNodeDeleteChild |
| 2955 | \ NiNodeGetChildByName |
| 2956 | \ NiNodeGetChildren |
| 2957 | \ NiNodeGetNumChildren |
| 2958 | \ NiObjectGetType |
| 2959 | \ NiObjectGetTypeName |
| 2960 | \ NiObjectNETAddExtraData |
| 2961 | \ NiObjectNETDeleteExtraData |
| 2962 | \ NiObjectNETGetExtraData |
| 2963 | \ NiObjectNETGetExtraDataByName |
| 2964 | \ NiObjectNETGetName |
| 2965 | \ NiObjectNETGetNumExtraData |
| 2966 | \ NiObjectNETSetName |
| 2967 | \ NiObjectTypeDerivesFrom |
| 2968 | \ NiSourceTextureGetFile |
| 2969 | \ NiSourceTextureIsExternal |
| 2970 | \ NiSourceTextureSetExternalTexture |
| 2971 | \ NiStencilPropertyGetFaceDrawMode |
| 2972 | \ NiStencilPropertyGetFailAction |
| 2973 | \ NiStencilPropertyGetPassAction |
| 2974 | \ NiStencilPropertyGetStencilFunction |
| 2975 | \ NiStencilPropertyGetStencilMask |
| 2976 | \ NiStencilPropertyGetStencilRef |
| 2977 | \ NiStencilPropertyGetStencilState |
| 2978 | \ NiStencilPropertyGetZFailAction |
| 2979 | \ NiStencilPropertySetFaceDrawMode |
| 2980 | \ NiStencilPropertySetFailAction |
| 2981 | \ NiStencilPropertySetPassAction |
| 2982 | \ NiStencilPropertySetStencilFunction |
| 2983 | \ NiStencilPropertySetStencilMask |
| 2984 | \ NiStencilPropertySetStencilRef |
| 2985 | \ NiStencilPropertySetStencilState |
| 2986 | \ NiStencilPropertySetZFailAction |
| 2987 | \ NiTexturingPropertyAddTextureSource |
| 2988 | \ NiTexturingPropertyDeleteTextureSource |
| 2989 | \ NiTexturingPropertyGetTextureCenterOffset |
| 2990 | \ NiTexturingPropertyGetTextureClampMode |
| 2991 | \ NiTexturingPropertyGetTextureCount |
| 2992 | \ NiTexturingPropertyGetTextureFilterMode |
| 2993 | \ NiTexturingPropertyGetTextureFlags |
| 2994 | \ NiTexturingPropertyGetTextureRotation |
| 2995 | \ NiTexturingPropertyGetTextureSource |
| 2996 | \ NiTexturingPropertyGetTextureTiling |
| 2997 | \ NiTexturingPropertyGetTextureTranslation |
| 2998 | \ NiTexturingPropertyGetTextureUVSet |
| 2999 | \ NiTexturingPropertyHasTexture |
| 3000 | \ NiTexturingPropertySetTextureCenterOffset |
| 3001 | \ NiTexturingPropertySetTextureClampMode |
| 3002 | \ NiTexturingPropertySetTextureCount |
| 3003 | \ NiTexturingPropertySetTextureFilterMode |
| 3004 | \ NiTexturingPropertySetTextureFlags |
| 3005 | \ NiTexturingPropertySetTextureHasTransform |
| 3006 | \ NiTexturingPropertySetTextureRotation |
| 3007 | \ NiTexturingPropertySetTextureTiling |
| 3008 | \ NiTexturingPropertySetTextureTranslation |
| 3009 | \ NiTexturingPropertySetTextureUVSet |
| 3010 | \ NiTexturingPropertyTextureHasTransform |
| 3011 | \ NiVertexColorPropertyGetLightingMode |
| 3012 | \ NiVertexColorPropertyGetVertexMode |
| 3013 | \ NiVertexColorPropertySetLightingMode |
| 3014 | \ NiVertexColorPropertySetVertexMode |
| 3015 | \ NifClose |
| 3016 | \ NifGetAltGrip |
| 3017 | \ NifGetBackShield |
| 3018 | \ NifGetNumBlocks |
| 3019 | \ NifGetOffHand |
| 3020 | \ NifGetOriginalPath |
| 3021 | \ NifGetPath |
| 3022 | \ NifOpen |
| 3023 | \ NifWriteToDisk |
| 3024 | " }}} |
| 3025 | |
| 3026 | " reidFunction {{{ |
| 3027 | syn keyword reidFunction |
| 3028 | \ GetRuntimeEditorID |
| 3029 | " }}} |
| 3030 | |
| 3031 | " runtimeDebuggerFunction {{{ |
| 3032 | syn keyword runtimeDebuggerFunction |
| 3033 | \ DebugBreak |
| 3034 | \ ToggleDebugBreaking |
| 3035 | " }}} |
| 3036 | |
| 3037 | " addActorValuesFunction {{{ |
| 3038 | syn keyword addActorValuesFunction |
| 3039 | \ DumpActorValueC |
| 3040 | \ DumpActorValueF |
| 3041 | \ GetActorValueBaseCalcC |
| 3042 | \ GetActorValueBaseCalcF |
| 3043 | \ GetActorValueCurrentC |
| 3044 | \ GetActorValueCurrentF |
| 3045 | \ GetActorValueMaxC |
| 3046 | \ GetActorValueMaxF |
| 3047 | \ GetActorValueModC |
| 3048 | \ GetActorValueModF |
| 3049 | \ ModActorValueModC |
| 3050 | \ ModActorValueModF |
| 3051 | \ SetActorValueModC |
| 3052 | \ SetActorValueModF |
| 3053 | \ DumpAVC |
| 3054 | \ DumpAVF |
| 3055 | \ GetAVModC |
| 3056 | \ GetAVModF |
| 3057 | \ ModAVModC |
| 3058 | \ ModAVModF |
| 3059 | \ SetAVModC |
| 3060 | \ SetAVModF |
| 3061 | \ GetAVBaseCalcC |
| 3062 | \ GetAVBaseCalcF |
| 3063 | \ GetAVMaxC |
| 3064 | \ GetAVMaxF |
| 3065 | \ GetAVCurrentC |
| 3066 | \ GetAVCurrent |
| 3067 | " }}} |
| 3068 | |
| 3069 | " memoryDumperFunction {{{ |
| 3070 | syn keyword memoryDumperFunction |
| 3071 | \ SetDumpAddr |
| 3072 | \ SetDumpType |
| 3073 | \ SetFadeAmount |
| 3074 | \ SetObjectAddr |
| 3075 | \ ShowMemoryDump |
| 3076 | " }}} |
| 3077 | |
| 3078 | " algoholFunction {{{ |
| 3079 | syn keyword algoholFunction |
| 3080 | \ QFromAxisAngle |
| 3081 | \ QFromEuler |
| 3082 | \ QInterpolate |
| 3083 | \ QMultQuat |
| 3084 | \ QMultVector3 |
| 3085 | \ QNormalize |
| 3086 | \ QToEuler |
| 3087 | \ V3Crossproduct |
| 3088 | \ V3Length |
| 3089 | \ V3Normalize |
| 3090 | " }}} |
| 3091 | |
| 3092 | " soundCommandsFunction {{{ |
| 3093 | syn keyword soundCommandsFunction |
| 3094 | \ FadeMusic |
| 3095 | \ GetEffectsVolume |
| 3096 | \ GetFootVolume |
| 3097 | \ GetMasterVolume |
| 3098 | \ GetMusicVolume |
| 3099 | \ GetVoiceVolume |
| 3100 | \ PlayMusicFile |
| 3101 | \ SetEffectsVolume |
| 3102 | \ SetFootVolume |
| 3103 | \ SetMasterVolume |
| 3104 | \ SetMusicVolume |
| 3105 | \ SetVoiceVolume |
| 3106 | " }}} |
| 3107 | |
| 3108 | " emcFunction {{{ |
| 3109 | syn keyword emcFunction |
| 3110 | \ emcAddPathToPlaylist |
| 3111 | \ emcCreatePlaylist |
| 3112 | \ emcGetAllPlaylists |
| 3113 | \ emcGetAfterBattleDelay |
| 3114 | \ emcGetBattleDelay |
| 3115 | \ emcGetEffectsVolume |
| 3116 | \ emcGetFadeTime |
| 3117 | \ emcGetFootVolume |
| 3118 | \ emcGetMasterVolume |
| 3119 | \ emcGetMaxRestoreTime |
| 3120 | \ emcGetMusicSpeed |
| 3121 | \ emcGetMusicType |
| 3122 | \ emcGetMusicVolume |
| 3123 | \ emcGetPauseTime |
| 3124 | \ emcGetPlaylist |
| 3125 | \ emcGetPlaylistTracks |
| 3126 | \ emcGetTrackName |
| 3127 | \ emcGetTrackDuration |
| 3128 | \ emcGetTrackPosition |
| 3129 | \ emcGetVoiceVolume |
| 3130 | \ emcIsBattleOverridden |
| 3131 | \ emcIsMusicOnHold |
| 3132 | \ emcIsMusicSwitching |
| 3133 | \ emcIsPlaylistActive |
| 3134 | \ emcMusicNextTrack |
| 3135 | \ emcMusicPause |
| 3136 | \ emcMusicRestart |
| 3137 | \ emcMusicResume |
| 3138 | \ emcMusicStop |
| 3139 | \ emcPlaylistExists |
| 3140 | \ emcPlayTrack |
| 3141 | \ emcRestorePlaylist |
| 3142 | \ emcSetAfterBattleDelay |
| 3143 | \ emcSetBattleDelay |
| 3144 | \ emcSetBattleOverride |
| 3145 | \ emcSetEffectsVolume |
| 3146 | \ emcSetFadeTime |
| 3147 | \ emcSetFootVolume |
| 3148 | \ emcSetMasterVolume |
| 3149 | \ emcSetMaxRestoreTime |
| 3150 | \ emcSetMusicHold |
| 3151 | \ emcSetMusicSpeed |
| 3152 | \ emcSetMusicVolume |
| 3153 | \ emcSetPauseTime |
| 3154 | \ emcSetPlaylist |
| 3155 | \ emcSetTrackPosition |
| 3156 | \ emcSetMusicType |
| 3157 | \ emcSetVoiceVolume |
| 3158 | " }}} |
| 3159 | |
| 3160 | " vipcxjFunction {{{ |
| 3161 | syn keyword vipcxjFunction |
| 3162 | \ vcAddMark |
| 3163 | \ vcGetFilePath |
| 3164 | \ vcGetHairColorRGB |
| 3165 | \ vcGetValueNumeric |
| 3166 | \ vcGetValueString |
| 3167 | \ vcIsMarked |
| 3168 | \ vcPrintIni |
| 3169 | \ vcSetActorState |
| 3170 | \ vcSetHairColor |
| 3171 | \ vcSetHairColorRGB |
| 3172 | \ vcSetHairColorRGB3P |
| 3173 | " }}} |
| 3174 | |
| 3175 | " cameraCommandsFunction {{{ |
| 3176 | syn keyword cameraCommandsFunction |
| 3177 | \ CameraGetRef |
| 3178 | \ CameraLookAt |
| 3179 | \ CameraLookAtPosition |
| 3180 | \ CameraMove |
| 3181 | \ CameraMoveToPosition |
| 3182 | \ CameraReset |
| 3183 | \ CameraRotate |
| 3184 | \ CameraRotateToPosition |
| 3185 | \ CameraSetRef |
| 3186 | \ CameraStopLook |
| 3187 | " }}} |
| 3188 | |
| 3189 | " obmeFunction {{{ |
| 3190 | syn keyword obmeFunction |
| 3191 | \ ClearNthEIBaseCost |
| 3192 | \ ClearNthEIEffectName |
| 3193 | \ ClearNthEIHandlerParam |
| 3194 | \ ClearNthEIHostility |
| 3195 | \ ClearNthEIIconPath |
| 3196 | \ ClearNthEIResistAV |
| 3197 | \ ClearNthEISchool |
| 3198 | \ ClearNthEIVFXCode |
| 3199 | \ CreateMgef |
| 3200 | \ GetMagicEffectHandlerC |
| 3201 | \ GetMagicEffectHandlerParamC |
| 3202 | \ GetMagicEffectHostilityC |
| 3203 | \ GetNthEIBaseCost |
| 3204 | \ GetNthEIEffectName |
| 3205 | \ GetNthEIHandlerParam |
| 3206 | \ GetNthEIHostility |
| 3207 | \ GetNthEIIconPath |
| 3208 | \ GetNthEIResistAV |
| 3209 | \ GetNthEISchool |
| 3210 | \ GetNthEIVFXCode |
| 3211 | \ ResolveMgefCode |
| 3212 | \ SetMagicEffectHandlerC |
| 3213 | \ SetMagicEffectHandlerIntParamC |
| 3214 | \ SetMagicEffectHandlerRefParamC |
| 3215 | \ SetMagicEffectHostilityC |
| 3216 | \ SetNthEIBaseCost |
| 3217 | \ SetNthEIEffectName |
| 3218 | \ SetNthEIHandlerIntParam |
| 3219 | \ SetNthEIHandlerRefParam |
| 3220 | \ SetNthEIHostility |
| 3221 | \ SetNthEIIconPath |
| 3222 | \ SetNthEIResistAV |
| 3223 | \ SetNthEISchool |
| 3224 | \ SetNthEIVFXCode |
| 3225 | " }}} |
| 3226 | |
| 3227 | " conscribeFunction {{{ |
| 3228 | syn keyword conscribeFunction |
| 3229 | \ DeleteLinesFromLog |
| 3230 | \ GetLogLineCount |
| 3231 | \ GetRegisteredLogNames |
| 3232 | \ ReadFromLog |
| 3233 | \ RegisterLog |
| 3234 | \ Scribe |
| 3235 | \ UnregisterLog |
| 3236 | " }}} |
| 3237 | |
| 3238 | " systemDialogFunction {{{ |
| 3239 | syn keyword systemDialogFunction |
| 3240 | \ Sysdlg_Browser |
| 3241 | \ Sysdlg_ReadBrowser |
| 3242 | \ Sysdlg_TextInput |
| 3243 | " }}} |
| 3244 | |
| 3245 | " csiFunction {{{ |
| 3246 | syn keyword csiFunction |
| 3247 | \ ClearSpellIcon |
| 3248 | \ HasAssignedIcon |
| 3249 | \ OverwriteSpellIcon |
| 3250 | \ SetSpellIcon |
| 3251 | " }}} |
| 3252 | |
| 3253 | " haelFunction {{{ |
| 3254 | syn keyword haelFunction |
| 3255 | \ GetHUDActiveEffectLimit |
| 3256 | \ SetHUDActiveEffectLimit |
| 3257 | " }}} |
| 3258 | |
| 3259 | " lcdFunction {{{ |
| 3260 | syn keyword lcdFunction |
| 3261 | \ lcd_addinttobuffer |
| 3262 | \ lcd_addtexttobuffer |
| 3263 | \ lcd_clearrect |
| 3264 | \ lcd_cleartextbuffer |
| 3265 | \ lcd_close |
| 3266 | \ lcd_drawcircle |
| 3267 | \ lcd_drawgrid |
| 3268 | \ lcd_drawint |
| 3269 | \ lcd_drawline |
| 3270 | \ lcd_drawprogressbarh |
| 3271 | \ lcd_drawprogressbarv |
| 3272 | \ lcd_drawprogresscircle |
| 3273 | \ lcd_drawrect |
| 3274 | \ lcd_drawtext |
| 3275 | \ lcd_drawtextbuffer |
| 3276 | \ lcd_drawtexture |
| 3277 | \ lcd_flush |
| 3278 | \ lcd_getbuttonstate |
| 3279 | \ lcd_getheight |
| 3280 | \ lcd_getwidth |
| 3281 | \ lcd_ismulti |
| 3282 | \ lcd_isopen |
| 3283 | \ lcd_open |
| 3284 | \ lcd_refresh |
| 3285 | \ lcd_savebuttonsnapshot |
| 3286 | \ lcd_scale |
| 3287 | \ lcd_setfont |
| 3288 | " }}} |
| 3289 | |
| 3290 | " Deprecated: {{{ |
| 3291 | syn keyword obDeprecated |
| 3292 | \ SetAltControl |
| 3293 | \ GetAltControl |
| 3294 | \ RefreshControlMap |
| 3295 | " }}} |
| 3296 | " }}} |
| 3297 | |
| 3298 | if !exists("did_obl_inits") |
| 3299 | |
| 3300 | let did_obl_inits = 1 |
| 3301 | hi def link obseStatement Statement |
| 3302 | hi def link obseStatementTwo Statement |
| 3303 | hi def link obseDescBlock String |
| 3304 | hi def link obseComment Comment |
| 3305 | hi def link obseString String |
| 3306 | hi def link obseStringFormatting Keyword |
| 3307 | hi def link obseFloat Float |
| 3308 | hi def link obseInt Number |
| 3309 | hi def link obseToDo Todo |
| 3310 | hi def link obseTypes Type |
| 3311 | hi def link obseCondition Conditional |
| 3312 | hi def link obseOperator Operator |
| 3313 | hi def link obseOtherKey Special |
| 3314 | hi def link obseScriptName Special |
| 3315 | hi def link obseBlock Conditional |
| 3316 | hi def link obseBlockType Structure |
| 3317 | hi def link obseScriptNameRegion Underlined |
| 3318 | hi def link obseNames Identifier |
| 3319 | hi def link obseVariable Identifier |
| 3320 | hi def link obseReference Special |
| 3321 | hi def link obseRepeat Repeat |
| 3322 | |
| 3323 | hi def link csFunction Function |
| 3324 | hi def link obseFunction Function |
| 3325 | hi def link obseArrayFunction Function |
| 3326 | hi def link pluggyFunction Function |
| 3327 | hi def link obseStringFunction Function |
| 3328 | hi def link obseArrayFunction Function |
| 3329 | hi def link tsfcFunction Function |
| 3330 | hi def link blockheadFunction Function |
| 3331 | hi def link switchNightEyeShaderFunction Function |
| 3332 | hi def link obseivionReloadedFunction Function |
| 3333 | hi def link menuQueFunction Function |
| 3334 | hi def link eaxFunction Function |
| 3335 | hi def link networkPipeFunction Function |
| 3336 | hi def link nifseFunction Function |
| 3337 | hi def link reidFunction Function |
| 3338 | hi def link runtimeDebuggerFunction Function |
| 3339 | hi def link addActorValuesFunction Function |
| 3340 | hi def link memoryDumperFunction Function |
| 3341 | hi def link algoholFunction Function |
| 3342 | hi def link soundCommandsFunction Function |
| 3343 | hi def link emcFunction Function |
| 3344 | hi def link vipcxjFunction Function |
| 3345 | hi def link cameraCommands Function |
| 3346 | hi def link obmeFunction Function |
| 3347 | hi def link conscribeFunction Function |
| 3348 | hi def link systemDialogFunction Function |
| 3349 | hi def link csiFunction Function |
| 3350 | hi def link haelFunction Function |
| 3351 | hi def link lcdFunction Function |
| 3352 | hi def link skillAttribute String |
| 3353 | hi def link obDeprecated WarningMsg |
| 3354 | |
| 3355 | endif |
| 3356 | |
| 3357 | let b:current_syntax = 'obse' |
| 3358 | |
| 3359 | let &cpo = s:cpo_save |
| 3360 | unlet s:cpo_save |