Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
No edit summary
No edit summary
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
  +
{{wowapi}}
<center>'''StrafeLeftStart''' ''-Documentation by AlexanderYoshi-''</center>
 
  +
{{protectedapi|hw=2}}
 
 
The player begins strafing left at the specified time.
 
The player begins strafing left at the specified time.
 
StrafeLeftStart(startTime)
   
 
==Arguments==
StrafeLeftStart(startTime);
 
 
;startTime : Begin strafing left at this time.
 
----
 
;''Arguments''
 
 
:(Number startTime)
 
 
:;startTime : Begin strafing left at this time
 
 
----
 
;''Returns''
 
 
:;nil
 
 
----
 
;''Example''
 
StrafeLeftStart(GetTime()*1000 + 1000);
 
 
;''Result''
 
 
----
 
;''Description''
 
   
  +
==Details==
: The player begins strafing left at the specified time. Units are thousandths of a second, current time is GetTime() * 1000, so StraseLeftStart(GetTime()*1000 + 1000); would cause you to start strafing left in one second's time. As of 1.6, the time parameter seems to be ignored, and this function needs to be called as the result of a button press.
 
  +
* As of 1.6, the time parameter seems to be ignored, and this function needs to be called as the result of a button press.
   
  +
==Patch changes==
----
 
  +
*{{Patch 2.0.1|note=Protected.}}
{{Template:WoW API}}
 
  +
*{{Patch 1.6.0|note=Now requires a hardware event.}}

Revision as of 15:42, 13 September 2017

The player begins strafing left at the specified time.

StrafeLeftStart(startTime)

Arguments

startTime
Begin strafing left at this time.

Details

  • As of 1.6, the time parameter seems to be ignored, and this function needs to be called as the result of a button press.

Patch changes