ScriptGenerateMissile

From Amulets & Armor Wiki
Revision as of 07:30, 8 March 2016 by PeeWeeRotA (Talk | contribs)

Jump to: navigation, search

GenerateMissile( [type], [x], [y], [z], [targetX], [targetY], [targetZ], [speed])


Arguments

type - The type of missile object (it must be a missile from the Missiles list) that is generated.

X - X location on map. Found in status bar when using 2d view in Doom Builder 2.

Y - Y location on map. Found in status bar when using 2d view in Doom Builder 2.

Z - Z location on map. Found in starting sector's floor height plus a bit more.

targetX - Target X location on map. Found in status bar when using 2d view in Doom Builder 2.

targetY - Target Y location on map. Found in status bar when using 2d view in Doom Builder 2.

targetZ - Target Z location on map. Found in starting sector's floor height plus a bit more.

speed - Speed setting. Average speed is 30.

Example

40:  // Shoot normal arrow diagonally across the room
   GenerateMissile(886, 10, 10, 32, 128, 128, 32, 30);
   End();