Jump to content

DOWNLOAD MODS

Are you looking for something shiny for your load order? We have many exclusive mods and resources you won't find anywhere else. Start your search now...

LEARN MODDING

Ready to try your hand at making your own mod creations? Visit the Enclave, the original ES/FO modding school, and learn the tricks of the trade from veteran modders...

JOIN THE ALLIANCE

Membership is free and registering unlocks image galleries, project hosting, live chat, unlimited downloads, & more...

OBSE


Hayk94
 Share

Recommended Posts

OBSE scripting is just like vanilla scripting, just with expanded functions.

Also, if you have experience with other programming languages like C++ or Java then some of the OBSE functions like while and arrays will be familiar to you. If not, do not fear, the OBSE Command Documentation is pretty extensive on how to use the new functions.

If you have a specific question we can probably answer it here :)

Link to comment
Share on other sites

OBSE is no different from regular scripting. It just contains some 'new' functions you can perform. The scripting structure is still the exact same. You still need your SCN, your Begin and End blocks, ect..

But with any add-on, you will have to run a 'special' starter for your CS and Game to get OBSE to load along with those programs. That is the only real difference.

Link to comment
Share on other sites

OBSE is no different from regular scripting. It just contains some 'new' functions you can perform. The scripting structure is still the exact same. You still need your SCN, your Begin and End blocks, ect..

But with any add-on, you will have to run a 'special' starter for your CS and Game to get OBSE to load along with those programs. That is the only real difference.

It means I can use vanilla scripts commands in OBSE???? If so I can teach myself...But it was still better if someone give me an example...

Link to comment
Share on other sites

There is no need for someone to write an OBSE example script for you. You have WillieSea among others to teach you vanilla scripting, then read up on what additional functions OBSE offers and see if there is anything you can use to aid you.

Also while writing example vanilla scripts works rather well, it's not so good for OBSE scripts because some of the functions are not straightforward or easy to use without your understanding.

Link to comment
Share on other sites

Well, I have skills in vanilla scripting,,, so if I need more skills for OBSE , please explain me how to create an timer, for example quest gets active after a week or day or just in seconds, and how to use math functions .I've got all my skills from WIKI,, but I couldn't find something good for these...and can anyone tell me what does mean " DoOnce ",,, I don't understand it at all...

Link to comment
Share on other sites

1) Timer - Creating a simple Timer - Very easy to understand tutorial on creating a simple timer. Its using seconds so if you want to do something else you will need to look at the time functions.

2) DoOnce - DoOnce is a common check modders use to make things happen one, for example if you want to add an item to the player only once then you wrap that section of code in a DoOnce block. DoOnce itself is a variable that needs declared in each script before use, though you do not always need to use DoOnce, it can be anything you like.

DoOnce Example:

Scriptname ISDoOnceExample

Short DoOnce

Begin GameMode
If DoOnce == 0
Player.additem Gold001 5000
Set DoOnce to 1
Endif
End[/code]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...