Difference between revisions of "Portal:Scripting"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Qazaaq
m (let's just keep it simple)
imported>Bruneauinfo
m (→‎Scripting Basics: May be a better name for this concept.)
 
(40 intermediate revisions by 9 users not shown)
Line 1: Line 1:
<div id="esstyle">
==Overview==
<h2 class="header">Welcome to the Scripting Portal</h2>
'''Scripts''' are used by modders to control the game in fairly direct ways and achieve effects that are far outside the normal scope of the game. If you're new to scripting, you should start at the top of the page, especially with the tutorials. If you're an experienced scripter, then the later parts of the page should be most useful.
</div >


<div id="esstyle">
==Basic Tutorials==
<h2 class="header">Troubleshooting</h2>
 
<div id="esstyle" style="float: right; width: 40%;">
 
<h2 class="header">Featured</h2>
[[Image:Scripttut2_testing2.JPG|thumb|right|The message box we wrote]]
==== My Second Script ====
While the '''My First Script''' tutorial is a good first taste of scripting for Oblivion, it does not appreciably demonstrate what the scripting language in Oblivion can do. It is a wonderful introduction for those who have never seen a programming or scripting language before, but a more in-depth tutorial would be helpful to further introduce modders to this amazing resource.
 
This tutorial has been largely adapted from GhanBuriGhan's excellent Morrowind Scripting for Dummies; all credit goes to GhanBuriGhan for his fantastic work on the original.
 
This tutorial is meant to be a more complete introduction to scripting for Oblivion than the My First Script tutorial, and assumes that the reader is already familiar with My First Script. If you do not understand the main points of that tutorial, you may find yourself in over your head here. If you're comfortable with My First Script, though, let's begin scripting!
{{break}}
<div style="text-align:right; padding: 2px;">[[Scripting Tutorial: My Second Script|Read more...]]</div>
</div>
</div>


<div id="esstyle">
*[[Scripting Tutorial: My First Spell|My First Spell]] - With script effects.
<h2 class="header">Categories</h2>
*[[Scripting Tutorial: My Second Script|My Second Script]]
</div>
*[[Start Your Mod]]
*[[Scripting_Tutorial:_Creating_a_Simple_Timer|Creating a Simple Timer]]
*[[Scripting_Tutorial:_Modify_Weapon_On_Equip|Modify Weapon On Equip]]
 
==Functions==
* [[List of Functions|All Functions]]
** [[CS Functions]]
** [[OBSE Functions]]
** [[Pluggy Functions]]
** [[TSFC Functions]]
*[[:Category: Functions|Function Categories]]
 
==General Knowledge==
*[[TES Files]] - Basic info about esp and esm files.
**[[Esp vs. Esm]] - Differences between esp and esm files.
* [[Modding Terminology]] - Advanced discussion of modding terms.
*[[:Category:Console Functions|Console Functions]] - Useful for playtesting.
 
==Scripting Basics==
*[[Scripting Tutorial: Basic Scripting Knowledge|Basic Scripting Knowledge]]
*[[:Category:Commands|Commands]]
*[[:Category:Variables|Variables]]
*[[If|Using "If" Conditions]]
* '''Types of Scripts'''
**[[Object scripts]]
**[[Quest scripts]]
**[[Global Scripts]]
**[[Magic effect scripts]]
*[[Script Processing]]
*[[Cross Script Variables]]
 
==Troubleshooting==
*[[Common Bugs]]
*[[Common Mistakes]]
*[[Crashes]]
*[[Debugging]]
*[[Performance Problems]]
*[[Debug Scripts]]
 
==Code Optimization==
* [[CPU-usage of Functions]] - Lists of functions and their effects on performance; notes on which drop FPS the most, etc.
* [[Minimizing your Script]] - Tips to keep the number of functions used down, how often sections of your script run, and more.
* [[Script Comparison Tests]] - Comparisons of script snippets and/or functions.


<div id="esstyle">
==Extensions and Libraries==
<h2 class="header">Tutorials</h2>
*[[Oblivion Script Extender]] - Oblivion scripting language extension.
</div>
*[[ESM Math Library]] - Math functions as stage function library.
*[http://www.uesp.net/wiki/Tes4Mod:Cobl/Modding Cobl] - Common Oblivion.


<div id="esstyle">
==Standard Solutions==
<h2 class="header">Things you can do</h2>
The following are standard solutions for solving various types of problems.
</div>
*[[Activation Functions]] - Simulating a function by means of a activate call.
*[[Combine your SI and non-SI mods into one (OBSE, Patch v1.1, Other mods too)|Adaptive Mods]] - Adjust a mod for presence or absence of SI, OBSE, Patch v1.1, etc.
*[[Dynamically Adding Spells to Merchants]]
*[[Casting Spells From An Activator]]
*[[Scripting Tutorial: Custom Bound Items|Custom Bound Items]]
*[[Distinguishing Between Physical and Magickal Hits]]
*[[GetActorType]] - Encode actor type (npc, creature, ghost, etc.) as a single number.
*[[Teleport Recall#Marker Rats|Marker Rats]] - Using hidden actors as stable marker points.
*'''Inventory'''
**[[DropAllItems|Drop All Items]]
**[[Generic Unequip]] - Remove an object from inventory without specifying its object id.
**[[Unplayable Items]] - Various uses of unplayable items.
** [[Walking Through Inventory Items]]
*'''Math Functions'''
**[[:Category:Extra Math Functions|Extra Math Functions]]
**[[:Category:Math Functions (OBSE)|OBSE Math Functions]]
*'''Messagebox Menus'''
**[[MessageBox Tutorial]] - Complicted messagebox and menu structures.
** [[Standard Menu UI]] - Menu triggers, options menus, hierarchical menus, number configuration, etc.
*[[Programmable Spell Effects]] - Beyond scripted spell effects.
*[[Reference Variables for Nearby Actors]]
*[[Remote Activators]] - Uses of activating remote objects.
*[[Rotating an object around another object with a script]]
*[[Running Scripts On Arrows]]
*[[:Category:Stage Functions]] - Simulating a function by means of a setStage call.
** [[Simulating new functions|Stages Functions]] - (Needs to be merged with base article.)
*[[Summon Object]] - Summon (move) an existing object to position in front of player.
*[[Teleport Recall]] - Establishing a teleport recall point.
* '''Text Input'''
** [[Text Input With OBSE]] - Simulating a text input box (OBSE).
** [[Text Input With Pluggy]] - [[:Category:Pluggy|Pluggy]] based text input.
** [[Text Input With TSFC]] - [[:Category:TSFC|TSFC]] based text input.


<div id="esstyle">
==Deprecated Articles==
<h2 class="header">Related Portals</h2>
*[[Dynamic Storage]] - General survey of arrays, linked lists, etc. in pre-pluggy world.
</div>
**[[Linked List Tutorial]] - Pre-pluggy approach to linked lists.

Latest revision as of 13:53, 30 December 2010

Overview[edit | edit source]

Scripts are used by modders to control the game in fairly direct ways and achieve effects that are far outside the normal scope of the game. If you're new to scripting, you should start at the top of the page, especially with the tutorials. If you're an experienced scripter, then the later parts of the page should be most useful.

Basic Tutorials[edit | edit source]

Featured

File:Scripttut2 testing2.JPG
The message box we wrote

My Second Script[edit | edit source]

While the My First Script tutorial is a good first taste of scripting for Oblivion, it does not appreciably demonstrate what the scripting language in Oblivion can do. It is a wonderful introduction for those who have never seen a programming or scripting language before, but a more in-depth tutorial would be helpful to further introduce modders to this amazing resource.

This tutorial has been largely adapted from GhanBuriGhan's excellent Morrowind Scripting for Dummies; all credit goes to GhanBuriGhan for his fantastic work on the original.

This tutorial is meant to be a more complete introduction to scripting for Oblivion than the My First Script tutorial, and assumes that the reader is already familiar with My First Script. If you do not understand the main points of that tutorial, you may find yourself in over your head here. If you're comfortable with My First Script, though, let's begin scripting!

Functions[edit | edit source]

General Knowledge[edit | edit source]

Scripting Basics[edit | edit source]

Troubleshooting[edit | edit source]

Code Optimization[edit | edit source]

Extensions and Libraries[edit | edit source]

Standard Solutions[edit | edit source]

The following are standard solutions for solving various types of problems.

Deprecated Articles[edit | edit source]