Difference between revisions of "Category:Oblivion Script Extender"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Moses
(Added a note telling anyone new to the editor that patching oblivion doesn't patch/update th econstruction set and that must be done seperately.)
imported>DragoonWraith
m (grammar, formatting, link to the CS)
Line 14: Line 14:
'''As of v0017, OBSE requires the 1.2.0.416 version of Oblivion.'''
'''As of v0017, OBSE requires the 1.2.0.416 version of Oblivion.'''


'''Updating/patching Oblivion does NOT update your construction set version. You must download version 1.2 of the construction set seperately or certain OBSE functions will not be usable in the editor.'''
'''Updating/patching Oblivion does ''not'' update your Construction Set. You must [[The Elder Scrolls Construction Set#The Construction Set v1.2|download version 1.2 of the Construction Set separately]] or certain OBSE functions will not be usable in the editor.'''





Revision as of 21:06, 12 July 2010

Description

Oblivion Script Extender v0017

by Ian Patterson, Stephen Abel and Paul Connelly (ianpatt, behippo and scruggsywuggsy the ferret)

Additional contributions from Timeslip, The J, DragoonWraith, and SkyRanger-1.

The Oblivion Script Extender, or OBSE for short, is a modder's resource that expands the scripting capabilities of Oblivion. It doesn't make any modifications to oblivion.exe, TESConstructionSet.exe, or any other files in your oblivion install, so don't worry about permanent side effects. It is compatible with the 1.2.0.416, 1.2.0.214, and 1.1.0.511 Oblivion patches, as well as the 1.0 and 1.2 versions of the Construction Set.

As of v0017, OBSE requires the 1.2.0.416 version of Oblivion.

Updating/patching Oblivion does not update your Construction Set. You must download version 1.2 of the Construction Set separately or certain OBSE functions will not be usable in the editor.


v0017b provides beta support for the version of Oblivion released on Steam.


Bugfix update v0017a changes:

  • Fix compiler occasionally freezing when attempting to save a script
  • Make local variables take precedence over objectIDs in cases of name collision
  • Fix crash with GetEquippedItems after unequipping slotless items
  • IsModelPathValid now works with non-simple models like NPC and Hair
  • Remove delay between calling InsertInInputText and seeing the displayed text updated
  • Empty strings are no longer displayed as "NULL" with the %z format specifier; instead nothing is displayed


v0017 adds adds:

  • Array variables
  • ForEach and While loops
  • A new expression syntax supporting array and string variables as basic datatypes, complex expressions, and a richer set of operators.
  • Effect setting functions
  • Combat style functions
  • Activate2
  • GetCurrentRegion
  • Functions to detect if keys or controls have been disabled via script
  • GetEquippedItems, GetItems, GetSpells, GetFollowers
  • IsRefDeleted
  • Functions to manipulate Greater Powers
  • Various bug-fixes and miscellaneous functions
Installation
  1. Copy obse_1_1.dll, obse_1_2.dll, obse_1_2_416.dll, obse_editor_1_0.dll, obse_editor_1_2.dll, and obse_loader.exe to your Oblivion directory.
  2. Run oblivion by running obse_loader.exe from the Oblivion directory.
  3. Scripts written with these new commands must be written via the TESConstructionSet launched with obse_loader. Open a command prompt window, navigate to your oblivion install folder, and type "obse_loader -editor". The normal editor can open plugins with these extended scripts fine, it just can't recompile them and it will give errors if you try.

To make things easier, it is recommended that you create a shortcut to obse_loader.exe with the argument already supplied, for example:

OBSE CS Shortcut.png
Suggestions for Modders

If your mod requires OBSE, please provide a link to the main OBSE website, http://obse.silverlock.org/ instead of packaging it with your mod install. Future versions of OBSE will be backwards compatible, so including a potentially old version can cause confusion and/or break other mods that need newer versions. If you're making a large mod with an installer, inclusion of a specific version of OBSE is OK, but please check the file versions of the OBSE files before replacing them, and only replace earlier versions.

When your mod loads, use the command GetOBSEVersion to make sure a compatible version of OBSE is installed. In general, make sure you're testing for any version later than the minimum version you support, as each update to OBSE will have a higher version number. Something like:

if GetOBSEVersion < 5
  MessageBox "This mod requires a newer version of OBSE."
endif

Another alternative that is even more user-friendly is releasing your mod as an OMOD, and adding a script to check the version when installing the mod:

IfNot ScriptExtenderNewerThan #.#.#.#
  Message "Requires Oblivion Script Extender v#### or greater"
  FatalError
EndIf

If desired, it is possible to make the same .esp file work for both OBSE and non-OBSE users. See the Combine your SI and non-SI mods into one (OBSE, Patch v1.1, Other mods too) tutorial for more information.

Troubleshooting

Oblivion doesn't launch after running obse_loader.exe:

- Make sure you've copied the OBSE files to your oblivion folder. That folder should also contain oblivion.exe. - Check the file obse_loader.log in your oblivion folder for errors.

obse_loader.log tells me it couldn't find a checksum:

- You may have a version of Oblivion that isn't supported. I have the english official patch v1.2.0.416. Localized versions with different executables or different patches may not work, but many have been successful. If there's enough legitimate demand for it, I can add support for other versions in the future. - Your Oblivion install may be corrupt. Hacks or no-cd patches may also change the checksum of the game, making it impossible to detect the installed version.

The OBSE loader tells me I need to use the autopatcher:

- Go to to OBSE website (http://obse.silverlock.org) and download autopatcher, which will walk you through the update process. You will need the latest patch from Bethesda, as well as your original Oblivion DVD.

OBSE doesn't launch with the Direct2Drive version:

- The Direct2Drive version of the Oblivion executable is compressed and possibly encrypted. This makes it very difficult to support. Whether or not it is supportable in the future is unknown. Apologies.

Crashes or other strange behavior:

- Let me know how you made it crash, and I'll see about fixing it.


Contact

Send email to ianpatt+obse [at] gmail [dot] com. (yes, keep the + symbol, it helps sort email) Send email to behippo at gamer [at] silverlock [dot] org.

Home Page

Silverlock

Discussion

Release thread on The Elder Scrolls Forums

Direct Download (Silverlock)

Click here to download

Subcategories

This category has the following 14 subcategories, out of 14 total.

0

O

Pages in category "Oblivion Script Extender"

The following 6 pages are in this category, out of 6 total.