Updated Warps List

This commit is contained in:
Cooldude2606
2019-10-24 21:34:28 +01:00
parent b74c334913
commit 0b340ab899
101 changed files with 1294 additions and 913 deletions

View File

@@ -41,7 +41,7 @@ return {
-- GUI
--'modules.gui.rocket-info',
--'modules.gui.science-info',
--'modules.gui.warp-list',
'modules.gui.warp-list',
'modules.gui.task-list',
--'modules.gui.player-list',
--'modules.commands.debug',

View File

@@ -61,7 +61,8 @@ Roles.new_role('Administrator','Admin')
:set_flag('instance-respawn')
:set_parent('Moderator')
:allow{
'gui/warp-list/no-limit',
'gui/warp-list/bypass-cooldown',
'gui/warp-list/bypass-proximity',
}
Roles.new_role('Moderator','Mod')
@@ -179,7 +180,9 @@ Roles.new_role('Member','Mem')
:set_custom_color{r=24,g=172,b=188}
:set_parent('Regular')
:allow{
'gui/task-list/add',
'gui/task-list/edit',
'gui/warp-list/add',
'gui/warp-list/edit'
}
@@ -215,6 +218,8 @@ local default = Roles.new_role('Guest','')
'gui/science-info',
'gui/task-list',
'gui/warp-list',
'gui/warp-list/apply-cooldown',
'gui/warp-list/apply-proximity',
}
--- Jail role

View File

@@ -2,11 +2,12 @@
-- @config Tasks
return {
-- values can be all, admin, expcore.roles, none
-- Adding tasks
allow_add_task = 'all', --- @setting allow_add_task dictates who is allowed to add new tasks; values: all, admin, expcore.roles, none
expcore_roles_add_permission = 'gui/task-list/add', --- @setting expcore_roles_add_permission if expcore.roles is used then this is the required permission
-- values can be all, admin, expcore.roles, none
expcore_roles_allow_add_task = 'gui/task-list/add', --- @setting expcore_roles_allow_add_task if expcore.roles is used then this is the required permission
-- Editing tasks
allow_edit_task = 'expcore.roles', --- @setting allow_edit_task dictates who is allowed to edit existing tasks; values: all, admin, expcore.roles, none
expcore_roles_edit_permission = 'gui/task-list/edit', --- @setting expcore_roles_edit_permission if expcore.roles is used then this is the required permission
expcore_roles_allow_edit_task = 'gui/task-list/edit', --- @setting expcore_roles_allow_edit_task if expcore.roles is used then this is the required permission
user_can_edit_own_tasks = true --- @settings if true then the user who made the task can edit it regardless of the allow_edit_task setting
}

View File

