Difference between revisions of "Special variables"
Jump to navigation
Jump to search
imported>Max m |
imported>ShadowDancer |
||
Line 35: | Line 35: | ||
|} | |} | ||
{|border="1" cellpadding="5" cellspacing="0" | |||
|- | |||
! style="background:#efefef;" | GameMonth | |||
! style="background:#efefef;" | Name | |||
! style="background:#efefef;" | Description | |||
|- | |||
| 0 | |||
| Morningstar | |||
| Same # of days as January | |||
|- | |||
| 1 | |||
| Sun's Dawn | |||
| Same # of days as February | |||
|- | |||
| 2 | |||
| First Seed | |||
| Same # of days as March | |||
|- | |||
| 3 | |||
| Rain's Hand | |||
| Same # of days as April | |||
|- | |||
| 4 | |||
| Second Seed | |||
| Same # of days as May | |||
|- | |||
| 5 | |||
| Mid-Year | |||
| Same # of days as June | |||
|- | |||
| 6 | |||
| Sun's Height | |||
| Same # of days as July | |||
|- | |||
| 7 | |||
| Last Seed | |||
| Same # of days as August | |||
|- | |||
| 8 | |||
| Heartfire | |||
| Same # of days as September | |||
|- | |||
| 9 | |||
| Frost Fall | |||
| Same # of days as October | |||
|- | |||
| 10 | |||
| Sun's Dusk | |||
| Same # of days as November | |||
|- | |||
| 11 | |||
| Evening Star | |||
| Same # of days as December | |||
|- | |||
|} | |||
Revision as of 08:38, 4 July 2006
Globals
Some global variables are predefined and handled and/or updated by the game-engine itself.
Type | Name | Description |
---|---|---|
short | GameYear | The current year |
short | GameMonth | The current month (0-11) |
short | GameDay | The current day |
float | GameHour | The current hour (0-23 hours) |
short | TimeScale | Minutes that pass in-game within one minute of real-life |
short | GameDaysPassed | Days that have passed since the beginning of the game |
GameMonth | Name | Description |
---|---|---|
0 | Morningstar | Same # of days as January |
1 | Sun's Dawn | Same # of days as February |
2 | First Seed | Same # of days as March |
3 | Rain's Hand | Same # of days as April |
4 | Second Seed | Same # of days as May |
5 | Mid-Year | Same # of days as June |
6 | Sun's Height | Same # of days as July |
7 | Last Seed | Same # of days as August |
8 | Heartfire | Same # of days as September |
9 | Frost Fall | Same # of days as October |
10 | Sun's Dusk | Same # of days as November |
11 | Evening Star | Same # of days as December |
Locals
There are also local variables with special functions:
Script-Type | Variable-Type | Name | Description |
---|---|---|---|
Quest | float | fQuestDelayTime | Determines how long (in real-time seconds) the game will wait between two runs of a quest script. The default value is 5 seconds. This value will also be used when fQuestDelayTime is defined but set to 0. |
Object(Trap) | float | fTrapDamage | Amount of damage to do each time the trap affects an actor. |
Object(Trap) | float | fTrapPushBack | Amount of push back force to apply each time a trap effects an actor. This should range from 0 to 1000. |
Object(Trap) | float | fTrapMinVelocity | Minimum velocity a trap must be moving at relative to the actor to do damage (combination of actor and traps respective velocities). This value is in BSUnits (128 = 6ft). |
Object(Trap) | float | bTrapContinuous | 0 = Only deal damage on first contact with trap.
1 = Continously subtract damage as long as actor is in contact with trap. |