User:Draugath
From Vendetta Lua
I'm going to be working on a series of Templates for easing the creation of function entries and producing identical results across all function entries.
Template:Function
This template will be the top-level wrapper template that handles input and passing of information.
Template:Function
Template:Function_wrapped
This template will initially be the one that provides the final output. More templates may be created later.
Template:Function_wrapped
Example
{{Function | name =FunctionName | desc =Function description | arg1_name =arg1 | arg1_type =number | arg1_desc =argument (1,2,...,n) description, including examples if so desired | arg2_name =arg2 | arg2_type =string | arg2_desc =argument (1,2,...,n) description, including examples if so desired | arg3_name =arg3 | arg3_type =string | arg3_desc =argument (1,2,...,n) description, including examples if so desired | arg3_opt =true | ret1_name =ret1 | ret1_type =string | ret1_desc =return value (1,2,...,n) description, including examples if so desired | ret2_name =ret2 | ret2_type =table | ret2_desc =return value (1,2,...,n) description, including examples if so desired | notes =notes }}
FunctionName
Type | Name | Description |
---|---|---|
number | arg1 | argument (1,2,...,n) description, including examples if so desired |
string | arg2 | argument (1,2,...,n) description, including examples if so desired |
string | arg3 | argument (1,2,...,n) description, including examples if so desired (optional) |
Type | Name | Description |
---|---|---|
string | ret1 | return value (1,2,...,n) description, including examples if so desired |
table | ret2 | return value (1,2,...,n) description, including examples if so desired |
{{Function | name = GetTargetInfo | desc = get info about target | ret1_name = name | ret1_type = string | ret1_desc = | ret2_name = health | ret2_type = number | ret2_desc = health in percent | ret3_name = dist | ret3_type = number | ret3_desc = distance in m | ret4_name = factionid | ret4_type = number | ret4_desc = faction of target | ret5_name = guild | ret5_type = string | ret5_desc = guild tag of target | ret6_name = ship | ret6_type = string | ret6_desc = name of targets ship }}
GetTargetInfo
Type | Name | Description |
---|---|---|
name | ||
number | health | health in percent |
number | distance in m | |
number | factionid | faction of target |
string | guild | guild tag of target |
string | ship | name of targets ship |