m
Move page script moved page API GetPVPTimer to WoW:API GetPVPTimer without leaving a redirect
(300000 changed to 301000 (API implementation must have changed)) |
m (Move page script moved page API GetPVPTimer to WoW:API GetPVPTimer without leaving a redirect) |
||
| (One intermediate revision by one other user not shown) | |||
| Line 1: | Line 1: | ||
{{wowapi}} | {{wowapi}} | ||
Returns the amount of time left on your PVP flag. | |||
ms = GetPVPTimer() | |||
Returns | == Returns == | ||
;ms : Numbers - Amount of time (in milliseconds) until your PVP flag wears off. | |||
== Details == | |||
* If you are flagged for PVP permanently, the function returns 301000. | |||
* If you are not flagged for PVP the function returns either 301000 or -1. | |||
== Example == | |||
The following snippet displays your current PVP status: | |||
local sec = math.floor(GetPVPTimer()/1000) | local sec = math.floor(GetPVPTimer()/1000) | ||
local msg = (not UnitIsPVP("player")) and "You are not flagged for PVP" or | local msg = (not UnitIsPVP("player")) and "You are not flagged for PVP" or | ||