Difference between revisions of "HowToAddShips"

From SfzWiki
Jump to: navigation, search
 
Line 3: Line 3:
 
* copy and adjust (change the first paramer, this is the typename) a line like  
 
* copy and adjust (change the first paramer, this is the typename) a line like  
 
   RegisterObjectType("stuff/customship/firefly", "stuff/customship", {ingame_name="firefly", gfx_shipfile="firefly.lua", hitrad=10, bHasHangar=true,hp=500, shield_max=500, cargo_max=1000, weapons={["weapontype/laser/red"]=1}  })
 
   RegisterObjectType("stuff/customship/firefly", "stuff/customship", {ingame_name="firefly", gfx_shipfile="firefly.lua", hitrad=10, bHasHangar=true,hp=500, shield_max=500, cargo_max=1000, weapons={["weapontype/laser/red"]=1}  })
* edit data/config.lua
+
* choose your ship after starting the game
* add a line like
+
* if you want to add trails and particles, you need to define them in the
  gClient_PreferredBodyTypeName = "stuff/customship/firefly"
+
RegisterObjectType("stuff/customship/firefly",...
* and replace  "stuff/customship/firefly"     with the typename of your ship (first param)
+
* you can easily get the "engine" positions by point with the mouse at the desired part and press c (center)
 +
* know you can read the position of the block in the console and add it to the ship definition

Latest revision as of 15:20, 25 August 2007

  • use the shipeditor to create a ship and save it,
  • edit data/plugins/common.objecttypes.lua
  • copy and adjust (change the first paramer, this is the typename) a line like
 RegisterObjectType("stuff/customship/firefly",		"stuff/customship",	{ingame_name="firefly",		gfx_shipfile="firefly.lua", hitrad=10, bHasHangar=true,hp=500, shield_max=500, cargo_max=1000, weapons={["weapontype/laser/red"]=1}  })
  • choose your ship after starting the game
  • if you want to add trails and particles, you need to define them in the
RegisterObjectType("stuff/customship/firefly",...
  • you can easily get the "engine" positions by point with the mouse at the desired part and press c (center)
  • know you can read the position of the block in the console and add it to the ship definition