Jump to content
  • 0

Question

Posted

Hello - I am just beginning to write scripts to copy specific types of records with qualification criteria more complex than can be defined in the define filter function.  I am able to get some basic scripts to work, but I am running into trouble understanding what pascal functions are and are not available for use in TES5Edit scripting.  

 

A specific example is LeftStr().  I get an "undeclared identifier" error when using that function.  However, SameText() works.  Both are part of the Pascal sysutils library.  

 

I've checked here: https://ck.uesp.net/wiki/TES5Edit_Scripting_Functions

 

But that has functions specific to TES5Edit.

 

Any insight is appreciated.  Thanks!

5 answers to this question

Recommended Posts

  • 0
Posted

To start off xEdit's script system is not full pascal, it uses an interpreter.

If you need a specific function that doesnt appear to work then you may have to make it.

mteFunctions has many useful functions that people use, I have ran into several scenarios where I needed to make my own functions.

 

If you want to know everything that is a available, check the TES5Edit Github and look at wbScriptAdapter.pas and wbScriptAdapterMisc.pas

 

Also, for some reason not all of the wiki edits show up unless you are logged in.

 

EDIT:

You could use 

s := Copy(str, 1, i)

instead of 

s := LeftStr(str, i)
  • 0
Posted

Awesome - Copy worked, and so did my script.  I am bulk copying over specific FX movstatic types (fog, mist, etc) in that have XEMI defined in dungeons, so I can remove the XEMI elements and make things very dark while still keeping the FX.  

 

I wasn't able to trace the functions included in wbScriptAdapter.pas and wbScriptAdapterMisc.pas.  I see the specific defined TES5Edit functions and procedures as well as the included libraries from what looks like JVCL.  But wasn't able to trace, for example, why SameText() works and LeftStr() does not.  

 

Either way, I'm good now - just thinking for future reference.  Thanks for your help!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Guidelines, Privacy Policy, and Terms of Use.