WoW:API MoveForwardStart

Revision as of 23:35, 24 April 2005 by WoWWiki>RogerDOX
MoveForwardStart -Documentation by AlexanderYoshi-

The player begins moving forward at the specified time.

MoveForwardStart(startTime);

Arguments
(Number startTime)
startTime
Begin moving forward at this time

Returns
nil

Example
MoveForwardStart(GetTime()*1000 + 1000);
Result

Description
The player begins moving forward at the specified time. Units are thousandths of a second, current time is GetTime() * 1000, so MoveForwardStart(GetTime()*1000 + 1000); would cause you to start moving forward in one second's time.

Template:WoW API