-
Notifications
You must be signed in to change notification settings - Fork 94
timer_disable
Ryzom Core Wiki edited this page Jul 8, 2024
·
4 revisions
title: Timer Disable description: published: true date: 2023-03-16T23:12:46.969Z tags: editor: markdown dateCreated: 2023-03-16T22:30:57.739Z
The timerDisable native AI script function is used to disable a timer.
()timerDisable(timerId: f) // timerDisable_f_
- timerId (float): The ID of the timer to disable.
()timerDisable(0); // Disables the timer with ID 0
In this example, the function timerDisable
is called with an ID of 0, which disables the corresponding timer.