Difference between revisions of "Scripting"
From theFarWilds
(New page: This is the start of the scripting API. It will be expanded over time. If you want something ask for it in the forum. Functions you can implement: void setupGame(); // Sets up the game s...) |
|||
(28 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | + | [[Category:Scripts]] | |
+ | Scripts are written in [http://www.angelcode.com/angelscript/sdk/docs/manual/index.html AngelScript] (current used version is 2.26.2), it has syntax similar to C. Create your scripts [http://story.thefarwilds.com/login.html here]. If you want something ask for it in the [http://thefarwilds.com/forum/viewforum.php?f=14 forum]. | ||
− | + | The scripts you write interact with the game via a collection of [[Hook Functions]]. These hook functions are called by the game at the appropriate times and execute your code. See the [[#Examples]] section for more details. | |
− | + | == API == | |
+ | * [[Preprocessor]] | ||
+ | * [[Hook Functions]] | ||
+ | * [[Global Functions]] | ||
+ | * [[Config Functions]] | ||
+ | * [[Player Functions]] | ||
+ | * [[Entity Functions]] | ||
+ | * [[Location Functions]] | ||
+ | * [[DlgBox Functions]] | ||
+ | * [[Card Functions]] | ||
+ | * [[Action Functions]] | ||
− | + | == Examples == | |
+ | [[Scripting Examples]] | ||
− | + | == Helpful Hints == | |
− | + | [[Coordinate System]] : Coordinates in TFW are a bit weird. This page explains. | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
Latest revision as of 15:35, 5 June 2013
Scripts are written in AngelScript (current used version is 2.26.2), it has syntax similar to C. Create your scripts here. If you want something ask for it in the forum.
The scripts you write interact with the game via a collection of Hook Functions. These hook functions are called by the game at the appropriate times and execute your code. See the #Examples section for more details.
API
- Preprocessor
- Hook Functions
- Global Functions
- Config Functions
- Player Functions
- Entity Functions
- Location Functions
- DlgBox Functions
- Card Functions
- Action Functions
Examples
Helpful Hints
Coordinate System : Coordinates in TFW are a bit weird. This page explains.