Difference between revisions of "Pushpc"

From Hercules Wiki
Jump to: navigation, search
(Created page with "== Syntax == * pushpc <direction>,<cells>; == Description == This command will push the currently attached player to given direction by given amount of square cel...")
 

Latest revision as of 02:29, 10 June 2013

Syntax

  • pushpc <direction>,<cells>;

Description

This command will push the currently attached player to given direction by given amount of square cells. Direction is the same as used when declaring NPCs, and can be specified by using one of the DIR_* constants db/const.txt

The knock-back is not restricted by items or map flags, only obstacles are taken into account. If there is not enough space to perform the push (e.g. due to a wall), the character is pushed only up to the obstacle.

Examples

// pushes the character 5 cells in 3 o'clock direction from it's current position.
pushpc DIR_EAST, 5;