@@ -2,24 +2,39 @@
-- @config Warps
return {
recharge_time = 60, --- @setting recharge_time The amount of time in seconds that the player must wait between warps, acts as a balance
update_smoothing = 10, --- @setting update_smoothing Higher is better, the amount of smoothing applied to recharge timer and other gui updates, max is 60
minimum_distance = 100, --- @setting minimum_distance The minimum distance that must be between warp points, creating new ones is blocked when too close
activation_range = 4, --- @setting activation_range The distance the player must be to a warp in order to use the warp gui, gui can still be viewed but not used
spawn_activation_range = 20, --- @setting spawn_activation_range A second activation range which is used for the forces spawn point
default_icon = 'discharge-defense-equipment', --- @setting default_icon The default icon which is used by warps; must be an item name
user_can_edit_own_warps = false, --- @setting user_can_edit_own_warps When true the user can always edit warps which they created regardless of other settings
any_user_can_add_new_warp = false, --- @setting any_user_can_add_new_warp When true any user is able to create new warps, however editing may still be restricted
only_admins_can_edit = false, --- @setting only_admins_can_edit When true only admins can edit warps
edit_warps_role_permission = 'gui/warp-list/edit', --- @setting edit_warps_role_permission Role permission used by the role system to allow editing warps
bypass_warp_limits_permission = 'gui/warp-list/no-limit', --- @setting bypass_warp_limits_permission Role permission used by the role system to allow bypassing the time and distance restrictions
entities = { --- @setting entities The entities which are created for warps
-- General config
update_smoothing = 10, --- @setting update_smoothing the amount of smoothing applied to updates to the cooldown timer, higher is better, max is 60
minimum_distance = 100, --- @setting minimum_distance the minimum distance that is allowed between warps on the same force
default_icon = 'discharge-defense-equipment', --- @setting default_icon the default icon that will be used for warps
-- Warp cooldowns
bypass_warp_cooldown = 'expcore.roles', --- @setting bypass_warp_cooldown dictates who the warp cooldown is applied to; values: all, admin, expcore.roles, none
expcore_roles_bypass_warp_cooldown = 'gui/warp-list/bypass-cooldown', --- @setting expcore_roles_bypass_warp_cooldown if expcore.roles is used then this is the required permission
cooldown_duraction = 60, --- @setting cooldown_duraction the duration of the warp cooldown in seconds
-- Warp proximity
bypass_warp_proximity = 'expcore.roles', --- @setting bypass_warp_proximity dictates who the warp proximity is applied to; values: all, admin, expcore.roles, none
expcore_roles_bypass_warp_proximity = 'gui/warp-list/bypass-proximity', --- @setting expcore_roles_bypass_warp_proximity if expcore.roles is used then this is the required permission
standard_proximity_radius = 4, --- @setting standard_proximity_radius the minimum distance a player is allowed to be to a warp in order to use it
spawn_proximity_radius = 20, --- @setting spawn_proximity_radius the minimum distance a player is allowed to be from they spawn point to use warps
-- Adding warps
allow_add_warp = 'expcore.roles', --- @setting allow_add_warp dictates who is allowed to add warps; values: all, admin, expcore.roles, none
expcore_roles_allow_add_warp = 'gui/warp-list/add', --- @setting expcore_roles_allow_add_warp if expcore.roles is used then this is the required permission
-- Editing warps
allow_edit_warp = 'expcore.roles', --- @setting allow_edit_warp dictates who is allowed to edit warps; values: all, admin, expcore.roles, none
expcore_roles_allow_edit_warp = 'gui/warp-list/edit', --- @setting expcore_roles_allow_edit_warp if expcore.roles is used then this is the required permission
user_can_edit_own_warps = false, --- @settings user_can_edit_own_warps if true then the user who made the warp can edit it regardless of the allow_edit_warp setting
-- Warp area generation
entities = { --- @setting entities The entities which are created for warp areas
{'small-lamp',-3,-2},{'small-lamp',-3,2},{'small-lamp',3,-2},{'small-lamp',3,2},
{'small-lamp',-2,-3},{'small-lamp',2,-3},{'small-lamp',-2,3},{'small-lamp',2,3},
{'small-electric-pole',-3,-3},{'small-electric-pole',3,3},{'small-electric-pole',-3,3},{'small-electric-pole',3,-3}
},
base_tile = 'tutorial-grid', --- @setting base_tile The tile which is used for the warps
tiles = { --- @setting tiles The tiles which are created for warps
base_tile = 'tutorial-grid', --- @setting base_tile The tile which is used for the warp areas
tiles = { --- @setting tiles The tiles which are created for warp areas
{-3,-2},{-3,-1},{-3,0},{-3,1},{-3,2},{3,-2},{3,-1},{3,0},{3,1},{3,2},
{-2,-3},{-1,-3},{0,-3},{1,-3},{2,-3},{-2,3},{-1,3},{0,3},{1,3},{2,3}
}

View File

@@ -348,7 +348,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -349,7 +349,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -376,7 +376,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -585,7 +585,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -349,7 +349,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -404,7 +404,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -460,7 +460,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -404,7 +404,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -320,7 +320,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -404,7 +404,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -376,7 +376,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -388,7 +388,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -500,7 +500,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -361,7 +361,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -388,7 +388,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -365,7 +365,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -360,7 +360,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -404,7 +404,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -458,7 +458,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -416,7 +416,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -611,7 +611,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -389,7 +389,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -360,7 +360,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -388,7 +388,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -321,7 +321,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -585,7 +585,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -557,7 +557,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -389,7 +389,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -443,7 +443,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -484,7 +484,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -569,7 +569,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -506,7 +506,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -237,7 +237,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -485,7 +485,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -294,7 +294,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -320,7 +320,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -442,7 +442,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -354,7 +354,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -338,7 +338,7 @@ see ./expcore/commands.lua for more details</p>
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -354,7 +354,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -416,7 +416,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -237,7 +237,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -240,7 +240,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -295,7 +295,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -812,7 +812,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -384,7 +384,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -414,7 +414,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -324,7 +324,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -414,7 +414,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -834,7 +834,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -292,7 +292,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -354,7 +354,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -388,7 +388,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -744,7 +744,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -244,13 +244,13 @@
<td class="name"><a href="#allow_add_task">allow_add_task</a></td>
</tr>
<tr>
<td class="name"><a href="#expcore_roles_add_permission">expcore_roles_add_permission</a></td>
<td class="name"><a href="#expcore_roles_allow_add_task">expcore_roles_allow_add_task</a></td>
</tr>
<tr>
<td class="name"><a href="#allow_edit_task">allow_edit_task</a></td>
</tr>
<tr>
<td class="name"><a href="#expcore_roles_edit_permission">expcore_roles_edit_permission</a></td>
<td class="name"><a href="#expcore_roles_allow_edit_task">expcore_roles_allow_edit_task</a></td>
</tr>
</tbody>
</table>
@@ -291,16 +291,15 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#expcore_roles_add_permission" class="fragment-hashtag">#</a>
<span class="section-item-title" id="expcore_roles_add_permission">expcore_roles_add_permission</span>
<a href="#expcore_roles_allow_add_task" class="fragment-hashtag">#</a>
<span class="section-item-title" id="expcore_roles_allow_add_task">expcore_roles_allow_add_task</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> if expcore.roles is used then this is the required permission
values can be all, admin, expcore.roles, none</p>
<p class="section-item-description"> if expcore.roles is used then this is the required permission</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -346,8 +345,8 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#expcore_roles_edit_permission" class="fragment-hashtag">#</a>
<span class="section-item-title" id="expcore_roles_edit_permission">expcore_roles_edit_permission</span>
<a href="#expcore_roles_allow_edit_task" class="fragment-hashtag">#</a>
<span class="section-item-title" id="expcore_roles_allow_edit_task">expcore_roles_allow_edit_task</span>
</div>
</dt>
<dd>
@@ -385,7 +384,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -355,7 +355,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -241,37 +241,46 @@
</thead>
<tbody>
<tr>
<td class="name"><a href="#recharge_time">recharge_time</a></td>
</tr>
<tr>
<td class="name"><a href="#update_smoothing">update_smoothing</a></td>
</tr>
<tr>
<td class="name"><a href="#minimum_distance">minimum_distance</a></td>
</tr>
<tr>
<td class="name"><a href="#activation_range">activation_range</a></td>
</tr>
<tr>
<td class="name"><a href="#spawn_activation_range">spawn_activation_range</a></td>
</tr>
<tr>
<td class="name"><a href="#default_icon">default_icon</a></td>
</tr>
<tr>
<td class="name"><a href="#user_can_edit_own_warps">user_can_edit_own_warps</a></td>
<td class="name"><a href="#bypass_warp_cooldown">bypass_warp_cooldown</a></td>
</tr>
<tr>
<td class="name"><a href="#any_user_can_add_new_warp">any_user_can_add_new_warp</a></td>
<td class="name"><a href="#expcore_roles_bypass_warp_cooldown">expcore_roles_bypass_warp_cooldown</a></td>
</tr>
<tr>
<td class="name"><a href="#only_admins_can_edit">only_admins_can_edit</a></td>
<td class="name"><a href="#cooldown_duraction">cooldown_duraction</a></td>
</tr>
<tr>
<td class="name"><a href="#edit_warps_role_permission">edit_warps_role_permission</a></td>
<td class="name"><a href="#bypass_warp_proximity">bypass_warp_proximity</a></td>
</tr>
<tr>
<td class="name"><a href="#bypass_warp_limits_permission">bypass_warp_limits_permission</a></td>
<td class="name"><a href="#expcore_roles_bypass_warp_proximity">expcore_roles_bypass_warp_proximity</a></td>
</tr>
<tr>
<td class="name"><a href="#standard_proximity_radius">standard_proximity_radius</a></td>
</tr>
<tr>
<td class="name"><a href="#spawn_proximity_radius">spawn_proximity_radius</a></td>
</tr>
<tr>
<td class="name"><a href="#allow_add_warp">allow_add_warp</a></td>
</tr>
<tr>
<td class="name"><a href="#expcore_roles_allow_add_warp">expcore_roles_allow_add_warp</a></td>
</tr>
<tr>
<td class="name"><a href="#allow_edit_warp">allow_edit_warp</a></td>
</tr>
<tr>
<td class="name"><a href="#expcore_roles_allow_edit_warp">expcore_roles_allow_edit_warp</a></td>
</tr>
<tr>
<td class="name"><a href="#entities">entities</a></td>
@@ -294,33 +303,6 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#recharge_time" class="fragment-hashtag">#</a>
<span class="section-item-title" id="recharge_time">recharge_time</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> The amount of time in seconds that the player must wait between warps, acts as a balance</p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#update_smoothing" class="fragment-hashtag">#</a>
<span class="section-item-title" id="update_smoothing">update_smoothing</span>
</div>
@@ -329,7 +311,7 @@
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> Higher is better, the amount of smoothing applied to recharge timer and other gui updates, max is 60</p>
<p class="section-item-description"> the amount of smoothing applied to updates to the cooldown timer, higher is better</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -356,61 +338,7 @@
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> The minimum distance that must be between warp points, creating new ones is blocked when too close</p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#activation_range" class="fragment-hashtag">#</a>
<span class="section-item-title" id="activation_range">activation_range</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> The distance the player must be to a warp in order to use the warp gui, gui can still be viewed but not used</p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#spawn_activation_range" class="fragment-hashtag">#</a>
<span class="section-item-title" id="spawn_activation_range">spawn_activation_range</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> A second activation range which is used for the forces spawn point</p>
<p class="section-item-description"> the minimum distance that is allowed between warps on the same force</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -437,7 +365,7 @@
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> The default icon which is used by warps; must be an item name</p>
<p class="section-item-description"> the default icon that will be used for warps</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -456,15 +384,15 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#user_can_edit_own_warps" class="fragment-hashtag">#</a>
<span class="section-item-title" id="user_can_edit_own_warps">user_can_edit_own_warps</span>
<a href="#bypass_warp_cooldown" class="fragment-hashtag">#</a>
<span class="section-item-title" id="bypass_warp_cooldown">bypass_warp_cooldown</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> When true the user can always edit warps which they created regardless of other settings</p>
<p class="section-item-description"> dictates who the warp cooldown is applied to; values: all, admin, expcore.roles, none</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -483,15 +411,15 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#any_user_can_add_new_warp" class="fragment-hashtag">#</a>
<span class="section-item-title" id="any_user_can_add_new_warp">any_user_can_add_new_warp</span>
<a href="#expcore_roles_bypass_warp_cooldown" class="fragment-hashtag">#</a>
<span class="section-item-title" id="expcore_roles_bypass_warp_cooldown">expcore_roles_bypass_warp_cooldown</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> When true any user is able to create new warps, however editing may still be restricted</p>
<p class="section-item-description"> if expcore.roles is used then this is the required permission</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -510,15 +438,15 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#only_admins_can_edit" class="fragment-hashtag">#</a>
<span class="section-item-title" id="only_admins_can_edit">only_admins_can_edit</span>
<a href="#cooldown_duraction" class="fragment-hashtag">#</a>
<span class="section-item-title" id="cooldown_duraction">cooldown_duraction</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> When true only admins can edit warps</p>
<p class="section-item-description"> the duration of the warp cooldown in seconds</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -537,15 +465,15 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#edit_warps_role_permission" class="fragment-hashtag">#</a>
<span class="section-item-title" id="edit_warps_role_permission">edit_warps_role_permission</span>
<a href="#bypass_warp_proximity" class="fragment-hashtag">#</a>
<span class="section-item-title" id="bypass_warp_proximity">bypass_warp_proximity</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> Role permission used by the role system to allow editing warps</p>
<p class="section-item-description"> dictates who the warp proximity is applied to; values: all, admin, expcore.roles, none</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -564,15 +492,177 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#bypass_warp_limits_permission" class="fragment-hashtag">#</a>
<span class="section-item-title" id="bypass_warp_limits_permission">bypass_warp_limits_permission</span>
<a href="#expcore_roles_bypass_warp_proximity" class="fragment-hashtag">#</a>
<span class="section-item-title" id="expcore_roles_bypass_warp_proximity">expcore_roles_bypass_warp_proximity</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> Role permission used by the role system to allow bypassing the time and distance restrictions</p>
<p class="section-item-description"> if expcore.roles is used then this is the required permission</p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#standard_proximity_radius" class="fragment-hashtag">#</a>
<span class="section-item-title" id="standard_proximity_radius">standard_proximity_radius</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> the minimum distance a player is allowed to be to a warp in order to use it</p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#spawn_proximity_radius" class="fragment-hashtag">#</a>
<span class="section-item-title" id="spawn_proximity_radius">spawn_proximity_radius</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> the minimum distance a player is allowed to be from they spawn point to use warps</p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#allow_add_warp" class="fragment-hashtag">#</a>
<span class="section-item-title" id="allow_add_warp">allow_add_warp</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> dictates who is allowed to add warps; values: all, admin, expcore.roles, none</p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#expcore_roles_allow_add_warp" class="fragment-hashtag">#</a>
<span class="section-item-title" id="expcore_roles_allow_add_warp">expcore_roles_allow_add_warp</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> if expcore.roles is used then this is the required permission</p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#allow_edit_warp" class="fragment-hashtag">#</a>
<span class="section-item-title" id="allow_edit_warp">allow_edit_warp</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> dictates who is allowed to edit warps; values: all, admin, expcore.roles, none</p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#expcore_roles_allow_edit_warp" class="fragment-hashtag">#</a>
<span class="section-item-title" id="expcore_roles_allow_edit_warp">expcore_roles_allow_edit_warp</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> if expcore.roles is used then this is the required permission</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -599,7 +689,7 @@
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> The entities which are created for warps</p>
<p class="section-item-description"> The entities which are created for warp areas</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -626,7 +716,7 @@
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> The tile which is used for the warps</p>
<p class="section-item-description"> The tile which is used for the warp areas</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -653,7 +743,7 @@
<div class="section-item-body">
<p class="section-item-summary"></p>
<p class="section-item-description"> The tiles which are created for warps</p>
<p class="section-item-description"> The tiles which are created for warp areas</p>
<!-- parameters start -->
<!-- parameters end -->
@@ -684,7 +774,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1208,7 +1208,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1329,7 +1329,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1110,7 +1110,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -984,7 +984,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -998,7 +998,7 @@ Tasks.update_task(task_id,<span class="string">'We need more iron!'</span>,game.
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1465,7 +1465,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1563,7 +1563,7 @@ Warps.make_warp_tag(warp_id)</code></pre>
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1972,7 +1972,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -2746,7 +2746,7 @@ Common.table_insert(tbl,<span class="number">50</span>,tbl2)</code></pre>
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -2851,7 +2851,7 @@ Gui.element{
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1432,7 +1432,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -3152,7 +3152,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1481,7 +1481,7 @@ Store.set(player_scores,game.player,<span class="number">10</span>) <span class=
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -544,7 +544,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -626,7 +626,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -629,7 +629,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -449,7 +449,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -274,6 +274,18 @@
<td class="summary">Button displayed in the ehader bar, used to add a new task</td>
</tr>
<tr>
<td class="name"><a href="#edit_task">edit_task</a></td>
<td class="summary">Button displayed next to tasks which the user is can edit, used to start editing a task</td>
</tr>
<tr>
<td class="name"><a href="#discard_task">discard_task</a></td>
<td class="summary">Button displayed next to tasks which the user is can edit, used to delete a task from the list</td>
</tr>
<tr>
<td class="name"><a href="#add_task_base">add_task_base</a></td>
<td class="summary">Set of three elements which make up each row of the task table</td>
</tr>
<tr>
<td class="name"><a href="#confirm_edit">confirm_edit</a></td>
<td class="summary">Button displayed next to tasks which the user is currently editing, used to save changes</td>
</tr>
@@ -282,26 +294,14 @@
<td class="summary">Button displayed next to tasks which the user is currently editing, used to discard changes</td>
</tr>
<tr>
<td class="name"><a href="#discard_task">discard_task</a></td>
<td class="summary">Button displayed next to tasks which the user is can edit, used to delete a task from the list</td>
</tr>
<tr>
<td class="name"><a href="#edit_task">edit_task</a></td>
<td class="summary">Button displayed next to tasks which the user is can edit, used to start editing a task</td>
</tr>
<tr>
<td class="name"><a href="#add_task_base">add_task_base</a></td>
<td class="summary">Set of three elements which make up each row of the task table</td>
<td class="name"><a href="#task_editing">task_editing</a></td>
<td class="summary">Editing state for a task, contrins a text field and the two edit buttons</td>
</tr>
<tr>
<td class="name"><a href="#task_label">task_label</a></td>
<td class="summary">Default state for a task, contains only a label with the task message</td>
</tr>
<tr>
<td class="name"><a href="#task_editing">task_editing</a></td>
<td class="summary">Editing state for a task, contrins a text field and the two edit buttons</td>
</tr>
<tr>
<td class="name"><a href="#task_list_container">task_list_container</a></td>
<td class="summary">Main task list container for the left flow</td>
</tr>
@@ -491,6 +491,87 @@
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#edit_task" class="fragment-hashtag">#</a>
<span class="section-item-title" id="edit_task">edit_task</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Button displayed next to tasks which the user is can edit, used to start editing a task</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#discard_task" class="fragment-hashtag">#</a>
<span class="section-item-title" id="discard_task">discard_task</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Button displayed next to tasks which the user is can edit, used to delete a task from the list</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#add_task_base" class="fragment-hashtag">#</a>
<span class="section-item-title" id="add_task_base">add_task_base</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Set of three elements which make up each row of the task table</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
@@ -555,68 +636,14 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#discard_task" class="fragment-hashtag">#</a>
<span class="section-item-title" id="discard_task">discard_task</span>
<a href="#task_editing" class="fragment-hashtag">#</a>
<span class="section-item-title" id="task_editing">task_editing</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Button displayed next to tasks which the user is can edit, used to delete a task from the list</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#edit_task" class="fragment-hashtag">#</a>
<span class="section-item-title" id="edit_task">edit_task</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Button displayed next to tasks which the user is can edit, used to start editing a task</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#add_task_base" class="fragment-hashtag">#</a>
<span class="section-item-title" id="add_task_base">add_task_base</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Set of three elements which make up each row of the task table</p>
<p class="section-item-summary">Editing state for a task, contrins a text field and the two edit buttons</p>
<p class="section-item-description"></p>
<!-- parameters start -->
@@ -653,33 +680,6 @@
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#task_editing" class="fragment-hashtag">#</a>
<span class="section-item-title" id="task_editing">task_editing</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Editing state for a task, contrins a text field and the two edit buttons</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
@@ -756,7 +756,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -282,30 +282,10 @@
</thead>
<tbody>
<tr>
<td class="name"><a href="#zoom_to_map">zoom_to_map</a></td>
<td class="summary">Used on the name label to allow zoom to map</td>
</tr>
<tr>
<td class="name"><a href="#warp_timer">warp_timer</a></td>
<td class="summary">This timer controls when a player is able to warp, eg every 60 seconds</td>
</tr>
<tr>
<td class="name"><a href="#goto_warp">goto_warp</a></td>
<td class="summary">When the button is clicked it will teleport the player</td>
</tr>
<tr>
<td class="name"><a href="#add_new_warp">add_new_warp</a></td>
<td class="summary">Will add a new warp to the list, checks if the player is too close to an existing one</td>
</tr>
<tr>
<td class="name"><a href="#confirm_edit">confirm_edit</a></td>
<td class="summary">Confirms the edit to name or icon of the warp</td>
</tr>
<tr>
<td class="name"><a href="#cancel_edit">cancel_edit</a></td>
<td class="summary">Cancels the editing changes of the selected warp name or icon</td>
</tr>
<tr>
<td class="name"><a href="#discard_warp">discard_warp</a></td>
<td class="summary">Removes a warp from the list, including the physical area and map tag</td>
</tr>
@@ -314,8 +294,44 @@
<td class="summary">Opens edit mode for the warp</td>
</tr>
<tr>
<td class="name"><a href="#warp_list">warp_list</a></td>
<td class="summary">Registers the warp list</td>
<td class="name"><a href="#add_warp_base">add_warp_base</a></td>
<td class="summary">Set of three elements which make up each row of the warp table</td>
</tr>
<tr>
<td class="name"><a href="#confirm_edit">confirm_edit</a></td>
<td class="summary">Confirms the edit to name or icon of the warp</td>
</tr>
<tr>
<td class="name"><a href="#cancel_edit">cancel_edit</a></td>
<td class="summary">Cancels the editing changes of the selected warp name or icon</td>
</tr>
<tr>
<td class="name"><a href="#warp_editing">warp_editing</a></td>
<td class="summary">Editing state for a warp, contrins a text field and the two edit buttons</td>
</tr>
<tr>
<td class="name"><a href="#warp_label">warp_label</a></td>
<td class="summary">Default state for a warp, contains only a label with the warp name</td>
</tr>
<tr>
<td class="name"><a href="#warp_icon_button">warp_icon_button</a></td>
<td class="summary">Default state for the warp icon, when pressed teleports the player</td>
</tr>
<tr>
<td class="name"><a href="#warp_icon_editing">warp_icon_editing</a></td>
<td class="summary">Editing state for the warp icon, chose elem used to chosse icon</td>
</tr>
<tr>
<td class="name"><a href="#warp_timer">warp_timer</a></td>
<td class="summary">This timer controls when a player is able to warp, eg every 60 seconds</td>
</tr>
<tr>
<td class="name"><a href="#warp_list_container">warp_list_container</a></td>
<td class="summary">Main warp list container for the left flow</td>
</tr>
<tr>
<td class="name"><a href="#warp_list_toggle">warp_list_toggle</a></td>
<td class="summary">Button on the top flow used to toggle the warp list container</td>
</tr>
</tbody>
</table>
@@ -582,87 +598,6 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#zoom_to_map" class="fragment-hashtag">#</a>
<span class="section-item-title" id="zoom_to_map">zoom_to_map</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Used on the name label to allow zoom to map</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#warp_timer" class="fragment-hashtag">#</a>
<span class="section-item-title" id="warp_timer">warp_timer</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">This timer controls when a player is able to warp, eg every 60 seconds</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#goto_warp" class="fragment-hashtag">#</a>
<span class="section-item-title" id="goto_warp">goto_warp</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">When the button is clicked it will teleport the player</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#add_new_warp" class="fragment-hashtag">#</a>
<span class="section-item-title" id="add_new_warp">add_new_warp</span>
</div>
@@ -680,60 +615,6 @@
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#confirm_edit" class="fragment-hashtag">#</a>
<span class="section-item-title" id="confirm_edit">confirm_edit</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Confirms the edit to name or icon of the warp</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#cancel_edit" class="fragment-hashtag">#</a>
<span class="section-item-title" id="cancel_edit">cancel_edit</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Cancels the editing changes of the selected warp name or icon</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
@@ -798,14 +679,257 @@
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#warp_list" class="fragment-hashtag">#</a>
<span class="section-item-title" id="warp_list">warp_list</span>
<a href="#add_warp_base" class="fragment-hashtag">#</a>
<span class="section-item-title" id="add_warp_base">add_warp_base</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Registers the warp list</p>
<p class="section-item-summary">Set of three elements which make up each row of the warp table</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#confirm_edit" class="fragment-hashtag">#</a>
<span class="section-item-title" id="confirm_edit">confirm_edit</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Confirms the edit to name or icon of the warp</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#cancel_edit" class="fragment-hashtag">#</a>
<span class="section-item-title" id="cancel_edit">cancel_edit</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Cancels the editing changes of the selected warp name or icon</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#warp_editing" class="fragment-hashtag">#</a>
<span class="section-item-title" id="warp_editing">warp_editing</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Editing state for a warp, contrins a text field and the two edit buttons</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#warp_label" class="fragment-hashtag">#</a>
<span class="section-item-title" id="warp_label">warp_label</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Default state for a warp, contains only a label with the warp name</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#warp_icon_button" class="fragment-hashtag">#</a>
<span class="section-item-title" id="warp_icon_button">warp_icon_button</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Default state for the warp icon, when pressed teleports the player</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#warp_icon_editing" class="fragment-hashtag">#</a>
<span class="section-item-title" id="warp_icon_editing">warp_icon_editing</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Editing state for the warp icon, chose elem used to chosse icon</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#warp_timer" class="fragment-hashtag">#</a>
<span class="section-item-title" id="warp_timer">warp_timer</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">This timer controls when a player is able to warp, eg every 60 seconds</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#warp_list_container" class="fragment-hashtag">#</a>
<span class="section-item-title" id="warp_list_container">warp_list_container</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Main warp list container for the left flow</p>
<p class="section-item-description"></p>
<!-- parameters start -->
<!-- parameters end -->
<!-- returns start -->
<!-- returns end -->
<!-- see also start -->
<!-- see also end -->
<!-- usage start -->
<!-- usage end -->
</dd>
<dt>
<div class="divider divider-custom"></div>
<div class="block section-item-header">
<a href="#warp_list_toggle" class="fragment-hashtag">#</a>
<span class="section-item-title" id="warp_list_toggle">warp_list_toggle</span>
</div>
</dt>
<dd>
<div class="section-item-body">
<p class="section-item-summary">Button on the top flow used to toggle the warp list container</p>
<p class="section-item-description"></p>
<!-- parameters start -->
@@ -837,7 +961,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -511,7 +511,7 @@ see ./expcore/commands.lua for more details</span></td>
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -351,7 +351,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -419,7 +419,7 @@ fraction will decide a chance to spawn. 1 alien for 2 spawner's will have 50% on
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1164,7 +1164,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -654,7 +654,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -323,7 +323,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1292,7 +1292,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -434,7 +434,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -353,7 +353,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -441,7 +441,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -752,7 +752,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -1418,7 +1418,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -651,7 +651,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -442,7 +442,7 @@
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -789,7 +789,7 @@ Public License instead of this License. But first, please read
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -338,7 +338,7 @@ Please report these errors to [the issues page](issues).
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc </a></i>
</div>
<div class="content-footer column col-9 col-sm-12">
<i>Last updated 2019-10-24 01:44:32 UTC</i>
<i>Last updated 2019-10-24 21:28:42 UTC</i>
</div>
</div>
</div>

View File

@@ -411,15 +411,15 @@ Gui.toggle_top_flow(game.player,true)
function Gui.toggle_top_flow(player,state)
local top_flow = Gui.get_top_flow(player)
local toggle_button = top_flow[toggle_top_flow.name]
local new_state = state or toggle_button.style.name == 'forward_button'
if state == nil then state = toggle_button.style.name == 'forward_button' end
-- Set the visible state of all elements in the flow
for name,authenticator in pairs(Gui.top_elements) do
top_flow[name].visible = new_state and authenticator(player) or false
top_flow[name].visible = state and authenticator(player) or false
end
-- Change the style of the toggle button
if new_state then
if state then
toggle_button.style = 'back_button'
local style = toggle_button.style
style.height = 36
@@ -431,7 +431,7 @@ function Gui.toggle_top_flow(player,state)
style.width = 18
end
return new_state
return state
end
--- Left Flow.
@@ -501,8 +501,8 @@ function Gui.toggle_left_element(player,element_define,state)
-- Set the visible state
local element = left_flow[element_define.name]
local new_state = state or not element.visible
element.visible = new_state
if state == nil then state = not element.visible end
element.visible = state
-- Check if the hide button should be visible
local show_hide_button = false
@@ -514,11 +514,11 @@ function Gui.toggle_left_element(player,element_define,state)
end
hide_button.visible = show_hide_button
return new_state
return state
end
-- Draw the two flows when a player joins
Event.add(defines.events.on_player_joined_game,function(event)
Event.add(defines.events.on_player_created,function(event)
local player = game.players[event.player_index]
-- Draw the top flow
@@ -581,9 +581,9 @@ local new_enabled_state = Gui.toggle_enabled_state(element)
]]
function Gui.toggle_enabled_state(element,state)
if not element or not element.valid then return end
local new_state = state or not element.enabled
element.enabled = new_state
return new_state
if state == nil then state = not element.enabled end
element.enabled = state
return state
end
--[[-- Will toggle the visible state of an element or set it to the one given
@@ -597,9 +597,9 @@ local new_visible_state = Gui.toggle_visible_state(element)
]]
function Gui.toggle_visible_state(element,state)
if not element or not element.valid then return end
local new_state = state or not element.visible
element.visible = new_state
return new_state
if state == nil then state = not element.visible end
element.visible = state
return state
end
--[[-- Destory a gui element without causing any errors, likly if the element may have already been removed

View File

@@ -91,7 +91,7 @@ cancel-tooltip=Discard changes
edit-tooltip=Currently being edited by: __1__
edit-tooltip-none=Currently being edited by: Nobody
discard-tooltip=Remove warp
timer-tooltip=Warp charge, charge time __1__ seconds
timer-tooltip=Warp cooldown takes __1__ seconds
goto-tooltip=Go to x __1__ y __2__
goto-disabled=You must be on a warp point and have a full charge to warp
goto-edit=Edit warp icon

View File

@@ -150,7 +150,7 @@ function Warps.make_warp_area(warp_id)
local position = warp.position
local posx = position.x
local posy = position.y
local radius = config.activation_range
local radius = config.standard_proximity_radius
local radius2 = radius^2
-- Get the tile that is being replaced, store.update not needed as we dont want it to trigger
@@ -203,7 +203,7 @@ function Warps.remove_warp_area(warp_id)
local warp = Store.get(warp_store,warp_id)
local position = warp.position
local surface = warp.surface
local radius = config.activation_range
local radius = config.standard_proximity_radius
local radius2 = radius^2
-- Check that a warp area was created previously

View File

@@ -333,7 +333,9 @@ Gui.element(function(event_trigger,parent)
}
-- Set the frame style
frame.style.padding = 2
local frame_style = frame.style
frame_style.padding = 2
frame_style.minimal_width = 200
-- Draw the internal container
local container =

Some files were not shown because too many files have changed in this diff Show More