User Tools

Site Tools


modding:xml:designtype

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
modding:xml:designtype [2013/03/21 16:58] – [<GetGlobalPlayerPriceAdj>] gpmmodding:xml:designtype [2018/08/09 18:53] (current) – [<OnGlobalUniverseLoad>] nms
Line 26: Line 26:
   * [[Effect]] //(Deprecated in favor of EffectType per the source)//   * [[Effect]] //(Deprecated in favor of EffectType per the source)//
   * [[EncounterTable]] //(Same as ShipTable)//   * [[EncounterTable]] //(Same as ShipTable)//
 +  * [[Image]]
   * [[ItemTable]]   * [[ItemTable]]
   * [[Power]]   * [[Power]]
   * [[ShipTable]]   * [[ShipTable]]
 +  * [[Sound]]
   * [[Sovereign]]   * [[Sovereign]]
   * [[SpaceEnvironment]]   * [[SpaceEnvironment]]
Line 66: Line 68:
 s = ship class UNID s = ship class UNID
 t = station type UNID t = station type UNID
-u = sound UNID (currently returns nothing?)+u = sound UNID (currently returns nothing?)((please verify))
 v = sovereign UNID v = sovereign UNID
 w = name generator UNID (currently returns nothing?) w = name generator UNID (currently returns nothing?)
Line 167: Line 169:
  
 ====<GetGlobalPlayerPriceAdj>==== ====<GetGlobalPlayerPriceAdj>====
-**[apiVersion 14]** +**[apiVersion 14]** This event allows a type to alter the prices charged/offered to the player for any station. The event should return either Nil (no change in price) or a percent value. For example, returning 90 means that the price is adjusted to 90% of its original value.
- +
-This event allows a type to alter the prices charged/offered to the player for any station. The event should return either Nil (no change in price) or a percent value. For example, returning 90 means that the price is adjusted to 90% of its original value.+
  
 The following parameters are defined: The following parameters are defined:
Line 185: Line 185:
   * gData: Arbitrary data passed in by the caller (used for custom services).   * gData: Arbitrary data passed in by the caller (used for custom services).
  
 +**NOTE:** This event works in conjunction with a new set of functions that compute price (e.g., objGetRefuelItemAndPrice). Not all stations have been converted to use the new functions, so not all services will work. As of apiVersion 14, this event will work for buying/selling and donations, but not for other services (such as refueling).
 ====<GetGlobalResurrectPotential>==== ====<GetGlobalResurrectPotential>====
  
Line 197: Line 197:
   * aDestroyReason   * aDestroyReason
  
 +This is called whenever an ship or a station are destroyed.
 +
 +NOTE: This is //not// called for other kinds of objects, such as missiles.
 ====<OnGlobalPaneInit>==== ====<OnGlobalPaneInit>====
   * aScreenUNID is the UNID of the screen being shown   * aScreenUNID is the UNID of the screen being shown
Line 237: Line 240:
  
 **Warning : multiple instances of this event can be created on multiple system types. They will ALL be called when ANY system is created, and their order can NOT be forecast.** **Warning : multiple instances of this event can be created on multiple system types. They will ALL be called when ANY system is created, and their order can NOT be forecast.**
 +
 +====<OnGlobalSystemStarted>====
 +**[apiVersion 14]** This is called whenever a system starts running (i.e., is created or loaded from disk). This event happens //before// the player enters the system; you may use it to change the system to simulate things that might have happened while the player was away.
 +
 +
 +====<OnGlobalSystemStopped>====
 +**[apiVersion 14]** This is called whenever a system stops running (i.e., is saved to disk). This event happens //after// the player leaves the system.
  
 ====<OnGlobalTopologyCreated>==== ====<OnGlobalTopologyCreated>====
Line 250: Line 260:
 ====<OnGlobalUniverseLoad>==== ====<OnGlobalUniverseLoad>====
  
-  * No variables initialized for this event+  * aReason: 'resurrect or Nil
   * Return value is discarded by engine   * Return value is discarded by engine
  
Line 261: Line 271:
  
 Called whenever the game is saved to disk, including going through stargates, exiting, dying, and initially starting the game. Called whenever the game is saved to disk, including going through stargates, exiting, dying, and initially starting the game.
 +
 +====<OnGlobalUpdate>====
 +**[apiVersion 14]** Called once every 15 ticks.
  
 ====<OnRandomEncounter>==== ====<OnRandomEncounter>====
modding/xml/designtype.1363885087.txt.gz · Last modified: 2014/12/27 04:40 (external edit)