Difference between revisions of "LuaAPI/wesnoth/achievements"

From The Battle for Wesnoth Wiki
Line 28: Line 28:
  
 
* {{LuaGameOnly}} '''wesnoth.achievements.get'''(''content_for'',''id'') → ''cfg''
 
* {{LuaGameOnly}} '''wesnoth.achievements.get'''(''content_for'',''id'') → ''cfg''
 +
 +
Returns the contents of the [[AchievementsWML|[achievement]]] tag.
  
 
* '''content_for''': The [[AchievementsWML|[achievements_group]]] that this achievement is part of.
 
* '''content_for''': The [[AchievementsWML|[achievements_group]]] that this achievement is part of.

Revision as of 06:12, 22 January 2023

(Version 1.17.13 and later only)

Achievements

wesnoth.achievements.set

  • wesnoth.achievements.set(content_for,id)
  • content_for: The [achievements_group] that this achievement is part of.
  • id: The id of the achievement.

Sets the specified achievement as completed. Unlike the [set_achievement] tag, this does not display a popup.

wesnoth.achievements.has → achieved?

  • wesnoth.achievements.has(content_for,id)
  • content_for: The [achievements_group] that this achievement is part of.
  • id: The id of the achievement.

Returns whether the specified achievement has been completed.

NOTE: This is not safe to use in online multiplayer since different players can have different achievements completed. As such it will always be treated as if the achievement is not completed.

wesnoth.achievements.get

  • wesnoth.achievements.get(content_for,id) → cfg

Returns the contents of the [achievement] tag.

  • content_for: The [achievements_group] that this achievement is part of.
  • id: The id of the achievement.

NOTE: While this can be used to retrieve the achievement's actual achievement status for a client in online multiplayer, this is also not safe to use in that situation for the same reason.