Wowpedia

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

READ MORE

Wowpedia
m (Added category link)
mNo edit summary
(34 intermediate revisions by 12 users not shown)
Line 1: Line 1:
  +
{{wowapi}} __NOTOC__
<center>'''Title''' ''-Documentation by [[user:Author|Author]]-''</center>
 
 
<!-- Describe the purpose of the function, exhausting detail can be saved for a later section -->
 
  +
One line summary description of function.
 
<!-- List return values and arguments as well as function name, follow Blizzard usage convention for args -->
 
<!-- List return values and arguments as well as function name, follow Blizzard usage convention for args -->
 
isTrue, retVal1, retVal2 = func("arg1", arg2, ...)
   
 
== Arguments ==
isTrue, retVal1, retVal2 = func("arg1", arg2, ...);
 
 
<!-- Describe the purpose of the function, though exhausting detail can be saved for a later section -->
 
 
Description of function.
 
 
----
 
;''Arguments''
 
 
 
<!-- List each argument, together with its type -->
 
<!-- List each argument, together with its type -->
 
;arg1 : String - description
 
;arg2 : Table - description
   
 
== Returns ==
:("arg1", arg2)
 
  +
:isTrue, retVal1, retVal2 <!-- Include this line ONLY IF there are multiple return values and a large number of arguments -->
:;arg1 : String - description
 
:;arg2 : Table - description
 
 
----
 
;''Returns''
 
 
 
<!-- List each return value, together with its type -->
 
<!-- List each return value, together with its type -->
 
;isTrue : Boolean - is it true
 
;retVal1 : String - is it true
 
;retVal2 : Number - is it true
   
  +
== Triggers Events ==
:isTrue, retVal1, retVal2
 
  +
<!-- If this function triggers an event, name it here. If not, remove the entire section. -->
:;isTrue : Boolean - is it true
 
  +
* {{api|t=e|WHO_LIST_UPDATE}}, when your query has finished processing on the server and new "Who" information is available
:;retVal1 : String - is it true
 
:;retVal2 : Number - is it true
 
 
----
 
;''Example''
 
   
 
== Example ==
 
<!-- If it helps, include an example here, though it's not required if the usage is self-explanatory -->
 
<!-- If it helps, include an example here, though it's not required if the usage is self-explanatory -->
 
local a, b, c = func("hi", {1,2,3} )
   
 
<big>'''Result'''</big>
local a, b, c = func("hi", {1,2,3} );
 
 
<!-- If it helps, include example results here, though they are not required. You're allowed to cheat liberally since WoW isn't a command line language. -->
 
 
a = "hi "
;''Result''
 
 
b = "hi hi"
 
  +
c = "hi hi hi"
<!-- If it helps, include example results here, though they are not required-->
 
 
hi
 
hi hi
 
hi hi hi
 
 
----
 
;''Details''
 
 
<!-- Details not appropriate for the main description can go here -->
 
   
: Does something particularly detailed
 
   
 
== Details ==
----
 
 
<!-- Details not appropriate for the main description can go here.
{{Template:WoW API}}
 
  +
REMOVE the section if you're just going to restate the intro line! -->
[[Category:API Functions]]
 
 
: Does something particularly detailed.
  +
<noinclude>[[ru:Справка:Статьи о функциях API/Предварительная загрузка]]</noinclude>

Revision as of 11:39, 9 June 2010

One line summary description of function.

isTrue, retVal1, retVal2 = func("arg1", arg2, ...)

Arguments

arg1
String - description
arg2
Table - description

Returns

isTrue, retVal1, retVal2
isTrue
Boolean - is it true
retVal1
String - is it true
retVal2
Number - is it true

Triggers Events

  • WHO_LIST_UPDATE, when your query has finished processing on the server and new "Who" information is available

Example

local a, b, c = func("hi", {1,2,3} )

Result

a = "hi "
b = "hi hi"
c = "hi hi hi"


Details

Does something particularly detailed.

ru:Справка:Статьи о функциях API/Предварительная загрузка