ramdb/docs/core/printAddonName.md
Jacob Schmidt 136cc50336 docs: Correct internal links in core documentation
This commit corrects internal links within the core documentation files. The links were updated to point to the correct markdown files.

Key changes:

*   Updated links in `docs/core/processQueue.md`, `docs/core/addTask.md`, `docs/core/test.md`, `docs/core/scheduler.md`, `docs/core/handler.md`, `docs/core/printAddonName.md`, and `docs/core/init.md`.
2025-03-22 19:58:34 -05:00

1.3 KiB

title, icon, excerpt
title icon excerpt
ArmaRAMDb - Print Addon Name mdi:file-text-outline Displays the addon name in system chat.

ramdb_db_fnc_printAddonName

Description

Displays a thank you message with the addon name in the system chat. This is a simple utility function that can be used to acknowledge the use of the framework or to verify that the addon is properly loaded.

Syntax

[] call ramdb_db_fnc_printAddonName

Parameters

None. This function does not require any parameters.

Return Value

None. The function outputs a message to the system chat.

Examples

Display the addon name message:

[] call ramdb_db_fnc_printAddonName;

Use in a welcome script:

if (isServer) then {
    [] remoteExec ["ramdb_db_fnc_printAddonName", 0, true];
};

Notes

  • The function uses the ADDON macro defined in script_component.hpp
  • This displays a message directly in the player's system chat
  • Can be useful as a quick verification that the addon is loaded correctly
  • Often used during development or for first-time users
  • ramdb_db_fnc_init: Initializes the database system

Add Task | Handler | Init | Print Addon Name | Process Queue | Scheduler | Test